Class: Aws::Snowball::Types::ListClustersRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Snowball::Types::ListClustersRequest
- Defined in:
- gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb
Overview
Note:
When making an API call, you may pass ListClustersRequest data as a hash:
{
max_results: 1,
next_token: "String",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The number of
ClusterListEntry
objects to return. -
#next_token ⇒ String
HTTP requests are stateless.
Instance Attribute Details
#max_results ⇒ Integer
The number of ClusterListEntry
objects to return.
2053 2054 2055 2056 2057 2058 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 2053 class ListClustersRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
HTTP requests are stateless. To identify what object comes "next"
in the list of ClusterListEntry
objects, you have the option of
specifying NextToken
as the starting point for your returned list.
2053 2054 2055 2056 2057 2058 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 2053 class ListClustersRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |