The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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
  RequestMACSec => 1,                   # 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 $EncryptionMode          = $Lag->EncryptionMode;
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 $MacSecCapable           = $Lag->MacSecCapable;
my $MacSecKeys              = $Lag->MacSecKeys;
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 dedicated connection to migrate to the LAG.

REQUIRED ConnectionsBandwidth => Str

The bandwidth of the individual physical dedicated connections bundled by the LAG. The possible values are 1Gbps 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 dedicated connections initially provisioned and bundled by the LAG.

ProviderName => Str

The name of the service provider associated with the LAG.

RequestMACSec => Bool

Indicates whether the connection will support MAC Security (MACsec).

All connections in the LAG must be capable of supporting MAC Security (MACsec). For information about MAC Security (MACsec) prerequisties, see MACsec prerequisties (https://docs.aws.amazon.com/directconnect/latest/UserGuide/direct-connect-mac-sec-getting-started.html#mac-sec-prerequisites) in the AWS Direct Connect User Guide.

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