Class: Aws::Redshift::Types::CreateClusterSnapshotMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::CreateClusterSnapshotMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-redshift/types.rb
Overview
Note:
When making an API call, you may pass CreateClusterSnapshotMessage data as a hash:
{
snapshot_identifier: "String", # required
cluster_identifier: "String", # required
tags: [
{
key: "String",
value: "String",
},
],
}
Instance Attribute Summary collapse
-
#cluster_identifier ⇒ String
The cluster identifier for which you want a snapshot.
-
#snapshot_identifier ⇒ String
A unique identifier for the snapshot that you are requesting.
-
#tags ⇒ Array<Types::Tag>
A list of tag instances.
Instance Attribute Details
#cluster_identifier ⇒ String
The cluster identifier for which you want a snapshot.
1543 1544 1545 1546 1547 1548 |
# File 'lib/aws-sdk-redshift/types.rb', line 1543 class CreateClusterSnapshotMessage < Struct.new( :snapshot_identifier, :cluster_identifier, :tags) include Aws::Structure end |
#snapshot_identifier ⇒ String
A unique identifier for the snapshot that you are requesting. This identifier must be unique for all snapshots within the AWS account.
Constraints:
-
Cannot be null, empty, or blank
-
Must contain from 1 to 255 alphanumeric characters or hyphens
-
First character must be a letter
-
Cannot end with a hyphen or contain two consecutive hyphens
Example: my-snapshot-id
1543 1544 1545 1546 1547 1548 |
# File 'lib/aws-sdk-redshift/types.rb', line 1543 class CreateClusterSnapshotMessage < Struct.new( :snapshot_identifier, :cluster_identifier, :tags) include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tag instances.
1543 1544 1545 1546 1547 1548 |
# File 'lib/aws-sdk-redshift/types.rb', line 1543 class CreateClusterSnapshotMessage < Struct.new( :snapshot_identifier, :cluster_identifier, :tags) include Aws::Structure end |