Class: Aws::Snowball::Types::ListClusterJobsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Snowball::Types::ListClusterJobsRequest
- Defined in:
- gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_id ⇒ String
The 39-character ID for the cluster that you want to list, for example
CID123e4567-e89b-12d3-a456-426655440000
. -
#max_results ⇒ Integer
The number of
JobListEntry
objects to return. -
#next_token ⇒ String
HTTP requests are stateless.
Instance Attribute Details
#cluster_id ⇒ String
The 39-character ID for the cluster that you want to list, for
example CID123e4567-e89b-12d3-a456-426655440000
.
1749 1750 1751 1752 1753 1754 1755 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 1749 class ListClusterJobsRequest < Struct.new( :cluster_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The number of JobListEntry
objects to return.
1749 1750 1751 1752 1753 1754 1755 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 1749 class ListClusterJobsRequest < Struct.new( :cluster_id, :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 JobListEntry
objects, you have the option of
specifying NextToken
as the starting point for your returned list.
1749 1750 1751 1752 1753 1754 1755 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 1749 class ListClusterJobsRequest < Struct.new( :cluster_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |