import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::BedrockAgentCore::OAuth2CredentialProvider */ export declare function getOAuth2CredentialProvider(args: GetOAuth2CredentialProviderArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetOAuth2CredentialProviderArgs { /** * The Amazon Resource Name (ARN) of the OAuth2 credential provider */ credentialProviderArn: string; } export interface GetOAuth2CredentialProviderResult { /** * The callback URL for the OAuth2 authorization flow */ readonly callbackUrl?: string; /** * The ARN of the client secret in AWS Secrets Manager */ readonly clientSecretArn?: outputs.bedrockagentcore.OAuth2CredentialProviderClientSecretArn; /** * The timestamp when the credential provider was created */ readonly createdTime?: string; /** * The Amazon Resource Name (ARN) of the OAuth2 credential provider */ readonly credentialProviderArn?: string; /** * The timestamp when the credential provider was last updated */ readonly lastUpdatedTime?: string; /** * The output configuration for the OAuth2 provider */ readonly oauth2ProviderConfigOutput?: outputs.bedrockagentcore.OAuth2CredentialProviderOauth2ProviderConfigOutput; /** * Tags to assign to the OAuth2 credential provider */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::BedrockAgentCore::OAuth2CredentialProvider */ export declare function getOAuth2CredentialProviderOutput(args: GetOAuth2CredentialProviderOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetOAuth2CredentialProviderOutputArgs { /** * The Amazon Resource Name (ARN) of the OAuth2 credential provider */ credentialProviderArn: pulumi.Input; }