Class: Aws::MediaConnect::Types::ListReservationsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::ListReservationsResponse
- Defined in:
- gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The token that identifies the batch of results that you want to see.
-
#reservations ⇒ Array<Types::Reservation>
A list of all reservations that have been purchased by this account in the current Amazon Web Services Region.
Instance Attribute Details
#next_token ⇒ String
The token that identifies the batch of results that you want to see.
For example, you submit a ListReservations
request with
MaxResults
set at 5. The service returns the first batch of
results (up to 5) and a NextToken
value. To see the next batch of
results, you can submit the ListReservations
request a second time
and specify the NextToken
value.
2802 2803 2804 2805 2806 2807 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 2802 class ListReservationsResponse < Struct.new( :next_token, :reservations) SENSITIVE = [] include Aws::Structure end |
#reservations ⇒ Array<Types::Reservation>
A list of all reservations that have been purchased by this account in the current Amazon Web Services Region.
2802 2803 2804 2805 2806 2807 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 2802 class ListReservationsResponse < Struct.new( :next_token, :reservations) SENSITIVE = [] include Aws::Structure end |