Class LinkAggregationGroup
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, Direct Connect requires creating a Connection. This provider will remove this unmanaged connection during resource creation.
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var hoge = new Aws.DirectConnect.LinkAggregationGroup("hoge", new Aws.DirectConnect.LinkAggregationGroupArgs
{
ConnectionsBandwidth = "1Gbps",
ForceDestroy = true,
Location = "EqDC2",
});
}
}
Inherited Members
Namespace: Pulumi.Aws.DirectConnect
Assembly: Pulumi.Aws.dll
Syntax
public class LinkAggregationGroup : CustomResource
Constructors
View SourceLinkAggregationGroup(String, LinkAggregationGroupArgs, CustomResourceOptions)
Create a LinkAggregationGroup resource with the given unique name, arguments, and options.
Declaration
public LinkAggregationGroup(string name, LinkAggregationGroupArgs args, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resource |
| LinkAggregationGroupArgs | args | The arguments used to populate this resource's properties |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Properties
View SourceArn
The ARN of the LAG.
jumbo_frame_capable-Indicates whether jumbo frames (9001 MTU) are supported.
Declaration
public Output<string> Arn { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
ConnectionsBandwidth
The bandwidth of the individual physical connections bundled by the LAG. Valid values: 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps and 10Gbps. Case sensitive.
Declaration
public Output<string> ConnectionsBandwidth { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
ForceDestroy
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.
Declaration
public Output<bool?> ForceDestroy { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Nullable<System.Boolean>> |
HasLogicalRedundancy
Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
Declaration
public Output<string> HasLogicalRedundancy { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
JumboFrameCapable
Declaration
public Output<bool> JumboFrameCapable { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Boolean> |
Location
The AWS Direct Connect location in which the LAG should be allocated. See DescribeLocations for the list of AWS Direct Connect locations. Use locationCode.
Declaration
public Output<string> Location { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Name
The name of the LAG.
Declaration
public Output<string> Name { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Tags
A map of tags to assign to the resource.
Declaration
public Output<ImmutableDictionary<string, object>> Tags { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Collections.Immutable.ImmutableDictionary<System.String, System.Object>> |
Methods
View SourceGet(String, Input<String>, LinkAggregationGroupState, CustomResourceOptions)
Get an existing LinkAggregationGroup resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
Declaration
public static LinkAggregationGroup Get(string name, Input<string> id, LinkAggregationGroupState state = null, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resulting resource. |
| Input<System.String> | id | The unique provider ID of the resource to lookup. |
| LinkAggregationGroupState | state | Any extra arguments used during the lookup. |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Returns
| Type | Description |
|---|---|
| LinkAggregationGroup |