UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

49 lines (48 loc) 1.82 kB
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>; }