PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::DirectConnect::CreateLag; use Moose; has ChildConnectionTags => (is => 'ro', isa => 'ArrayRef[Paws::DirectConnect::Tag]', traits => ['NameInRequest'], request_name => 'childConnectionTags' ); has ConnectionId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'connectionId' ); has ConnectionsBandwidth => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'connectionsBandwidth' , required => 1); has LagName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'lagName' , required => 1); has Location => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'location' , required => 1); has NumberOfConnections => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'numberOfConnections' , required => 1); has ProviderName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'providerName' ); has RequestMACSec => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'requestMACSec' ); has Tags => (is => 'ro', isa => 'ArrayRef[Paws::DirectConnect::Tag]', traits => ['NameInRequest'], request_name => 'tags' ); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateLag'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::DirectConnect::Lag'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::DirectConnect::CreateLag - Arguments for method CreateLag on L =head1 DESCRIPTION This class represents the parameters used for calling the method CreateLag on the L 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. =head1 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 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 L =head1 ATTRIBUTES =head2 ChildConnectionTags => ArrayRef[L] The tags to associate with the automtically created LAGs. =head2 ConnectionId => Str The ID of an existing dedicated connection to migrate to the LAG. =head2 B ConnectionsBandwidth => Str The bandwidth of the individual physical dedicated connections bundled by the LAG. The possible values are 1Gbps and 10Gbps. =head2 B LagName => Str The name of the LAG. =head2 B Location => Str The location for the LAG. =head2 B NumberOfConnections => Int The number of physical dedicated connections initially provisioned and bundled by the LAG. =head2 ProviderName => Str The name of the service provider associated with the LAG. =head2 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 I. =head2 Tags => ArrayRef[L] The tags to associate with the LAG. =head1 SEE ALSO This class forms part of L, documenting arguments for method CreateLag in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut