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::EC2::DescribeCapacityReservations; use Moose; has CapacityReservationIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'CapacityReservationId' ); has DryRun => (is => 'ro', isa => 'Bool'); has Filters => (is => 'ro', isa => 'ArrayRef[Paws::EC2::Filter]', traits => ['NameInRequest'], request_name => 'Filter' ); has MaxResults => (is => 'ro', isa => 'Int'); has NextToken => (is => 'ro', isa => 'Str'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeCapacityReservations'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::EC2::DescribeCapacityReservationsResult'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::EC2::DescribeCapacityReservations - Arguments for method DescribeCapacityReservations on L =head1 DESCRIPTION This class represents the parameters used for calling the method DescribeCapacityReservations on the L service. Use the attributes of this class as arguments to method DescribeCapacityReservations. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeCapacityReservations. =head1 SYNOPSIS my $ec2 = Paws->service('EC2'); my $DescribeCapacityReservationsResult = $ec2->DescribeCapacityReservations( CapacityReservationIds => [ 'MyCapacityReservationId', ... ], # OPTIONAL DryRun => 1, # OPTIONAL Filters => [ { Name => 'MyString', # OPTIONAL Values => [ 'MyString', ... # OPTIONAL ], # OPTIONAL }, ... ], # OPTIONAL MaxResults => 1, # OPTIONAL NextToken => 'MyString', # OPTIONAL ); # Results: my $CapacityReservations = $DescribeCapacityReservationsResult->CapacityReservations; my $NextToken = $DescribeCapacityReservationsResult->NextToken; # 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 CapacityReservationIds => ArrayRef[Str|Undef] The ID of the Capacity Reservation. =head2 DryRun => Bool Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is C. Otherwise, it is C. =head2 Filters => ArrayRef[L] One or more filters. =over =item * C - The type of instance for which the Capacity Reservation reserves capacity. =item * C - The ID of the account that owns the Capacity Reservation. =item * C - The Availability Zone ID of the Capacity Reservation. =item * C - The type of operating system for which the Capacity Reservation reserves capacity. =item * C - The Availability Zone ID of the Capacity Reservation. =item * C - Indicates the tenancy of the Capacity Reservation. A Capacity Reservation can have one of the following tenancy settings: =over =item * C - The Capacity Reservation is created on hardware that is shared with other accounts. =item * C - The Capacity Reservation is created on single-tenant hardware that is dedicated to a single account. =back =item * C - The Amazon Resource Name (ARN) of the Outpost on which the Capacity Reservation was created. =item * C - The current state of the Capacity Reservation. A Capacity Reservation can be in one of the following states: =over =item * C- The Capacity Reservation is active and the capacity is available for your use. =item * C - The Capacity Reservation expired automatically at the date and time specified in your request. The reserved capacity is no longer available for your use. =item * C - The Capacity Reservation was cancelled. The reserved capacity is no longer available for your use. =item * C - The Capacity Reservation request was successful but the capacity provisioning is still pending. =item * C - The Capacity Reservation request has failed. A request might fail due to invalid request parameters, capacity constraints, or instance limit constraints. Failed requests are retained for 60 minutes. =back =item * C - The date and time at which the Capacity Reservation was started. =item * C - The date and time at which the Capacity Reservation expires. When a Capacity Reservation expires, the reserved capacity is released and you can no longer launch instances into it. The Capacity Reservation's state changes to expired when it reaches its end date and time. =item * C - Indicates the way in which the Capacity Reservation ends. A Capacity Reservation can have one of the following end types: =over =item * C - The Capacity Reservation remains active until you explicitly cancel it. =item * C - The Capacity Reservation expires automatically at a specified date and time. =back =item * C - Indicates the type of instance launches that the Capacity Reservation accepts. The options include: =over =item * C - The Capacity Reservation accepts all instances that have matching attributes (instance type, platform, and Availability Zone). Instances that have matching attributes launch into the Capacity Reservation automatically without specifying any additional parameters. =item * C - The Capacity Reservation only accepts instances that have matching attributes (instance type, platform, and Availability Zone), and explicitly target the Capacity Reservation. This ensures that only permitted instances can use the reserved capacity. =back =back =head2 MaxResults => Int The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the returned C value. This value can be between 5 and 500. If C is given a larger value than 500, you receive an error. =head2 NextToken => Str The token to use to retrieve the next page of results. =head1 SEE ALSO This class forms part of L, documenting arguments for method DescribeCapacityReservations in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut