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::HostReservation; use Moose; has Count => (is => 'ro', isa => 'Int', request_name => 'count', traits => ['NameInRequest']); has CurrencyCode => (is => 'ro', isa => 'Str', request_name => 'currencyCode', traits => ['NameInRequest']); has Duration => (is => 'ro', isa => 'Int', request_name => 'duration', traits => ['NameInRequest']); has End => (is => 'ro', isa => 'Str', request_name => 'end', traits => ['NameInRequest']); has HostIdSet => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'hostIdSet', traits => ['NameInRequest']); has HostReservationId => (is => 'ro', isa => 'Str', request_name => 'hostReservationId', traits => ['NameInRequest']); has HourlyPrice => (is => 'ro', isa => 'Str', request_name => 'hourlyPrice', traits => ['NameInRequest']); has InstanceFamily => (is => 'ro', isa => 'Str', request_name => 'instanceFamily', traits => ['NameInRequest']); has OfferingId => (is => 'ro', isa => 'Str', request_name => 'offeringId', traits => ['NameInRequest']); has PaymentOption => (is => 'ro', isa => 'Str', request_name => 'paymentOption', traits => ['NameInRequest']); has Start => (is => 'ro', isa => 'Str', request_name => 'start', traits => ['NameInRequest']); has State => (is => 'ro', isa => 'Str', request_name => 'state', traits => ['NameInRequest']); has Tags => (is => 'ro', isa => 'ArrayRef[Paws::EC2::Tag]', request_name => 'tagSet', traits => ['NameInRequest']); has UpfrontPrice => (is => 'ro', isa => 'Str', request_name => 'upfrontPrice', traits => ['NameInRequest']); 1; ### main pod documentation begin ### =head1 NAME Paws::EC2::HostReservation =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::EC2::HostReservation object: $service_obj->Method(Att1 => { Count => $value, ..., UpfrontPrice => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::EC2::HostReservation object: $result = $service_obj->Method(...); $result->Att1->Count =head1 DESCRIPTION This class has no description =head1 ATTRIBUTES =head2 Count => Int The number of Dedicated Hosts the reservation is associated with. =head2 CurrencyCode => Str The currency in which the C and C amounts are specified. At this time, the only supported currency is C. =head2 Duration => Int The length of the reservation's term, specified in seconds. Can be C<31536000 (1 year)> | C<94608000 (3 years)>. =head2 End => Str The date and time that the reservation ends. =head2 HostIdSet => ArrayRef[Str|Undef] The IDs of the Dedicated Hosts associated with the reservation. =head2 HostReservationId => Str The ID of the reservation that specifies the associated Dedicated Hosts. =head2 HourlyPrice => Str The hourly price of the reservation. =head2 InstanceFamily => Str The instance family of the Dedicated Host Reservation. The instance family on the Dedicated Host must be the same in order for it to benefit from the reservation. =head2 OfferingId => Str The ID of the reservation. This remains the same regardless of which Dedicated Hosts are associated with it. =head2 PaymentOption => Str The payment option selected for this reservation. =head2 Start => Str The date and time that the reservation started. =head2 State => Str The state of the reservation. =head2 Tags => ArrayRef[L] Any tags assigned to the Dedicated Host Reservation. =head2 UpfrontPrice => Str The upfront price of the reservation. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut