Class: Aws::MediaTailor::Types::ListPlaybackConfigurationsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaTailor::Types::ListPlaybackConfigurationsResponse
- Defined in:
- gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb
Overview
Returns a list of playback configurations.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#items ⇒ Array<Types::PlaybackConfiguration>
Array of playback configurations.
-
#next_token ⇒ String
Pagination token returned by the GET list request when results exceed the maximum allowed.
Instance Attribute Details
#items ⇒ Array<Types::PlaybackConfiguration>
Array of playback configurations. This might be all the available configurations or a subset, depending on the settings that you provide and the total number of configurations stored.
2460 2461 2462 2463 2464 2465 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 2460 class ListPlaybackConfigurationsResponse < Struct.new( :items, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Pagination token returned by the GET list request when results exceed the maximum allowed. Use the token to fetch the next page of results.
2460 2461 2462 2463 2464 2465 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 2460 class ListPlaybackConfigurationsResponse < Struct.new( :items, :next_token) SENSITIVE = [] include Aws::Structure end |