import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::BedrockAgentCore::PaymentConnector */ export declare class PaymentConnector extends pulumi.CustomResource { /** * Get an existing PaymentConnector resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): PaymentConnector; /** * Returns true if the given object is an instance of PaymentConnector. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is PaymentConnector; /** * The timestamp when the connector was created */ readonly connectorCreatedAt: pulumi.Output; /** * The timestamp when the connector was last updated */ readonly connectorLastUpdatedAt: pulumi.Output; /** * The name of the payment connector */ readonly connectorName: pulumi.Output; readonly connectorStatus: pulumi.Output; readonly connectorType: pulumi.Output; /** * The credential provider configurations for the connector */ readonly credentialProviderConfigurations: pulumi.Output; /** * A description of the payment connector */ readonly description: pulumi.Output; /** * Synthetic ARN for the payment connector (used for engine resolution) */ readonly paymentConnectorArn: pulumi.Output; /** * The unique identifier for the payment connector */ readonly paymentConnectorId: pulumi.Output; /** * The identifier of the parent payment manager */ readonly paymentManagerId: pulumi.Output; /** * Create a PaymentConnector resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: PaymentConnectorArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a PaymentConnector resource. */ export interface PaymentConnectorArgs { /** * The name of the payment connector */ connectorName?: pulumi.Input; connectorType: pulumi.Input; /** * The credential provider configurations for the connector */ credentialProviderConfigurations: pulumi.Input[]>; /** * A description of the payment connector */ description?: pulumi.Input; /** * The identifier of the parent payment manager */ paymentManagerId: pulumi.Input; }