Class: Aws::DocDB::Types::DBClusterMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::DBClusterMessage
- Defined in:
- gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb
Overview
Represents the output of DescribeDBClusters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_clusters ⇒ Array<Types::DBCluster>
A list of clusters.
-
#marker ⇒ String
An optional pagination token provided by a previous request.
Instance Attribute Details
#db_clusters ⇒ Array<Types::DBCluster>
A list of clusters.
1580 1581 1582 1583 1584 1585 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 1580 class DBClusterMessage < Struct.new( :marker, :db_clusters) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
An optional pagination token provided by a previous request. If this
parameter is specified, the response includes only records beyond
the marker, up to the value specified by MaxRecords
.
1580 1581 1582 1583 1584 1585 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 1580 class DBClusterMessage < Struct.new( :marker, :db_clusters) SENSITIVE = [] include Aws::Structure end |