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::Interconnect::Connection. Creates a managed network connection between AWS and a partner cloud service provider.
 */
export declare class Connection extends pulumi.CustomResource {
    /**
     * Get an existing Connection 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): Connection;
    /**
     * Returns true if the given object is an instance of Connection.  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 Connection;
    /**
     * The activation key for accepting a connection proposal from a partner CSP. Mutually exclusive with EnvironmentId.
     */
    readonly activationKey: pulumi.Output<string | undefined>;
    /**
     * The Amazon Resource Name (ARN) of the connection.
     */
    readonly arn: pulumi.Output<string>;
    /**
     * The logical attachment point in your AWS network where the managed connection will be connected.
     */
    readonly attachPoint: pulumi.Output<outputs.interconnect.ConnectionAttachPoint>;
    /**
     * The bandwidth of the connection (e.g., 50Mbps, 1Gbps). Required when creating a connection through AWS.
     */
    readonly bandwidth: pulumi.Output<string | undefined>;
    /**
     * The billing tier for the connection.
     */
    readonly billingTier: pulumi.Output<number>;
    /**
     * The unique identifier for the connection.
     */
    readonly connectionId: pulumi.Output<string>;
    /**
     * A description of the connection.
     */
    readonly description: pulumi.Output<string | undefined>;
    /**
     * The ID of the environment for the connection. Required when creating a connection through AWS. Mutually exclusive with ActivationKey.
     */
    readonly environmentId: pulumi.Output<string | undefined>;
    /**
     * The AWS account ID of the connection owner.
     */
    readonly ownerAccount: pulumi.Output<string>;
    /**
     * The partner cloud service provider.
     */
    readonly provider: pulumi.Output<outputs.interconnect.ConnectionProvider>;
    /**
     * The remote account identifier for the connection. Required when creating a connection through AWS. Replaces RemoteOwnerAccount.
     */
    readonly remoteAccount: pulumi.Output<outputs.interconnect.RemoteAccountProperties | undefined>;
    /**
     * Deprecated. Use RemoteAccount instead. The account ID of the remote owner. Required when creating a connection through AWS.
     */
    readonly remoteOwnerAccount: pulumi.Output<string | undefined>;
    /**
     * The shared identifier for the connection pairing.
     */
    readonly sharedId: pulumi.Output<string>;
    /**
     * The current state of the connection.
     */
    readonly state: pulumi.Output<enums.interconnect.ConnectionState>;
    /**
     * An array of key-value pairs to apply to this resource.
     */
    readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
    /**
     * The type of managed connection.
     */
    readonly type: pulumi.Output<string>;
    /**
     * Create a Connection 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: ConnectionArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a Connection resource.
 */
export interface ConnectionArgs {
    /**
     * The activation key for accepting a connection proposal from a partner CSP. Mutually exclusive with EnvironmentId.
     */
    activationKey?: pulumi.Input<string>;
    /**
     * The logical attachment point in your AWS network where the managed connection will be connected.
     */
    attachPoint: pulumi.Input<inputs.interconnect.ConnectionAttachPointArgs>;
    /**
     * The bandwidth of the connection (e.g., 50Mbps, 1Gbps). Required when creating a connection through AWS.
     */
    bandwidth?: pulumi.Input<string>;
    /**
     * A description of the connection.
     */
    description?: pulumi.Input<string>;
    /**
     * The ID of the environment for the connection. Required when creating a connection through AWS. Mutually exclusive with ActivationKey.
     */
    environmentId?: pulumi.Input<string>;
    /**
     * The remote account identifier for the connection. Required when creating a connection through AWS. Replaces RemoteOwnerAccount.
     */
    remoteAccount?: pulumi.Input<inputs.interconnect.RemoteAccountPropertiesArgs>;
    /**
     * Deprecated. Use RemoteAccount instead. The account ID of the remote owner. Required when creating a connection through AWS.
     */
    remoteOwnerAccount?: pulumi.Input<string>;
    /**
     * An array of key-value pairs to apply to this resource.
     */
    tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
}
