pub struct CopyDBClusterParameterGroupMessage {
pub source_db_cluster_parameter_group_identifier: String,
pub tags: Option<Vec<Tag>>,
pub target_db_cluster_parameter_group_description: String,
pub target_db_cluster_parameter_group_identifier: String,
}
Expand description
Represents the input to CopyDBClusterParameterGroup.
Fields§
§source_db_cluster_parameter_group_identifier: String
The identifier or Amazon Resource Name (ARN) for the source cluster parameter group.
Constraints:
-
Must specify a valid cluster parameter group.
-
If the source cluster parameter group is in the same AWS Region as the copy, specify a valid parameter group identifier; for example,
my-db-cluster-param-group
, or a valid ARN. -
If the source parameter group is in a different AWS Region than the copy, specify a valid cluster parameter group ARN; for example,
arn:aws:rds:us-east-1:123456789012:sample-cluster:sample-parameter-group
.
The tags that are to be assigned to the parameter group.
target_db_cluster_parameter_group_description: String
A description for the copied cluster parameter group.
target_db_cluster_parameter_group_identifier: String
The identifier for the copied cluster parameter group.
Constraints:
-
Cannot be null, empty, or blank.
-
Must contain from 1 to 255 letters, numbers, or hyphens.
-
The first character must be a letter.
-
Cannot end with a hyphen or contain two consecutive hyphens.
Example: my-cluster-param-group1
Trait Implementations§
Source§impl Clone for CopyDBClusterParameterGroupMessage
impl Clone for CopyDBClusterParameterGroupMessage
Source§fn clone(&self) -> CopyDBClusterParameterGroupMessage
fn clone(&self) -> CopyDBClusterParameterGroupMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for CopyDBClusterParameterGroupMessage
impl Default for CopyDBClusterParameterGroupMessage
Source§fn default() -> CopyDBClusterParameterGroupMessage
fn default() -> CopyDBClusterParameterGroupMessage
Source§impl PartialEq for CopyDBClusterParameterGroupMessage
impl PartialEq for CopyDBClusterParameterGroupMessage
Source§fn eq(&self, other: &CopyDBClusterParameterGroupMessage) -> bool
fn eq(&self, other: &CopyDBClusterParameterGroupMessage) -> bool
self
and other
values to be equal, and is used by ==
.