Class: Aws::MediaConnect::Types::ListEntitlementsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::ListEntitlementsResponse
- Defined in:
- gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#entitlements ⇒ Array<Types::ListedEntitlement>
A list of entitlements that have been granted to you from other Amazon Web Services accounts.
-
#next_token ⇒ String
The token that identifies the batch of results that you want to see.
Instance Attribute Details
#entitlements ⇒ Array<Types::ListedEntitlement>
A list of entitlements that have been granted to you from other Amazon Web Services accounts.
2515 2516 2517 2518 2519 2520 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 2515 class ListEntitlementsResponse < Struct.new( :entitlements, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token that identifies the batch of results that you want to see.
For example, you submit a ListEntitlements 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 ListEntitlements
request a second time and specify the
NextToken
value.
2515 2516 2517 2518 2519 2520 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 2515 class ListEntitlementsResponse < Struct.new( :entitlements, :next_token) SENSITIVE = [] include Aws::Structure end |