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
The result of a successful ListEntitlements request. The response includes the ARN of each entitlement, the name of the associated flow, and the NextToken to use in a subsequent ListEntitlements request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#entitlements ⇒ Array<Types::ListedEntitlement>
A list of entitlements that have been granted to you from other AWS accounts.
-
#next_token ⇒ String
The token that identifies which 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 AWS accounts.
2377 2378 2379 2380 2381 2382 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 2377 class ListEntitlementsResponse < Struct.new( :entitlements, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token that identifies which 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.
2377 2378 2379 2380 2381 2382 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 2377 class ListEntitlementsResponse < Struct.new( :entitlements, :next_token) SENSITIVE = [] include Aws::Structure end |