NAME

Paws::DirectConnect::CreateLag - Arguments for method CreateLag on Paws::DirectConnect

DESCRIPTION

This class represents the parameters used for calling the method CreateLag on the AWS Direct Connect service. Use the attributes of this class as arguments to method CreateLag.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateLag.

SYNOPSIS

my $directconnect = Paws->service('DirectConnect');
my $Lag = $directconnect->CreateLag(
  ConnectionsBandwidth => 'MyBandwidth',
  LagName              => 'MyLagName',
  Location             => 'MyLocationCode',
  NumberOfConnections  => 1,
  ChildConnectionTags  => [
    {
      Key   => 'MyTagKey',      # min: 1, max: 128
      Value => 'MyTagValue',    # max: 256; OPTIONAL
    },
    ...
  ],    # OPTIONAL
  ConnectionId => 'MyConnectionId',    # OPTIONAL
  ProviderName => 'MyProviderName',    # OPTIONAL
  Tags         => [
    {
      Key   => 'MyTagKey',      # min: 1, max: 128
      Value => 'MyTagValue',    # max: 256; OPTIONAL
    },
    ...
  ],    # OPTIONAL
);

# Results:
my $AllowsHostedConnections = $Lag->AllowsHostedConnections;
my $AwsDevice               = $Lag->AwsDevice;
my $AwsDeviceV2             = $Lag->AwsDeviceV2;
my $Connections             = $Lag->Connections;
my $ConnectionsBandwidth    = $Lag->ConnectionsBandwidth;
my $HasLogicalRedundancy    = $Lag->HasLogicalRedundancy;
my $JumboFrameCapable       = $Lag->JumboFrameCapable;
my $LagId                   = $Lag->LagId;
my $LagName                 = $Lag->LagName;
my $LagState                = $Lag->LagState;
my $Location                = $Lag->Location;
my $MinimumLinks            = $Lag->MinimumLinks;
my $NumberOfConnections     = $Lag->NumberOfConnections;
my $OwnerAccount            = $Lag->OwnerAccount;
my $ProviderName            = $Lag->ProviderName;
my $Region                  = $Lag->Region;
my $Tags                    = $Lag->Tags;

# Returns a L<Paws::DirectConnect::Lag> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/directconnect/CreateLag

ATTRIBUTES

ChildConnectionTags => ArrayRef[Paws::DirectConnect::Tag]

The tags to associate with the automtically created LAGs.

ConnectionId => Str

The ID of an existing connection to migrate to the LAG.

REQUIRED ConnectionsBandwidth => Str

The bandwidth of the individual physical connections bundled by the LAG. The possible values are 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, and 10Gbps.

REQUIRED LagName => Str

The name of the LAG.

REQUIRED Location => Str

The location for the LAG.

REQUIRED NumberOfConnections => Int

The number of physical connections initially provisioned and bundled by the LAG.

ProviderName => Str

The name of the service provider associated with the LAG.

Tags => ArrayRef[Paws::DirectConnect::Tag]

The tags to associate with the LAG.

SEE ALSO

This class forms part of Paws, documenting arguments for method CreateLag in Paws::DirectConnect

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues