Class: Aws::DocDBElastic::Types::ListClustersOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDBElastic::Types::ListClustersOutput
- Defined in:
- gems/aws-sdk-docdbelastic/lib/aws-sdk-docdbelastic/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#clusters ⇒ Array<Types::ClusterInList>
A list of Amazon DocumentDB elastic clusters.
-
#next_token ⇒ String
A pagination token provided by a previous request.
Instance Attribute Details
#clusters ⇒ Array<Types::ClusterInList>
A list of Amazon DocumentDB elastic clusters.
857 858 859 860 861 862 |
# File 'gems/aws-sdk-docdbelastic/lib/aws-sdk-docdbelastic/types.rb', line 857 class ListClustersOutput < Struct.new( :clusters, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token provided by a previous request. If this parameter
is specified, the response includes only records beyond this token,
up to the value specified by max-results
.
If there is no more data in the responce, the nextToken
will not
be returned.
857 858 859 860 861 862 |
# File 'gems/aws-sdk-docdbelastic/lib/aws-sdk-docdbelastic/types.rb', line 857 class ListClustersOutput < Struct.new( :clusters, :next_token) SENSITIVE = [] include Aws::Structure end |