Class: Aws::MediaStoreData::Types::ListItemsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaStoreData::Types::ListItemsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediastoredata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#items ⇒ Array<Types::Item>
The metadata entries for the folders and objects at the requested path.
-
#next_token ⇒ String
The token that can be used in a request to view the next set of results.
Instance Attribute Details
#items ⇒ Array<Types::Item>
The metadata entries for the folders and objects at the requested path.
318 319 320 321 322 323 |
# File 'lib/aws-sdk-mediastoredata/types.rb', line 318 class ListItemsResponse < Struct.new( :items, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token that can be used in a request to view the next set of results. For example, you submit a ‘ListItems` request that matches 2,000 items with `MaxResults` set at 500. The service returns the first batch of results (up to 500) and a `NextToken` value that can be used to fetch the next batch of results.
318 319 320 321 322 323 |
# File 'lib/aws-sdk-mediastoredata/types.rb', line 318 class ListItemsResponse < Struct.new( :items, :next_token) SENSITIVE = [] include Aws::Structure end |