Struct aws_sdk_docdb::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
Specifies 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
Specifies the name of the parameter.
sourcepub fn get_parameter_name(&self) -> &Option<String>
pub fn get_parameter_name(&self) -> &Option<String>
Specifies 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
Specifies the value of the parameter.
sourcepub fn set_parameter_value(self, input: Option<String>) -> Self
pub fn set_parameter_value(self, input: Option<String>) -> Self
Specifies the value of the parameter.
sourcepub fn get_parameter_value(&self) -> &Option<String>
pub fn get_parameter_value(&self) -> &Option<String>
Specifies the value of the parameter.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
Provides a description of the parameter.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
Provides a description of the parameter.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
Provides a description of the parameter.
sourcepub fn source(self, input: impl Into<String>) -> Self
pub fn source(self, input: impl Into<String>) -> Self
Indicates the source of the parameter value.
sourcepub fn set_source(self, input: Option<String>) -> Self
pub fn set_source(self, input: Option<String>) -> Self
Indicates the source of the parameter value.
sourcepub fn get_source(&self) -> &Option<String>
pub fn get_source(&self) -> &Option<String>
Indicates the source of the parameter value.
sourcepub fn apply_type(self, input: impl Into<String>) -> Self
pub fn apply_type(self, input: impl Into<String>) -> Self
Specifies the engine-specific parameters type.
sourcepub fn set_apply_type(self, input: Option<String>) -> Self
pub fn set_apply_type(self, input: Option<String>) -> Self
Specifies the engine-specific parameters type.
sourcepub fn get_apply_type(&self) -> &Option<String>
pub fn get_apply_type(&self) -> &Option<String>
Specifies the engine-specific parameters type.
sourcepub fn data_type(self, input: impl Into<String>) -> Self
pub fn data_type(self, input: impl Into<String>) -> Self
Specifies the valid data type for the parameter.
sourcepub fn set_data_type(self, input: Option<String>) -> Self
pub fn set_data_type(self, input: Option<String>) -> Self
Specifies the valid data type for the parameter.
sourcepub fn get_data_type(&self) -> &Option<String>
pub fn get_data_type(&self) -> &Option<String>
Specifies the valid data type for the parameter.
sourcepub fn allowed_values(self, input: impl Into<String>) -> Self
pub fn allowed_values(self, input: impl Into<String>) -> Self
Specifies 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
Specifies the valid range of values for the parameter.
sourcepub fn get_allowed_values(&self) -> &Option<String>
pub fn get_allowed_values(&self) -> &Option<String>
Specifies the valid range of values for the parameter.
sourcepub fn is_modifiable(self, input: bool) -> Self
pub fn is_modifiable(self, input: bool) -> Self
Indicates whether (true
) or not (false
) 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
Indicates whether (true
) or not (false
) 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>
Indicates whether (true
) or not (false
) 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.
sourcepub fn apply_method(self, input: ApplyMethod) -> Self
pub fn apply_method(self, input: ApplyMethod) -> Self
Indicates when to apply parameter updates.
sourcepub fn set_apply_method(self, input: Option<ApplyMethod>) -> Self
pub fn set_apply_method(self, input: Option<ApplyMethod>) -> Self
Indicates when to apply parameter updates.
sourcepub fn get_apply_method(&self) -> &Option<ApplyMethod>
pub fn get_apply_method(&self) -> &Option<ApplyMethod>
Indicates when to apply parameter updates.
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 ==
.