Show / Hide Table of Contents

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",
    });
}

}
Inheritance
System.Object
Resource
CustomResource
LinkAggregationGroup
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.DirectConnect
Assembly: Pulumi.Aws.dll
Syntax
public class LinkAggregationGroup : CustomResource

Constructors

View Source

LinkAggregationGroup(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 Source

Arn

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>
View Source

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>
View Source

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>>
View Source

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>
View Source

JumboFrameCapable

Declaration
public Output<bool> JumboFrameCapable { get; }
Property Value
Type Description
Output<System.Boolean>
View Source

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>
View Source

Name

The name of the LAG.

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>
View Source

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 Source

Get(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
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.