Struct aws_sdk_redshift::types::builders::ParameterBuilder
source · #[non_exhaustive]pub struct ParameterBuilder { /* private fields */ }
Expand description
A builder for Parameter
.
Implementations§
source§impl ParameterBuilder
impl ParameterBuilder
sourcepub fn parameter_name(self, input: impl Into<String>) -> Self
pub fn parameter_name(self, input: impl Into<String>) -> Self
The name of the parameter.
sourcepub fn set_parameter_name(self, input: Option<String>) -> Self
pub fn set_parameter_name(self, input: Option<String>) -> Self
The name of the parameter.
sourcepub fn get_parameter_name(&self) -> &Option<String>
pub fn get_parameter_name(&self) -> &Option<String>
The name of the parameter.
sourcepub fn parameter_value(self, input: impl Into<String>) -> Self
pub fn parameter_value(self, input: impl Into<String>) -> Self
The value of the parameter. If ParameterName
is wlm_json_configuration
, then the maximum size of ParameterValue
is 8000 characters.
sourcepub fn set_parameter_value(self, input: Option<String>) -> Self
pub fn set_parameter_value(self, input: Option<String>) -> Self
The value of the parameter. If ParameterName
is wlm_json_configuration
, then the maximum size of ParameterValue
is 8000 characters.
sourcepub fn get_parameter_value(&self) -> &Option<String>
pub fn get_parameter_value(&self) -> &Option<String>
The value of the parameter. If ParameterName
is wlm_json_configuration
, then the maximum size of ParameterValue
is 8000 characters.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the parameter.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the parameter.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the parameter.
sourcepub fn source(self, input: impl Into<String>) -> Self
pub fn source(self, input: impl Into<String>) -> Self
The source of the parameter value, such as "engine-default" or "user".
sourcepub fn set_source(self, input: Option<String>) -> Self
pub fn set_source(self, input: Option<String>) -> Self
The source of the parameter value, such as "engine-default" or "user".
sourcepub fn get_source(&self) -> &Option<String>
pub fn get_source(&self) -> &Option<String>
The source of the parameter value, such as "engine-default" or "user".
sourcepub fn set_data_type(self, input: Option<String>) -> Self
pub fn set_data_type(self, input: Option<String>) -> Self
The data type of the parameter.
sourcepub fn get_data_type(&self) -> &Option<String>
pub fn get_data_type(&self) -> &Option<String>
The data type of the parameter.
sourcepub fn allowed_values(self, input: impl Into<String>) -> Self
pub fn allowed_values(self, input: impl Into<String>) -> Self
The valid range of values for the parameter.
sourcepub fn set_allowed_values(self, input: Option<String>) -> Self
pub fn set_allowed_values(self, input: Option<String>) -> Self
The valid range of values for the parameter.
sourcepub fn get_allowed_values(&self) -> &Option<String>
pub fn get_allowed_values(&self) -> &Option<String>
The valid range of values for the parameter.
sourcepub fn apply_type(self, input: ParameterApplyType) -> Self
pub fn apply_type(self, input: ParameterApplyType) -> Self
Specifies how to apply the WLM configuration parameter. Some properties can be applied dynamically, while other properties require that any associated clusters be rebooted for the configuration changes to be applied. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
sourcepub fn set_apply_type(self, input: Option<ParameterApplyType>) -> Self
pub fn set_apply_type(self, input: Option<ParameterApplyType>) -> Self
Specifies how to apply the WLM configuration parameter. Some properties can be applied dynamically, while other properties require that any associated clusters be rebooted for the configuration changes to be applied. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
sourcepub fn get_apply_type(&self) -> &Option<ParameterApplyType>
pub fn get_apply_type(&self) -> &Option<ParameterApplyType>
Specifies how to apply the WLM configuration parameter. Some properties can be applied dynamically, while other properties require that any associated clusters be rebooted for the configuration changes to be applied. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
sourcepub fn is_modifiable(self, input: bool) -> Self
pub fn is_modifiable(self, input: bool) -> Self
If true
, the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.
sourcepub fn set_is_modifiable(self, input: Option<bool>) -> Self
pub fn set_is_modifiable(self, input: Option<bool>) -> Self
If true
, the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.
sourcepub fn get_is_modifiable(&self) -> &Option<bool>
pub fn get_is_modifiable(&self) -> &Option<bool>
If true
, the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.
sourcepub fn minimum_engine_version(self, input: impl Into<String>) -> Self
pub fn minimum_engine_version(self, input: impl Into<String>) -> Self
The earliest engine version to which the parameter can apply.
sourcepub fn set_minimum_engine_version(self, input: Option<String>) -> Self
pub fn set_minimum_engine_version(self, input: Option<String>) -> Self
The earliest engine version to which the parameter can apply.
sourcepub fn get_minimum_engine_version(&self) -> &Option<String>
pub fn get_minimum_engine_version(&self) -> &Option<String>
The earliest engine version to which the parameter can apply.
Trait Implementations§
source§impl Clone for ParameterBuilder
impl Clone for ParameterBuilder
source§fn clone(&self) -> ParameterBuilder
fn clone(&self) -> ParameterBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ParameterBuilder
impl Debug for ParameterBuilder
source§impl Default for ParameterBuilder
impl Default for ParameterBuilder
source§fn default() -> ParameterBuilder
fn default() -> ParameterBuilder
source§impl PartialEq for ParameterBuilder
impl PartialEq for ParameterBuilder
source§fn eq(&self, other: &ParameterBuilder) -> bool
fn eq(&self, other: &ParameterBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.