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; 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; export interface GetPaymentManagerOutputArgs { /** * The Amazon Resource Name (ARN) of the payment manager */ paymentManagerArn: pulumi.Input; }