Class: Aws::DSQL::Types::ListClustersOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DSQL::Types::ListClustersOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dsql/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#clusters ⇒ Array<Types::ClusterSummary>
An array of the returned clusters.
-
#next_token ⇒ String
If nextToken is returned, there are more results available.
Instance Attribute Details
#clusters ⇒ Array<Types::ClusterSummary>
An array of the returned clusters.
482 483 484 485 486 487 |
# File 'lib/aws-sdk-dsql/types.rb', line 482 class ListClustersOutput < Struct.new( :next_token, :clusters) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token.
482 483 484 485 486 487 |
# File 'lib/aws-sdk-dsql/types.rb', line 482 class ListClustersOutput < Struct.new( :next_token, :clusters) SENSITIVE = [] include Aws::Structure end |