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<pulumi.ID>, 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<string>;
    /**
     * The timestamp when the connector was last updated
     */
    readonly connectorLastUpdatedAt: pulumi.Output<string>;
    /**
     * The name of the payment connector
     */
    readonly connectorName: pulumi.Output<string>;
    readonly connectorStatus: pulumi.Output<enums.bedrockagentcore.PaymentConnectorStatus>;
    readonly connectorType: pulumi.Output<enums.bedrockagentcore.PaymentConnectorType>;
    /**
     * The credential provider configurations for the connector
     */
    readonly credentialProviderConfigurations: pulumi.Output<outputs.bedrockagentcore.PaymentConnectorCredentialsProviderConfiguration[]>;
    /**
     * A description of the payment connector
     */
    readonly description: pulumi.Output<string | undefined>;
    /**
     * Synthetic ARN for the payment connector (used for engine resolution)
     */
    readonly paymentConnectorArn: pulumi.Output<string>;
    /**
     * The unique identifier for the payment connector
     */
    readonly paymentConnectorId: pulumi.Output<string>;
    /**
     * The identifier of the parent payment manager
     */
    readonly paymentManagerId: pulumi.Output<string>;
    /**
     * 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<string>;
    connectorType: pulumi.Input<enums.bedrockagentcore.PaymentConnectorType>;
    /**
     * The credential provider configurations for the connector
     */
    credentialProviderConfigurations: pulumi.Input<pulumi.Input<inputs.bedrockagentcore.PaymentConnectorCredentialsProviderConfigurationArgs>[]>;
    /**
     * A description of the payment connector
     */
    description?: pulumi.Input<string>;
    /**
     * The identifier of the parent payment manager
     */
    paymentManagerId: pulumi.Input<string>;
}
