1. Packages
  2. AWS Classic
  3. API Docs
  4. directconnect
  5. HostedConnection

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.1 published on Thursday, Apr 18, 2024 by Pulumi

aws.directconnect.HostedConnection

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.1 published on Thursday, Apr 18, 2024 by Pulumi

    Provides a hosted connection on the specified interconnect or a link aggregation group (LAG) of interconnects. Intended for use by AWS Direct Connect Partners only.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const hosted = new aws.directconnect.HostedConnection("hosted", {
        connectionId: "dxcon-ffabc123",
        bandwidth: "100Mbps",
        name: "tf-dx-hosted-connection",
        ownerAccountId: "123456789012",
        vlan: 1,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    hosted = aws.directconnect.HostedConnection("hosted",
        connection_id="dxcon-ffabc123",
        bandwidth="100Mbps",
        name="tf-dx-hosted-connection",
        owner_account_id="123456789012",
        vlan=1)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/directconnect"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := directconnect.NewHostedConnection(ctx, "hosted", &directconnect.HostedConnectionArgs{
    			ConnectionId:   pulumi.String("dxcon-ffabc123"),
    			Bandwidth:      pulumi.String("100Mbps"),
    			Name:           pulumi.String("tf-dx-hosted-connection"),
    			OwnerAccountId: pulumi.String("123456789012"),
    			Vlan:           pulumi.Int(1),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var hosted = new Aws.DirectConnect.HostedConnection("hosted", new()
        {
            ConnectionId = "dxcon-ffabc123",
            Bandwidth = "100Mbps",
            Name = "tf-dx-hosted-connection",
            OwnerAccountId = "123456789012",
            Vlan = 1,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.directconnect.HostedConnection;
    import com.pulumi.aws.directconnect.HostedConnectionArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var hosted = new HostedConnection("hosted", HostedConnectionArgs.builder()        
                .connectionId("dxcon-ffabc123")
                .bandwidth("100Mbps")
                .name("tf-dx-hosted-connection")
                .ownerAccountId("123456789012")
                .vlan(1)
                .build());
    
        }
    }
    
    resources:
      hosted:
        type: aws:directconnect:HostedConnection
        properties:
          connectionId: dxcon-ffabc123
          bandwidth: 100Mbps
          name: tf-dx-hosted-connection
          ownerAccountId: '123456789012'
          vlan: 1
    

    Create HostedConnection Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new HostedConnection(name: string, args: HostedConnectionArgs, opts?: CustomResourceOptions);
    @overload
    def HostedConnection(resource_name: str,
                         args: HostedConnectionArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def HostedConnection(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         bandwidth: Optional[str] = None,
                         connection_id: Optional[str] = None,
                         owner_account_id: Optional[str] = None,
                         vlan: Optional[int] = None,
                         name: Optional[str] = None)
    func NewHostedConnection(ctx *Context, name string, args HostedConnectionArgs, opts ...ResourceOption) (*HostedConnection, error)
    public HostedConnection(string name, HostedConnectionArgs args, CustomResourceOptions? opts = null)
    public HostedConnection(String name, HostedConnectionArgs args)
    public HostedConnection(String name, HostedConnectionArgs args, CustomResourceOptions options)
    
    type: aws:directconnect:HostedConnection
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args HostedConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args HostedConnectionArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args HostedConnectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HostedConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HostedConnectionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var hostedConnectionResource = new Aws.DirectConnect.HostedConnection("hostedConnectionResource", new()
    {
        Bandwidth = "string",
        ConnectionId = "string",
        OwnerAccountId = "string",
        Vlan = 0,
        Name = "string",
    });
    
    example, err := directconnect.NewHostedConnection(ctx, "hostedConnectionResource", &directconnect.HostedConnectionArgs{
    	Bandwidth:      pulumi.String("string"),
    	ConnectionId:   pulumi.String("string"),
    	OwnerAccountId: pulumi.String("string"),
    	Vlan:           pulumi.Int(0),
    	Name:           pulumi.String("string"),
    })
    
    var hostedConnectionResource = new HostedConnection("hostedConnectionResource", HostedConnectionArgs.builder()        
        .bandwidth("string")
        .connectionId("string")
        .ownerAccountId("string")
        .vlan(0)
        .name("string")
        .build());
    
    hosted_connection_resource = aws.directconnect.HostedConnection("hostedConnectionResource",
        bandwidth="string",
        connection_id="string",
        owner_account_id="string",
        vlan=0,
        name="string")
    
    const hostedConnectionResource = new aws.directconnect.HostedConnection("hostedConnectionResource", {
        bandwidth: "string",
        connectionId: "string",
        ownerAccountId: "string",
        vlan: 0,
        name: "string",
    });
    
    type: aws:directconnect:HostedConnection
    properties:
        bandwidth: string
        connectionId: string
        name: string
        ownerAccountId: string
        vlan: 0
    

    HostedConnection Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The HostedConnection resource accepts the following input properties:

    Bandwidth string
    The bandwidth of the connection. Valid values for dedicated connections: 1Gbps, 10Gbps. Valid values for hosted connections: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps and 10Gbps. Case sensitive.
    ConnectionId string
    The ID of the interconnect or LAG.
    OwnerAccountId string
    The ID of the AWS account of the customer for the connection.
    Vlan int
    The dedicated VLAN provisioned to the hosted connection.
    Name string
    The name of the connection.
    Bandwidth string
    The bandwidth of the connection. Valid values for dedicated connections: 1Gbps, 10Gbps. Valid values for hosted connections: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps and 10Gbps. Case sensitive.
    ConnectionId string
    The ID of the interconnect or LAG.
    OwnerAccountId string
    The ID of the AWS account of the customer for the connection.
    Vlan int
    The dedicated VLAN provisioned to the hosted connection.
    Name string
    The name of the connection.
    bandwidth String
    The bandwidth of the connection. Valid values for dedicated connections: 1Gbps, 10Gbps. Valid values for hosted connections: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps and 10Gbps. Case sensitive.
    connectionId String
    The ID of the interconnect or LAG.
    ownerAccountId String
    The ID of the AWS account of the customer for the connection.
    vlan Integer
    The dedicated VLAN provisioned to the hosted connection.
    name String
    The name of the connection.
    bandwidth string
    The bandwidth of the connection. Valid values for dedicated connections: 1Gbps, 10Gbps. Valid values for hosted connections: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps and 10Gbps. Case sensitive.
    connectionId string
    The ID of the interconnect or LAG.
    ownerAccountId string
    The ID of the AWS account of the customer for the connection.
    vlan number
    The dedicated VLAN provisioned to the hosted connection.
    name string
    The name of the connection.
    bandwidth str
    The bandwidth of the connection. Valid values for dedicated connections: 1Gbps, 10Gbps. Valid values for hosted connections: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps and 10Gbps. Case sensitive.
    connection_id str
    The ID of the interconnect or LAG.
    owner_account_id str
    The ID of the AWS account of the customer for the connection.
    vlan int
    The dedicated VLAN provisioned to the hosted connection.
    name str
    The name of the connection.
    bandwidth String
    The bandwidth of the connection. Valid values for dedicated connections: 1Gbps, 10Gbps. Valid values for hosted connections: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps and 10Gbps. Case sensitive.
    connectionId String
    The ID of the interconnect or LAG.
    ownerAccountId String
    The ID of the AWS account of the customer for the connection.
    vlan Number
    The dedicated VLAN provisioned to the hosted connection.
    name String
    The name of the connection.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the HostedConnection resource produces the following output properties:

    AwsDevice string
    The Direct Connect endpoint on which the physical connection terminates.
    HasLogicalRedundancy string
    Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).
    Id string
    The provider-assigned unique ID for this managed resource.
    JumboFrameCapable bool
    Boolean value representing if jumbo frames have been enabled for this connection.
    LagId string
    The ID of the LAG.
    LoaIssueTime string
    The time of the most recent call to DescribeLoa for this connection.
    Location string
    The location of the connection.
    PartnerName string
    The name of the AWS Direct Connect service provider associated with the connection.
    ProviderName string
    The name of the service provider associated with the connection.
    Region string
    The AWS Region where the connection is located.
    State string
    The state of the connection. Possible values include: ordering, requested, pending, available, down, deleting, deleted, rejected, unknown. See AllocateHostedConnection for a description of each connection state.
    AwsDevice string
    The Direct Connect endpoint on which the physical connection terminates.
    HasLogicalRedundancy string
    Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).
    Id string
    The provider-assigned unique ID for this managed resource.
    JumboFrameCapable bool
    Boolean value representing if jumbo frames have been enabled for this connection.
    LagId string
    The ID of the LAG.
    LoaIssueTime string
    The time of the most recent call to DescribeLoa for this connection.
    Location string
    The location of the connection.
    PartnerName string
    The name of the AWS Direct Connect service provider associated with the connection.
    ProviderName string
    The name of the service provider associated with the connection.
    Region string
    The AWS Region where the connection is located.
    State string
    The state of the connection. Possible values include: ordering, requested, pending, available, down, deleting, deleted, rejected, unknown. See AllocateHostedConnection for a description of each connection state.
    awsDevice String
    The Direct Connect endpoint on which the physical connection terminates.
    hasLogicalRedundancy String
    Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).
    id String
    The provider-assigned unique ID for this managed resource.
    jumboFrameCapable Boolean
    Boolean value representing if jumbo frames have been enabled for this connection.
    lagId String
    The ID of the LAG.
    loaIssueTime String
    The time of the most recent call to DescribeLoa for this connection.
    location String
    The location of the connection.
    partnerName String
    The name of the AWS Direct Connect service provider associated with the connection.
    providerName String
    The name of the service provider associated with the connection.
    region String
    The AWS Region where the connection is located.
    state String
    The state of the connection. Possible values include: ordering, requested, pending, available, down, deleting, deleted, rejected, unknown. See AllocateHostedConnection for a description of each connection state.
    awsDevice string
    The Direct Connect endpoint on which the physical connection terminates.
    hasLogicalRedundancy string
    Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).
    id string
    The provider-assigned unique ID for this managed resource.
    jumboFrameCapable boolean
    Boolean value representing if jumbo frames have been enabled for this connection.
    lagId string
    The ID of the LAG.
    loaIssueTime string
    The time of the most recent call to DescribeLoa for this connection.
    location string
    The location of the connection.
    partnerName string
    The name of the AWS Direct Connect service provider associated with the connection.
    providerName string
    The name of the service provider associated with the connection.
    region string
    The AWS Region where the connection is located.
    state string
    The state of the connection. Possible values include: ordering, requested, pending, available, down, deleting, deleted, rejected, unknown. See AllocateHostedConnection for a description of each connection state.
    aws_device str
    The Direct Connect endpoint on which the physical connection terminates.
    has_logical_redundancy str
    Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).
    id str
    The provider-assigned unique ID for this managed resource.
    jumbo_frame_capable bool
    Boolean value representing if jumbo frames have been enabled for this connection.
    lag_id str
    The ID of the LAG.
    loa_issue_time str
    The time of the most recent call to DescribeLoa for this connection.
    location str
    The location of the connection.
    partner_name str
    The name of the AWS Direct Connect service provider associated with the connection.
    provider_name str
    The name of the service provider associated with the connection.
    region str
    The AWS Region where the connection is located.
    state str
    The state of the connection. Possible values include: ordering, requested, pending, available, down, deleting, deleted, rejected, unknown. See AllocateHostedConnection for a description of each connection state.
    awsDevice String
    The Direct Connect endpoint on which the physical connection terminates.
    hasLogicalRedundancy String
    Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).
    id String
    The provider-assigned unique ID for this managed resource.
    jumboFrameCapable Boolean
    Boolean value representing if jumbo frames have been enabled for this connection.
    lagId String
    The ID of the LAG.
    loaIssueTime String
    The time of the most recent call to DescribeLoa for this connection.
    location String
    The location of the connection.
    partnerName String
    The name of the AWS Direct Connect service provider associated with the connection.
    providerName String
    The name of the service provider associated with the connection.
    region String
    The AWS Region where the connection is located.
    state String
    The state of the connection. Possible values include: ordering, requested, pending, available, down, deleting, deleted, rejected, unknown. See AllocateHostedConnection for a description of each connection state.

    Look up Existing HostedConnection Resource

    Get an existing HostedConnection resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: HostedConnectionState, opts?: CustomResourceOptions): HostedConnection
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            aws_device: Optional[str] = None,
            bandwidth: Optional[str] = None,
            connection_id: Optional[str] = None,
            has_logical_redundancy: Optional[str] = None,
            jumbo_frame_capable: Optional[bool] = None,
            lag_id: Optional[str] = None,
            loa_issue_time: Optional[str] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            owner_account_id: Optional[str] = None,
            partner_name: Optional[str] = None,
            provider_name: Optional[str] = None,
            region: Optional[str] = None,
            state: Optional[str] = None,
            vlan: Optional[int] = None) -> HostedConnection
    func GetHostedConnection(ctx *Context, name string, id IDInput, state *HostedConnectionState, opts ...ResourceOption) (*HostedConnection, error)
    public static HostedConnection Get(string name, Input<string> id, HostedConnectionState? state, CustomResourceOptions? opts = null)
    public static HostedConnection get(String name, Output<String> id, HostedConnectionState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AwsDevice string
    The Direct Connect endpoint on which the physical connection terminates.
    Bandwidth string
    The bandwidth of the connection. Valid values for dedicated connections: 1Gbps, 10Gbps. Valid values for hosted connections: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps and 10Gbps. Case sensitive.
    ConnectionId string
    The ID of the interconnect or LAG.
    HasLogicalRedundancy string
    Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).
    JumboFrameCapable bool
    Boolean value representing if jumbo frames have been enabled for this connection.
    LagId string
    The ID of the LAG.
    LoaIssueTime string
    The time of the most recent call to DescribeLoa for this connection.
    Location string
    The location of the connection.
    Name string
    The name of the connection.
    OwnerAccountId string
    The ID of the AWS account of the customer for the connection.
    PartnerName string
    The name of the AWS Direct Connect service provider associated with the connection.
    ProviderName string
    The name of the service provider associated with the connection.
    Region string
    The AWS Region where the connection is located.
    State string
    The state of the connection. Possible values include: ordering, requested, pending, available, down, deleting, deleted, rejected, unknown. See AllocateHostedConnection for a description of each connection state.
    Vlan int
    The dedicated VLAN provisioned to the hosted connection.
    AwsDevice string
    The Direct Connect endpoint on which the physical connection terminates.
    Bandwidth string
    The bandwidth of the connection. Valid values for dedicated connections: 1Gbps, 10Gbps. Valid values for hosted connections: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps and 10Gbps. Case sensitive.
    ConnectionId string
    The ID of the interconnect or LAG.
    HasLogicalRedundancy string
    Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).
    JumboFrameCapable bool
    Boolean value representing if jumbo frames have been enabled for this connection.
    LagId string
    The ID of the LAG.
    LoaIssueTime string
    The time of the most recent call to DescribeLoa for this connection.
    Location string
    The location of the connection.
    Name string
    The name of the connection.
    OwnerAccountId string
    The ID of the AWS account of the customer for the connection.
    PartnerName string
    The name of the AWS Direct Connect service provider associated with the connection.
    ProviderName string
    The name of the service provider associated with the connection.
    Region string
    The AWS Region where the connection is located.
    State string
    The state of the connection. Possible values include: ordering, requested, pending, available, down, deleting, deleted, rejected, unknown. See AllocateHostedConnection for a description of each connection state.
    Vlan int
    The dedicated VLAN provisioned to the hosted connection.
    awsDevice String
    The Direct Connect endpoint on which the physical connection terminates.
    bandwidth String
    The bandwidth of the connection. Valid values for dedicated connections: 1Gbps, 10Gbps. Valid values for hosted connections: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps and 10Gbps. Case sensitive.
    connectionId String
    The ID of the interconnect or LAG.
    hasLogicalRedundancy String
    Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).
    jumboFrameCapable Boolean
    Boolean value representing if jumbo frames have been enabled for this connection.
    lagId String
    The ID of the LAG.
    loaIssueTime String
    The time of the most recent call to DescribeLoa for this connection.
    location String
    The location of the connection.
    name String
    The name of the connection.
    ownerAccountId String
    The ID of the AWS account of the customer for the connection.
    partnerName String
    The name of the AWS Direct Connect service provider associated with the connection.
    providerName String
    The name of the service provider associated with the connection.
    region String
    The AWS Region where the connection is located.
    state String
    The state of the connection. Possible values include: ordering, requested, pending, available, down, deleting, deleted, rejected, unknown. See AllocateHostedConnection for a description of each connection state.
    vlan Integer
    The dedicated VLAN provisioned to the hosted connection.
    awsDevice string
    The Direct Connect endpoint on which the physical connection terminates.
    bandwidth string
    The bandwidth of the connection. Valid values for dedicated connections: 1Gbps, 10Gbps. Valid values for hosted connections: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps and 10Gbps. Case sensitive.
    connectionId string
    The ID of the interconnect or LAG.
    hasLogicalRedundancy string
    Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).
    jumboFrameCapable boolean
    Boolean value representing if jumbo frames have been enabled for this connection.
    lagId string
    The ID of the LAG.
    loaIssueTime string
    The time of the most recent call to DescribeLoa for this connection.
    location string
    The location of the connection.
    name string
    The name of the connection.
    ownerAccountId string
    The ID of the AWS account of the customer for the connection.
    partnerName string
    The name of the AWS Direct Connect service provider associated with the connection.
    providerName string
    The name of the service provider associated with the connection.
    region string
    The AWS Region where the connection is located.
    state string
    The state of the connection. Possible values include: ordering, requested, pending, available, down, deleting, deleted, rejected, unknown. See AllocateHostedConnection for a description of each connection state.
    vlan number
    The dedicated VLAN provisioned to the hosted connection.
    aws_device str
    The Direct Connect endpoint on which the physical connection terminates.
    bandwidth str
    The bandwidth of the connection. Valid values for dedicated connections: 1Gbps, 10Gbps. Valid values for hosted connections: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps and 10Gbps. Case sensitive.
    connection_id str
    The ID of the interconnect or LAG.
    has_logical_redundancy str
    Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).
    jumbo_frame_capable bool
    Boolean value representing if jumbo frames have been enabled for this connection.
    lag_id str
    The ID of the LAG.
    loa_issue_time str
    The time of the most recent call to DescribeLoa for this connection.
    location str
    The location of the connection.
    name str
    The name of the connection.
    owner_account_id str
    The ID of the AWS account of the customer for the connection.
    partner_name str
    The name of the AWS Direct Connect service provider associated with the connection.
    provider_name str
    The name of the service provider associated with the connection.
    region str
    The AWS Region where the connection is located.
    state str
    The state of the connection. Possible values include: ordering, requested, pending, available, down, deleting, deleted, rejected, unknown. See AllocateHostedConnection for a description of each connection state.
    vlan int
    The dedicated VLAN provisioned to the hosted connection.
    awsDevice String
    The Direct Connect endpoint on which the physical connection terminates.
    bandwidth String
    The bandwidth of the connection. Valid values for dedicated connections: 1Gbps, 10Gbps. Valid values for hosted connections: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps and 10Gbps. Case sensitive.
    connectionId String
    The ID of the interconnect or LAG.
    hasLogicalRedundancy String
    Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).
    jumboFrameCapable Boolean
    Boolean value representing if jumbo frames have been enabled for this connection.
    lagId String
    The ID of the LAG.
    loaIssueTime String
    The time of the most recent call to DescribeLoa for this connection.
    location String
    The location of the connection.
    name String
    The name of the connection.
    ownerAccountId String
    The ID of the AWS account of the customer for the connection.
    partnerName String
    The name of the AWS Direct Connect service provider associated with the connection.
    providerName String
    The name of the service provider associated with the connection.
    region String
    The AWS Region where the connection is located.
    state String
    The state of the connection. Possible values include: ordering, requested, pending, available, down, deleting, deleted, rejected, unknown. See AllocateHostedConnection for a description of each connection state.
    vlan Number
    The dedicated VLAN provisioned to the hosted connection.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.31.1 published on Thursday, Apr 18, 2024 by Pulumi