pub struct CreateClusterParameterGroupMessage {
pub description: String,
pub parameter_group_family: String,
pub parameter_group_name: String,
pub tags: Option<Vec<Tag>>,
}
Expand description
Fields§
§description: String
A description of the parameter group.
parameter_group_family: String
The Amazon Redshift engine version to which the cluster parameter group applies. The cluster engine version determines the set of parameters.
To get a list of valid parameter group family names, you can call DescribeClusterParameterGroups. By default, Amazon Redshift returns a list of all the parameter groups that are owned by your AWS account, including the default parameter groups for each Amazon Redshift engine version. The parameter group family names associated with the default parameter groups provide you the valid values. For example, a valid family name is "redshift-1.0".
parameter_group_name: String
The name of the cluster parameter group.
Constraints:
-
Must be 1 to 255 alphanumeric characters or hyphens
-
First character must be a letter.
-
Cannot end with a hyphen or contain two consecutive hyphens.
-
Must be unique withing your AWS account.
This value is stored as a lower-case string.
A list of tag instances.
Trait Implementations§
Source§impl Clone for CreateClusterParameterGroupMessage
impl Clone for CreateClusterParameterGroupMessage
Source§fn clone(&self) -> CreateClusterParameterGroupMessage
fn clone(&self) -> CreateClusterParameterGroupMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for CreateClusterParameterGroupMessage
impl Default for CreateClusterParameterGroupMessage
Source§fn default() -> CreateClusterParameterGroupMessage
fn default() -> CreateClusterParameterGroupMessage
Source§impl PartialEq for CreateClusterParameterGroupMessage
impl PartialEq for CreateClusterParameterGroupMessage
Source§fn eq(&self, other: &CreateClusterParameterGroupMessage) -> bool
fn eq(&self, other: &CreateClusterParameterGroupMessage) -> bool
self
and other
values to be equal, and is used by ==
.