CPAN Security Tip #2/3: Make sure none of your favourite CPAN dists are unmaintained! Learn more

use Moose;
has ConnectionId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'connectionId' , required => 1);
has LagId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'lagId' , required => 1);
class_has _api_call => (isa => 'Str', is => 'ro', default => 'AssociateConnectionWithLag');
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::DirectConnect::Connection');
class_has _result_key => (isa => 'Str', is => 'ro');
1;
### main pod documentation begin ###
=head1 NAME
Paws::DirectConnect::AssociateConnectionWithLag - Arguments for method AssociateConnectionWithLag on L<Paws::DirectConnect>
=head1 DESCRIPTION
This class represents the parameters used for calling the method AssociateConnectionWithLag on the
L<AWS Direct Connect|Paws::DirectConnect> service. Use the attributes of this class
as arguments to method AssociateConnectionWithLag.
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to AssociateConnectionWithLag.
=head1 SYNOPSIS
my $directconnect = Paws->service('DirectConnect');
my $Connection = $directconnect->AssociateConnectionWithLag(
ConnectionId => 'MyConnectionId',
LagId => 'MyLagId',
);
# Results:
my $AwsDevice = $Connection->AwsDevice;
my $AwsDeviceV2 = $Connection->AwsDeviceV2;
my $Bandwidth = $Connection->Bandwidth;
my $ConnectionId = $Connection->ConnectionId;
my $ConnectionName = $Connection->ConnectionName;
my $ConnectionState = $Connection->ConnectionState;
my $HasLogicalRedundancy = $Connection->HasLogicalRedundancy;
my $JumboFrameCapable = $Connection->JumboFrameCapable;
my $LagId = $Connection->LagId;
my $LoaIssueTime = $Connection->LoaIssueTime;
my $Location = $Connection->Location;
my $OwnerAccount = $Connection->OwnerAccount;
my $PartnerName = $Connection->PartnerName;
my $ProviderName = $Connection->ProviderName;
my $Region = $Connection->Region;
my $Tags = $Connection->Tags;
my $Vlan = $Connection->Vlan;
# Returns a L<Paws::DirectConnect::Connection> 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.
=head1 ATTRIBUTES
=head2 B<REQUIRED> ConnectionId => Str
The ID of the connection.
=head2 B<REQUIRED> LagId => Str
The ID of the LAG with which to associate the connection.
=head1 SEE ALSO
This class forms part of L<Paws>, documenting arguments for method AssociateConnectionWithLag in L<Paws::DirectConnect>
=head1 BUGS and CONTRIBUTIONS
The source code is located here: L<https://github.com/pplu/aws-sdk-perl>
=cut