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, 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; /** * The Amazon Resource Name (ARN) of the connection. */ readonly arn: pulumi.Output; /** * The logical attachment point in your AWS network where the managed connection will be connected. */ readonly attachPoint: pulumi.Output; /** * The bandwidth of the connection (e.g., 50Mbps, 1Gbps). Required when creating a connection through AWS. */ readonly bandwidth: pulumi.Output; /** * The billing tier for the connection. */ readonly billingTier: pulumi.Output; /** * The unique identifier for the connection. */ readonly connectionId: pulumi.Output; /** * A description of the connection. */ readonly description: pulumi.Output; /** * The ID of the environment for the connection. Required when creating a connection through AWS. Mutually exclusive with ActivationKey. */ readonly environmentId: pulumi.Output; /** * The AWS account ID of the connection owner. */ readonly ownerAccount: pulumi.Output; /** * The partner cloud service provider. */ readonly provider: pulumi.Output; /** * The account ID of the remote owner. Required when creating a connection through AWS. */ readonly remoteOwnerAccount: pulumi.Output; /** * The shared identifier for the connection pairing. */ readonly sharedId: pulumi.Output; /** * The current state of the connection. */ readonly state: pulumi.Output; /** * An array of key-value pairs to apply to this resource. */ readonly tags: pulumi.Output; /** * The type of managed connection. */ readonly type: pulumi.Output; /** * 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; /** * The logical attachment point in your AWS network where the managed connection will be connected. */ attachPoint: pulumi.Input; /** * The bandwidth of the connection (e.g., 50Mbps, 1Gbps). Required when creating a connection through AWS. */ bandwidth?: pulumi.Input; /** * A description of the connection. */ description?: pulumi.Input; /** * The ID of the environment for the connection. Required when creating a connection through AWS. Mutually exclusive with ActivationKey. */ environmentId?: pulumi.Input; /** * The account ID of the remote owner. Required when creating a connection through AWS. */ remoteOwnerAccount?: pulumi.Input; /** * An array of key-value pairs to apply to this resource. */ tags?: pulumi.Input[]>; }