Class: Aws::DocDBElastic::Types::ListClusterSnapshotsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDBElastic::Types::ListClusterSnapshotsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-docdbelastic/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_arn ⇒ String
The ARN identifier of the elastic cluster.
-
#max_results ⇒ Integer
The maximum number of elastic cluster snapshot results to receive in the response.
-
#next_token ⇒ String
A pagination token provided by a previous request.
-
#snapshot_type ⇒ String
The type of cluster snapshots to be returned.
Instance Attribute Details
#cluster_arn ⇒ String
The ARN identifier of the elastic cluster.
788 789 790 791 792 793 794 795 |
# File 'lib/aws-sdk-docdbelastic/types.rb', line 788 class ListClusterSnapshotsInput < Struct.new( :cluster_arn, :max_results, :next_token, :snapshot_type) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of elastic cluster snapshot results to receive in the response.
788 789 790 791 792 793 794 795 |
# File 'lib/aws-sdk-docdbelastic/types.rb', line 788 class ListClusterSnapshotsInput < Struct.new( :cluster_arn, :max_results, :next_token, :snapshot_type) 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.
788 789 790 791 792 793 794 795 |
# File 'lib/aws-sdk-docdbelastic/types.rb', line 788 class ListClusterSnapshotsInput < Struct.new( :cluster_arn, :max_results, :next_token, :snapshot_type) SENSITIVE = [] include Aws::Structure end |
#snapshot_type ⇒ String
The type of cluster snapshots to be returned. You can specify one of the following values:
-
‘automated` - Return all cluster snapshots that Amazon DocumentDB has automatically created for your Amazon Web Services account.
-
‘manual` - Return all cluster snapshots that you have manually created for your Amazon Web Services account.
788 789 790 791 792 793 794 795 |
# File 'lib/aws-sdk-docdbelastic/types.rb', line 788 class ListClusterSnapshotsInput < Struct.new( :cluster_arn, :max_results, :next_token, :snapshot_type) SENSITIVE = [] include Aws::Structure end |