import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::BedrockAgentCore::ApiKeyCredentialProvider */ export declare function getApiKeyCredentialProvider(args: GetApiKeyCredentialProviderArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetApiKeyCredentialProviderArgs { /** * The Amazon Resource Name (ARN) of the API key credential provider */ credentialProviderArn: string; } export interface GetApiKeyCredentialProviderResult { /** * The ARN of the API key secret in AWS Secrets Manager */ readonly apiKeySecretArn?: outputs.bedrockagentcore.ApiKeyCredentialProviderApiKeySecretArn; /** * The timestamp when the credential provider was created */ readonly createdTime?: string; /** * The Amazon Resource Name (ARN) of the API key credential provider */ readonly credentialProviderArn?: string; /** * The timestamp when the credential provider was last updated */ readonly lastUpdatedTime?: string; /** * Tags to assign to the API key credential provider */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::BedrockAgentCore::ApiKeyCredentialProvider */ export declare function getApiKeyCredentialProviderOutput(args: GetApiKeyCredentialProviderOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetApiKeyCredentialProviderOutputArgs { /** * The Amazon Resource Name (ARN) of the API key credential provider */ credentialProviderArn: pulumi.Input; }