Class: Aws::RDS::Types::DescribeDBShardGroupsMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::DescribeDBShardGroupsMessage
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_shard_group_identifier ⇒ String
The user-supplied DB shard group identifier.
-
#filters ⇒ Array<Types::Filter>
A filter that specifies one or more DB shard groups to describe.
-
#marker ⇒ String
An optional pagination token provided by a previous
DescribeDBShardGroupsrequest. -
#max_records ⇒ Integer
The maximum number of records to include in the response.
Instance Attribute Details
#db_shard_group_identifier ⇒ String
The user-supplied DB shard group identifier. If this parameter is specified, information for only the specific DB shard group is returned. This parameter isn't case-sensitive.
Constraints:
- If supplied, must match an existing DB shard group identifier.
^
14650 14651 14652 14653 14654 14655 14656 14657 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 14650 class DescribeDBShardGroupsMessage < Struct.new( :db_shard_group_identifier, :filters, :marker, :max_records) SENSITIVE = [] include Aws::Structure end |
#filters ⇒ Array<Types::Filter>
A filter that specifies one or more DB shard groups to describe.
14650 14651 14652 14653 14654 14655 14656 14657 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 14650 class DescribeDBShardGroupsMessage < Struct.new( :db_shard_group_identifier, :filters, :marker, :max_records) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
An optional pagination token provided by a previous
DescribeDBShardGroups request. If this parameter is specified, the
response includes only records beyond the marker, up to the value
specified by MaxRecords.
14650 14651 14652 14653 14654 14655 14656 14657 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 14650 class DescribeDBShardGroupsMessage < Struct.new( :db_shard_group_identifier, :filters, :marker, :max_records) SENSITIVE = [] include Aws::Structure end |
#max_records ⇒ Integer
The maximum number of records to include in the response. If more
records exist than the specified MaxRecords value, a pagination
token called a marker is included in the response so you can
retrieve the remaining results.
Default: 100
Constraints: Minimum 20, maximum 100
14650 14651 14652 14653 14654 14655 14656 14657 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 14650 class DescribeDBShardGroupsMessage < Struct.new( :db_shard_group_identifier, :filters, :marker, :max_records) SENSITIVE = [] include Aws::Structure end |