Try AWS Native preview for resources not in the classic version.
aws.directconnect.LinkAggregationGroup
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
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
The LinkAggregationGroup resource accepts the following input properties:
- Connections
Bandwidth string - The bandwidth of the individual physical connections bundled by the LAG. Valid values: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, 10Gbps and 100Gbps. Case sensitive.
- 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
. - Connection
Id string - 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 string
- The name of the LAG.
- Provider
Name 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_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- Connections
Bandwidth string - The bandwidth of the individual physical connections bundled by the LAG. Valid values: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, 10Gbps and 100Gbps. Case sensitive.
- 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
. - Connection
Id string - 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 string
- The name of the LAG.
- Provider
Name 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_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- connections
Bandwidth String - The bandwidth of the individual physical connections bundled by the LAG. Valid values: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, 10Gbps and 100Gbps. Case sensitive.
- 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
. - connection
Id String - The ID of an existing dedicated connection to migrate to the LAG.
- force
Destroy 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.
- provider
Name 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_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- connections
Bandwidth string - The bandwidth of the individual physical connections bundled by the LAG. Valid values: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, 10Gbps and 100Gbps. Case sensitive.
- 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
. - connection
Id string - The ID of an existing dedicated connection to migrate to the LAG.
- force
Destroy 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.
- provider
Name 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_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- connections_
bandwidth str - The bandwidth of the individual physical connections bundled by the LAG. Valid values: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, 10Gbps and 100Gbps. Case sensitive.
- 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_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- connections
Bandwidth String - The bandwidth of the individual physical connections bundled by the LAG. Valid values: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, 10Gbps and 100Gbps. Case sensitive.
- 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
. - connection
Id String - The ID of an existing dedicated connection to migrate to the LAG.
- force
Destroy 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.
- provider
Name 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_tags
configuration 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.
- Has
Logical 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.
- Jumbo
Frame boolCapable - Indicates whether jumbo frames (9001 MTU) are supported.
- Owner
Account 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_tags
configuration block.
- Arn string
- The ARN of the LAG.
- Has
Logical 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.
- Jumbo
Frame boolCapable - Indicates whether jumbo frames (9001 MTU) are supported.
- Owner
Account 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_tags
configuration block.
- arn String
- The ARN of the LAG.
- has
Logical 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.
- jumbo
Frame BooleanCapable - Indicates whether jumbo frames (9001 MTU) are supported.
- owner
Account 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_tags
configuration block.
- arn string
- The ARN of the LAG.
- has
Logical 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.
- jumbo
Frame booleanCapable - Indicates whether jumbo frames (9001 MTU) are supported.
- owner
Account 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_tags
configuration 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_tags
configuration block.
- arn String
- The ARN of the LAG.
- has
Logical 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.
- jumbo
Frame BooleanCapable - Indicates whether jumbo frames (9001 MTU) are supported.
- owner
Account 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_tags
configuration 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) -> LinkAggregationGroup
func 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)
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.
- Arn string
- The ARN of the LAG.
- Connection
Id string - The ID of an existing dedicated connection to migrate to the LAG.
- Connections
Bandwidth string - The bandwidth of the individual physical connections bundled by the LAG. Valid values: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, 10Gbps and 100Gbps. Case sensitive.
- 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 stringRedundancy - 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 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.
- Owner
Account stringId - The ID of the AWS account that owns the LAG.
- Provider
Name 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_tags
configuration 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_tags
configuration block.
- Arn string
- The ARN of the LAG.
- Connection
Id string - The ID of an existing dedicated connection to migrate to the LAG.
- Connections
Bandwidth string - The bandwidth of the individual physical connections bundled by the LAG. Valid values: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, 10Gbps and 100Gbps. Case sensitive.
- 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 stringRedundancy - 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 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.
- Owner
Account stringId - The ID of the AWS account that owns the LAG.
- Provider
Name 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_tags
configuration 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_tags
configuration block.
- arn String
- The ARN of the LAG.
- connection
Id String - The ID of an existing dedicated connection to migrate to the LAG.
- connections
Bandwidth String - The bandwidth of the individual physical connections bundled by the LAG. Valid values: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, 10Gbps and 100Gbps. Case sensitive.
- force
Destroy 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.
- has
Logical StringRedundancy - Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
- jumbo
Frame 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.
- owner
Account StringId - The ID of the AWS account that owns the LAG.
- provider
Name 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_tags
configuration 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_tags
configuration block.
- arn string
- The ARN of the LAG.
- connection
Id string - The ID of an existing dedicated connection to migrate to the LAG.
- connections
Bandwidth string - The bandwidth of the individual physical connections bundled by the LAG. Valid values: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, 10Gbps and 100Gbps. Case sensitive.
- force
Destroy 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.
- has
Logical stringRedundancy - Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
- jumbo
Frame 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.
- owner
Account stringId - The ID of the AWS account that owns the LAG.
- provider
Name 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_tags
configuration 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_tags
configuration 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 physical connections bundled by the LAG. Valid values: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, 10Gbps and 100Gbps. Case sensitive.
- 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_tags
configuration 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_tags
configuration block.
- arn String
- The ARN of the LAG.
- connection
Id String - The ID of an existing dedicated connection to migrate to the LAG.
- connections
Bandwidth String - The bandwidth of the individual physical connections bundled by the LAG. Valid values: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, 10Gbps and 100Gbps. Case sensitive.
- force
Destroy 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.
- has
Logical StringRedundancy - Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
- jumbo
Frame 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.
- owner
Account StringId - The ID of the AWS account that owns the LAG.
- provider
Name 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_tags
configuration 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_tags
configuration 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
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.