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)

56 lines (55 loc) 1.86 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::PaymentManager */ export declare function getPaymentManager(args: GetPaymentManagerArgs, opts?: pulumi.InvokeOptions): Promise<GetPaymentManagerResult>; export interface GetPaymentManagerArgs { /** * The Amazon Resource Name (ARN) of the payment manager */ paymentManagerArn: string; } export interface GetPaymentManagerResult { /** * The timestamp when the payment manager was created */ readonly createdAt?: string; /** * A description of the payment manager */ readonly description?: string; /** * The timestamp when the payment manager was last updated */ readonly lastUpdatedAt?: string; /** * The Amazon Resource Name (ARN) of the payment manager */ readonly paymentManagerArn?: string; /** * The unique identifier for the payment manager */ readonly paymentManagerId?: string; /** * The ARN of the IAM role for the payment manager */ readonly roleArn?: string; readonly status?: enums.bedrockagentcore.PaymentManagerStatus; /** * Tags to assign to the payment manager */ readonly tags?: outputs.Tag[]; readonly workloadIdentityDetails?: outputs.bedrockagentcore.PaymentManagerWorkloadIdentityDetails; } /** * Resource Type definition for AWS::BedrockAgentCore::PaymentManager */ export declare function getPaymentManagerOutput(args: GetPaymentManagerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPaymentManagerResult>; export interface GetPaymentManagerOutputArgs { /** * The Amazon Resource Name (ARN) of the payment manager */ paymentManagerArn: pulumi.Input<string>; }