pub struct Builder { /* private fields */ }
Expand description
A builder for ResetParameterGroupInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn parameter_group_name(self, input: impl Into<String>) -> Self
pub fn parameter_group_name(self, input: impl Into<String>) -> Self
The name of the parameter group to reset.
sourcepub fn set_parameter_group_name(self, input: Option<String>) -> Self
pub fn set_parameter_group_name(self, input: Option<String>) -> Self
The name of the parameter group to reset.
sourcepub fn all_parameters(self, input: bool) -> Self
pub fn all_parameters(self, input: bool) -> Self
If true, all parameters in the parameter group are reset to their default values. If false, only the parameters listed by ParameterNames are reset to their default values.
sourcepub fn set_all_parameters(self, input: Option<bool>) -> Self
pub fn set_all_parameters(self, input: Option<bool>) -> Self
If true, all parameters in the parameter group are reset to their default values. If false, only the parameters listed by ParameterNames are reset to their default values.
sourcepub fn parameter_names(self, input: impl Into<String>) -> Self
pub fn parameter_names(self, input: impl Into<String>) -> Self
Appends an item to parameter_names
.
To override the contents of this collection use set_parameter_names
.
An array of parameter names to reset to their default values. If AllParameters is true, do not use ParameterNames. If AllParameters is false, you must specify the name of at least one parameter to reset.
sourcepub fn set_parameter_names(self, input: Option<Vec<String>>) -> Self
pub fn set_parameter_names(self, input: Option<Vec<String>>) -> Self
An array of parameter names to reset to their default values. If AllParameters is true, do not use ParameterNames. If AllParameters is false, you must specify the name of at least one parameter to reset.
sourcepub fn build(self) -> Result<ResetParameterGroupInput, BuildError>
pub fn build(self) -> Result<ResetParameterGroupInput, BuildError>
Consumes the builder and constructs a ResetParameterGroupInput
.