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<GetApiKeyCredentialProviderResult>;
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 JSON key within the secret that contains the API key value
     */
    readonly apiKeySecretJsonKey?: string;
    /**
     * 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<GetApiKeyCredentialProviderResult>;
export interface GetApiKeyCredentialProviderOutputArgs {
    /**
     * The Amazon Resource Name (ARN) of the API key credential provider
     */
    credentialProviderArn: pulumi.Input<string>;
}
