aws.directconnect.LinkAggregationGroup
Explore with Pulumi AI
Provides a Direct Connect LAG. Connections can be added to the LAG via the aws.directconnect.Connection and aws.directconnect.ConnectionAssociation resources.
NOTE: When creating a LAG, if no existing connection is specified, Direct Connect will create a connection and this provider will remove this unmanaged connection during resource creation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const hoge = new aws.directconnect.LinkAggregationGroup("hoge", {
    name: "tf-dx-lag",
    connectionsBandwidth: "1Gbps",
    location: "EqDC2",
    forceDestroy: true,
});
import pulumi
import pulumi_aws as aws
hoge = aws.directconnect.LinkAggregationGroup("hoge",
    name="tf-dx-lag",
    connections_bandwidth="1Gbps",
    location="EqDC2",
    force_destroy=True)
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.NewLinkAggregationGroup(ctx, "hoge", &directconnect.LinkAggregationGroupArgs{
			Name:                 pulumi.String("tf-dx-lag"),
			ConnectionsBandwidth: pulumi.String("1Gbps"),
			Location:             pulumi.String("EqDC2"),
			ForceDestroy:         pulumi.Bool(true),
		})
		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 hoge = new Aws.DirectConnect.LinkAggregationGroup("hoge", new()
    {
        Name = "tf-dx-lag",
        ConnectionsBandwidth = "1Gbps",
        Location = "EqDC2",
        ForceDestroy = true,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.directconnect.LinkAggregationGroup;
import com.pulumi.aws.directconnect.LinkAggregationGroupArgs;
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 hoge = new LinkAggregationGroup("hoge", LinkAggregationGroupArgs.builder()
            .name("tf-dx-lag")
            .connectionsBandwidth("1Gbps")
            .location("EqDC2")
            .forceDestroy(true)
            .build());
    }
}
resources:
  hoge:
    type: aws:directconnect:LinkAggregationGroup
    properties:
      name: tf-dx-lag
      connectionsBandwidth: 1Gbps
      location: EqDC2
      forceDestroy: true
Create LinkAggregationGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LinkAggregationGroup(name: string, args: LinkAggregationGroupArgs, opts?: CustomResourceOptions);@overload
def LinkAggregationGroup(resource_name: str,
                         args: LinkAggregationGroupArgs,
                         opts: Optional[ResourceOptions] = None)
@overload
def LinkAggregationGroup(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         connections_bandwidth: Optional[str] = None,
                         location: Optional[str] = None,
                         connection_id: Optional[str] = None,
                         force_destroy: Optional[bool] = None,
                         name: Optional[str] = None,
                         provider_name: Optional[str] = None,
                         tags: Optional[Mapping[str, str]] = None)func NewLinkAggregationGroup(ctx *Context, name string, args LinkAggregationGroupArgs, opts ...ResourceOption) (*LinkAggregationGroup, error)public LinkAggregationGroup(string name, LinkAggregationGroupArgs args, CustomResourceOptions? opts = null)
public LinkAggregationGroup(String name, LinkAggregationGroupArgs args)
public LinkAggregationGroup(String name, LinkAggregationGroupArgs args, CustomResourceOptions options)
type: aws:directconnect:LinkAggregationGroup
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 LinkAggregationGroupArgs
- 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 LinkAggregationGroupArgs
- 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 LinkAggregationGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LinkAggregationGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LinkAggregationGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var linkAggregationGroupResource = new Aws.DirectConnect.LinkAggregationGroup("linkAggregationGroupResource", new()
{
    ConnectionsBandwidth = "string",
    Location = "string",
    ConnectionId = "string",
    ForceDestroy = false,
    Name = "string",
    ProviderName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := directconnect.NewLinkAggregationGroup(ctx, "linkAggregationGroupResource", &directconnect.LinkAggregationGroupArgs{
	ConnectionsBandwidth: pulumi.String("string"),
	Location:             pulumi.String("string"),
	ConnectionId:         pulumi.String("string"),
	ForceDestroy:         pulumi.Bool(false),
	Name:                 pulumi.String("string"),
	ProviderName:         pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var linkAggregationGroupResource = new LinkAggregationGroup("linkAggregationGroupResource", LinkAggregationGroupArgs.builder()
    .connectionsBandwidth("string")
    .location("string")
    .connectionId("string")
    .forceDestroy(false)
    .name("string")
    .providerName("string")
    .tags(Map.of("string", "string"))
    .build());
link_aggregation_group_resource = aws.directconnect.LinkAggregationGroup("linkAggregationGroupResource",
    connections_bandwidth="string",
    location="string",
    connection_id="string",
    force_destroy=False,
    name="string",
    provider_name="string",
    tags={
        "string": "string",
    })
const linkAggregationGroupResource = new aws.directconnect.LinkAggregationGroup("linkAggregationGroupResource", {
    connectionsBandwidth: "string",
    location: "string",
    connectionId: "string",
    forceDestroy: false,
    name: "string",
    providerName: "string",
    tags: {
        string: "string",
    },
});
type: aws:directconnect:LinkAggregationGroup
properties:
    connectionId: string
    connectionsBandwidth: string
    forceDestroy: false
    location: string
    name: string
    providerName: string
    tags:
        string: string
LinkAggregationGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The LinkAggregationGroup resource accepts the following input properties:
- ConnectionsBandwidth string
- The bandwidth of the individual dedicated connections bundled by the LAG. Valid values: 1Gbps, 10Gbps, 100Gbps, and 400Gbps. Case sensitive. Refer to the AWS Direct Connection supported bandwidths for Dedicated Connections.
- Location string
- The AWS Direct Connect location in which the LAG should be allocated. See DescribeLocations for the list of AWS Direct Connect locations. Use locationCode.
- ConnectionId string
- The ID of an existing dedicated connection to migrate to the LAG.
- ForceDestroy bool
- A boolean that indicates all connections associated with the LAG should be deleted so that the LAG can be destroyed without error. These objects are not recoverable.
- Name string
- The name of the LAG.
- ProviderName string
- The name of the service provider associated with the LAG.
- Dictionary<string, string>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- ConnectionsBandwidth string
- The bandwidth of the individual dedicated connections bundled by the LAG. Valid values: 1Gbps, 10Gbps, 100Gbps, and 400Gbps. Case sensitive. Refer to the AWS Direct Connection supported bandwidths for Dedicated Connections.
- Location string
- The AWS Direct Connect location in which the LAG should be allocated. See DescribeLocations for the list of AWS Direct Connect locations. Use locationCode.
- ConnectionId string
- The ID of an existing dedicated connection to migrate to the LAG.
- ForceDestroy bool
- A boolean that indicates all connections associated with the LAG should be deleted so that the LAG can be destroyed without error. These objects are not recoverable.
- Name string
- The name of the LAG.
- ProviderName string
- The name of the service provider associated with the LAG.
- map[string]string
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- connectionsBandwidth String
- The bandwidth of the individual dedicated connections bundled by the LAG. Valid values: 1Gbps, 10Gbps, 100Gbps, and 400Gbps. Case sensitive. Refer to the AWS Direct Connection supported bandwidths for Dedicated Connections.
- location String
- The AWS Direct Connect location in which the LAG should be allocated. See DescribeLocations for the list of AWS Direct Connect locations. Use locationCode.
- connectionId String
- The ID of an existing dedicated connection to migrate to the LAG.
- forceDestroy Boolean
- A boolean that indicates all connections associated with the LAG should be deleted so that the LAG can be destroyed without error. These objects are not recoverable.
- name String
- The name of the LAG.
- providerName String
- The name of the service provider associated with the LAG.
- Map<String,String>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- connectionsBandwidth string
- The bandwidth of the individual dedicated connections bundled by the LAG. Valid values: 1Gbps, 10Gbps, 100Gbps, and 400Gbps. Case sensitive. Refer to the AWS Direct Connection supported bandwidths for Dedicated Connections.
- location string
- The AWS Direct Connect location in which the LAG should be allocated. See DescribeLocations for the list of AWS Direct Connect locations. Use locationCode.
- connectionId string
- The ID of an existing dedicated connection to migrate to the LAG.
- forceDestroy boolean
- A boolean that indicates all connections associated with the LAG should be deleted so that the LAG can be destroyed without error. These objects are not recoverable.
- name string
- The name of the LAG.
- providerName string
- The name of the service provider associated with the LAG.
- {[key: string]: string}
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- connections_bandwidth str
- The bandwidth of the individual dedicated connections bundled by the LAG. Valid values: 1Gbps, 10Gbps, 100Gbps, and 400Gbps. Case sensitive. Refer to the AWS Direct Connection supported bandwidths for Dedicated Connections.
- location str
- The AWS Direct Connect location in which the LAG should be allocated. See DescribeLocations for the list of AWS Direct Connect locations. Use locationCode.
- connection_id str
- The ID of an existing dedicated connection to migrate to the LAG.
- force_destroy bool
- A boolean that indicates all connections associated with the LAG should be deleted so that the LAG can be destroyed without error. These objects are not recoverable.
- name str
- The name of the LAG.
- provider_name str
- The name of the service provider associated with the LAG.
- Mapping[str, str]
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- connectionsBandwidth String
- The bandwidth of the individual dedicated connections bundled by the LAG. Valid values: 1Gbps, 10Gbps, 100Gbps, and 400Gbps. Case sensitive. Refer to the AWS Direct Connection supported bandwidths for Dedicated Connections.
- location String
- The AWS Direct Connect location in which the LAG should be allocated. See DescribeLocations for the list of AWS Direct Connect locations. Use locationCode.
- connectionId String
- The ID of an existing dedicated connection to migrate to the LAG.
- forceDestroy Boolean
- A boolean that indicates all connections associated with the LAG should be deleted so that the LAG can be destroyed without error. These objects are not recoverable.
- name String
- The name of the LAG.
- providerName String
- The name of the service provider associated with the LAG.
- Map<String>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the LinkAggregationGroup resource produces the following output properties:
- Arn string
- The ARN of the LAG.
- HasLogical stringRedundancy 
- Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
- Id string
- The provider-assigned unique ID for this managed resource.
- JumboFrame boolCapable 
- Indicates whether jumbo frames (9001 MTU) are supported.
- OwnerAccount stringId 
- The ID of the AWS account that owns the LAG.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Arn string
- The ARN of the LAG.
- HasLogical stringRedundancy 
- Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
- Id string
- The provider-assigned unique ID for this managed resource.
- JumboFrame boolCapable 
- Indicates whether jumbo frames (9001 MTU) are supported.
- OwnerAccount stringId 
- The ID of the AWS account that owns the LAG.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The ARN of the LAG.
- hasLogical StringRedundancy 
- Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
- id String
- The provider-assigned unique ID for this managed resource.
- jumboFrame BooleanCapable 
- Indicates whether jumbo frames (9001 MTU) are supported.
- ownerAccount StringId 
- The ID of the AWS account that owns the LAG.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn string
- The ARN of the LAG.
- hasLogical stringRedundancy 
- Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
- id string
- The provider-assigned unique ID for this managed resource.
- jumboFrame booleanCapable 
- Indicates whether jumbo frames (9001 MTU) are supported.
- ownerAccount stringId 
- The ID of the AWS account that owns the LAG.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn str
- The ARN of the LAG.
- has_logical_ strredundancy 
- Indicates whether the LAG 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_ boolcapable 
- Indicates whether jumbo frames (9001 MTU) are supported.
- owner_account_ strid 
- The ID of the AWS account that owns the LAG.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The ARN of the LAG.
- hasLogical StringRedundancy 
- Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
- id String
- The provider-assigned unique ID for this managed resource.
- jumboFrame BooleanCapable 
- Indicates whether jumbo frames (9001 MTU) are supported.
- ownerAccount StringId 
- The ID of the AWS account that owns the LAG.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
Look up Existing LinkAggregationGroup Resource
Get an existing LinkAggregationGroup 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?: LinkAggregationGroupState, opts?: CustomResourceOptions): LinkAggregationGroup@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        connection_id: Optional[str] = None,
        connections_bandwidth: Optional[str] = None,
        force_destroy: Optional[bool] = None,
        has_logical_redundancy: Optional[str] = None,
        jumbo_frame_capable: Optional[bool] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        owner_account_id: Optional[str] = None,
        provider_name: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> LinkAggregationGroupfunc GetLinkAggregationGroup(ctx *Context, name string, id IDInput, state *LinkAggregationGroupState, opts ...ResourceOption) (*LinkAggregationGroup, error)public static LinkAggregationGroup Get(string name, Input<string> id, LinkAggregationGroupState? state, CustomResourceOptions? opts = null)public static LinkAggregationGroup get(String name, Output<String> id, LinkAggregationGroupState state, CustomResourceOptions options)resources:  _:    type: aws:directconnect:LinkAggregationGroup    get:      id: ${id}- 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.
- Arn string
- The ARN of the LAG.
- ConnectionId string
- The ID of an existing dedicated connection to migrate to the LAG.
- ConnectionsBandwidth string
- The bandwidth of the individual dedicated connections bundled by the LAG. Valid values: 1Gbps, 10Gbps, 100Gbps, and 400Gbps. Case sensitive. Refer to the AWS Direct Connection supported bandwidths for Dedicated Connections.
- ForceDestroy bool
- A boolean that indicates all connections associated with the LAG should be deleted so that the LAG can be destroyed without error. These objects are not recoverable.
- HasLogical stringRedundancy 
- Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
- JumboFrame boolCapable 
- Indicates whether jumbo frames (9001 MTU) are supported.
- Location string
- The AWS Direct Connect location in which the LAG should be allocated. See DescribeLocations for the list of AWS Direct Connect locations. Use locationCode.
- Name string
- The name of the LAG.
- OwnerAccount stringId 
- The ID of the AWS account that owns the LAG.
- ProviderName string
- The name of the service provider associated with the LAG.
- Dictionary<string, string>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Arn string
- The ARN of the LAG.
- ConnectionId string
- The ID of an existing dedicated connection to migrate to the LAG.
- ConnectionsBandwidth string
- The bandwidth of the individual dedicated connections bundled by the LAG. Valid values: 1Gbps, 10Gbps, 100Gbps, and 400Gbps. Case sensitive. Refer to the AWS Direct Connection supported bandwidths for Dedicated Connections.
- ForceDestroy bool
- A boolean that indicates all connections associated with the LAG should be deleted so that the LAG can be destroyed without error. These objects are not recoverable.
- HasLogical stringRedundancy 
- Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
- JumboFrame boolCapable 
- Indicates whether jumbo frames (9001 MTU) are supported.
- Location string
- The AWS Direct Connect location in which the LAG should be allocated. See DescribeLocations for the list of AWS Direct Connect locations. Use locationCode.
- Name string
- The name of the LAG.
- OwnerAccount stringId 
- The ID of the AWS account that owns the LAG.
- ProviderName string
- The name of the service provider associated with the LAG.
- map[string]string
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The ARN of the LAG.
- connectionId String
- The ID of an existing dedicated connection to migrate to the LAG.
- connectionsBandwidth String
- The bandwidth of the individual dedicated connections bundled by the LAG. Valid values: 1Gbps, 10Gbps, 100Gbps, and 400Gbps. Case sensitive. Refer to the AWS Direct Connection supported bandwidths for Dedicated Connections.
- forceDestroy Boolean
- A boolean that indicates all connections associated with the LAG should be deleted so that the LAG can be destroyed without error. These objects are not recoverable.
- hasLogical StringRedundancy 
- Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
- jumboFrame BooleanCapable 
- Indicates whether jumbo frames (9001 MTU) are supported.
- location String
- The AWS Direct Connect location in which the LAG should be allocated. See DescribeLocations for the list of AWS Direct Connect locations. Use locationCode.
- name String
- The name of the LAG.
- ownerAccount StringId 
- The ID of the AWS account that owns the LAG.
- providerName String
- The name of the service provider associated with the LAG.
- Map<String,String>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn string
- The ARN of the LAG.
- connectionId string
- The ID of an existing dedicated connection to migrate to the LAG.
- connectionsBandwidth string
- The bandwidth of the individual dedicated connections bundled by the LAG. Valid values: 1Gbps, 10Gbps, 100Gbps, and 400Gbps. Case sensitive. Refer to the AWS Direct Connection supported bandwidths for Dedicated Connections.
- forceDestroy boolean
- A boolean that indicates all connections associated with the LAG should be deleted so that the LAG can be destroyed without error. These objects are not recoverable.
- hasLogical stringRedundancy 
- Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
- jumboFrame booleanCapable 
- Indicates whether jumbo frames (9001 MTU) are supported.
- location string
- The AWS Direct Connect location in which the LAG should be allocated. See DescribeLocations for the list of AWS Direct Connect locations. Use locationCode.
- name string
- The name of the LAG.
- ownerAccount stringId 
- The ID of the AWS account that owns the LAG.
- providerName string
- The name of the service provider associated with the LAG.
- {[key: string]: string}
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn str
- The ARN of the LAG.
- connection_id str
- The ID of an existing dedicated connection to migrate to the LAG.
- connections_bandwidth str
- The bandwidth of the individual dedicated connections bundled by the LAG. Valid values: 1Gbps, 10Gbps, 100Gbps, and 400Gbps. Case sensitive. Refer to the AWS Direct Connection supported bandwidths for Dedicated Connections.
- force_destroy bool
- A boolean that indicates all connections associated with the LAG should be deleted so that the LAG can be destroyed without error. These objects are not recoverable.
- has_logical_ strredundancy 
- Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
- jumbo_frame_ boolcapable 
- Indicates whether jumbo frames (9001 MTU) are supported.
- location str
- The AWS Direct Connect location in which the LAG should be allocated. See DescribeLocations for the list of AWS Direct Connect locations. Use locationCode.
- name str
- The name of the LAG.
- owner_account_ strid 
- The ID of the AWS account that owns the LAG.
- provider_name str
- The name of the service provider associated with the LAG.
- Mapping[str, str]
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The ARN of the LAG.
- connectionId String
- The ID of an existing dedicated connection to migrate to the LAG.
- connectionsBandwidth String
- The bandwidth of the individual dedicated connections bundled by the LAG. Valid values: 1Gbps, 10Gbps, 100Gbps, and 400Gbps. Case sensitive. Refer to the AWS Direct Connection supported bandwidths for Dedicated Connections.
- forceDestroy Boolean
- A boolean that indicates all connections associated with the LAG should be deleted so that the LAG can be destroyed without error. These objects are not recoverable.
- hasLogical StringRedundancy 
- Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
- jumboFrame BooleanCapable 
- Indicates whether jumbo frames (9001 MTU) are supported.
- location String
- The AWS Direct Connect location in which the LAG should be allocated. See DescribeLocations for the list of AWS Direct Connect locations. Use locationCode.
- name String
- The name of the LAG.
- ownerAccount StringId 
- The ID of the AWS account that owns the LAG.
- providerName String
- The name of the service provider associated with the LAG.
- Map<String>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
Import
Using pulumi import, import Direct Connect LAGs using the LAG id. For example:
$ pulumi import aws:directconnect/linkAggregationGroup:LinkAggregationGroup test_lag dxlag-fgnsp5rq
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the awsTerraform Provider.