#[non_exhaustive]pub struct DefaultClusterParametersBuilder { /* private fields */ }
Expand description
A builder for DefaultClusterParameters
.
Implementations§
source§impl DefaultClusterParametersBuilder
impl DefaultClusterParametersBuilder
sourcepub fn parameter_group_family(self, input: impl Into<String>) -> Self
pub fn parameter_group_family(self, input: impl Into<String>) -> Self
The name of the cluster parameter group family to which the engine default parameters apply.
sourcepub fn set_parameter_group_family(self, input: Option<String>) -> Self
pub fn set_parameter_group_family(self, input: Option<String>) -> Self
The name of the cluster parameter group family to which the engine default parameters apply.
sourcepub fn get_parameter_group_family(&self) -> &Option<String>
pub fn get_parameter_group_family(&self) -> &Option<String>
The name of the cluster parameter group family to which the engine default parameters apply.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker
parameter and retrying the command. If the Marker
field is empty, all response records have been retrieved for the request.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker
parameter and retrying the command. If the Marker
field is empty, all response records have been retrieved for the request.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker
parameter and retrying the command. If the Marker
field is empty, all response records have been retrieved for the request.
sourcepub fn parameters(self, input: Parameter) -> Self
pub fn parameters(self, input: Parameter) -> Self
Appends an item to parameters
.
To override the contents of this collection use set_parameters
.
The list of cluster default parameters.
sourcepub fn set_parameters(self, input: Option<Vec<Parameter>>) -> Self
pub fn set_parameters(self, input: Option<Vec<Parameter>>) -> Self
The list of cluster default parameters.
sourcepub fn get_parameters(&self) -> &Option<Vec<Parameter>>
pub fn get_parameters(&self) -> &Option<Vec<Parameter>>
The list of cluster default parameters.
sourcepub fn build(self) -> DefaultClusterParameters
pub fn build(self) -> DefaultClusterParameters
Consumes the builder and constructs a DefaultClusterParameters
.
Trait Implementations§
source§impl Clone for DefaultClusterParametersBuilder
impl Clone for DefaultClusterParametersBuilder
source§fn clone(&self) -> DefaultClusterParametersBuilder
fn clone(&self) -> DefaultClusterParametersBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DefaultClusterParametersBuilder
impl Default for DefaultClusterParametersBuilder
source§fn default() -> DefaultClusterParametersBuilder
fn default() -> DefaultClusterParametersBuilder
source§impl PartialEq for DefaultClusterParametersBuilder
impl PartialEq for DefaultClusterParametersBuilder
source§fn eq(&self, other: &DefaultClusterParametersBuilder) -> bool
fn eq(&self, other: &DefaultClusterParametersBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.