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)

44 lines (43 loc) 1.79 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::BedrockAgentCore::PaymentCredentialProvider */ export declare function getPaymentCredentialProvider(args: GetPaymentCredentialProviderArgs, opts?: pulumi.InvokeOptions): Promise<GetPaymentCredentialProviderResult>; export interface GetPaymentCredentialProviderArgs { /** * The Amazon Resource Name (ARN) of the payment credential provider */ credentialProviderArn: string; } export interface GetPaymentCredentialProviderResult { /** * The timestamp when the credential provider was created */ readonly createdTime?: string; /** * The Amazon Resource Name (ARN) of the payment credential provider */ readonly credentialProviderArn?: string; readonly credentialProviderVendor?: enums.bedrockagentcore.PaymentCredentialProviderVendorType; /** * The timestamp when the credential provider was last updated */ readonly lastUpdatedTime?: string; readonly providerConfigurationOutput?: outputs.bedrockagentcore.PaymentCredentialProviderPaymentProviderConfigurationOutput; /** * Tags for the payment credential provider */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::BedrockAgentCore::PaymentCredentialProvider */ export declare function getPaymentCredentialProviderOutput(args: GetPaymentCredentialProviderOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPaymentCredentialProviderResult>; export interface GetPaymentCredentialProviderOutputArgs { /** * The Amazon Resource Name (ARN) of the payment credential provider */ credentialProviderArn: pulumi.Input<string>; }