#[non_exhaustive]pub struct ClusterParameterStatusBuilder { /* private fields */ }
Expand description
A builder for ClusterParameterStatus
.
Implementations§
source§impl ClusterParameterStatusBuilder
impl ClusterParameterStatusBuilder
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_apply_status(self, input: impl Into<String>) -> Self
pub fn parameter_apply_status(self, input: impl Into<String>) -> Self
The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.
The following are possible statuses and descriptions.
-
in-sync
: The parameter value is in sync with the database. -
pending-reboot
: The parameter value will be applied after the cluster reboots. -
applying
: The parameter value is being applied to the database. -
invalid-parameter
: Cannot apply the parameter value because it has an invalid value or syntax. -
apply-deferred
: The parameter contains static property changes. The changes are deferred until the cluster reboots. -
apply-error
: Cannot connect to the cluster. The parameter change will be applied after the cluster reboots. -
unknown-error
: Cannot apply the parameter change right now. The change will be applied after the cluster reboots.
sourcepub fn set_parameter_apply_status(self, input: Option<String>) -> Self
pub fn set_parameter_apply_status(self, input: Option<String>) -> Self
The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.
The following are possible statuses and descriptions.
-
in-sync
: The parameter value is in sync with the database. -
pending-reboot
: The parameter value will be applied after the cluster reboots. -
applying
: The parameter value is being applied to the database. -
invalid-parameter
: Cannot apply the parameter value because it has an invalid value or syntax. -
apply-deferred
: The parameter contains static property changes. The changes are deferred until the cluster reboots. -
apply-error
: Cannot connect to the cluster. The parameter change will be applied after the cluster reboots. -
unknown-error
: Cannot apply the parameter change right now. The change will be applied after the cluster reboots.
sourcepub fn get_parameter_apply_status(&self) -> &Option<String>
pub fn get_parameter_apply_status(&self) -> &Option<String>
The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.
The following are possible statuses and descriptions.
-
in-sync
: The parameter value is in sync with the database. -
pending-reboot
: The parameter value will be applied after the cluster reboots. -
applying
: The parameter value is being applied to the database. -
invalid-parameter
: Cannot apply the parameter value because it has an invalid value or syntax. -
apply-deferred
: The parameter contains static property changes. The changes are deferred until the cluster reboots. -
apply-error
: Cannot connect to the cluster. The parameter change will be applied after the cluster reboots. -
unknown-error
: Cannot apply the parameter change right now. The change will be applied after the cluster reboots.
sourcepub fn parameter_apply_error_description(self, input: impl Into<String>) -> Self
pub fn parameter_apply_error_description(self, input: impl Into<String>) -> Self
The error that prevented the parameter from being applied to the database.
sourcepub fn set_parameter_apply_error_description(
self,
input: Option<String>
) -> Self
pub fn set_parameter_apply_error_description( self, input: Option<String> ) -> Self
The error that prevented the parameter from being applied to the database.
sourcepub fn get_parameter_apply_error_description(&self) -> &Option<String>
pub fn get_parameter_apply_error_description(&self) -> &Option<String>
The error that prevented the parameter from being applied to the database.
sourcepub fn build(self) -> ClusterParameterStatus
pub fn build(self) -> ClusterParameterStatus
Consumes the builder and constructs a ClusterParameterStatus
.
Trait Implementations§
source§impl Clone for ClusterParameterStatusBuilder
impl Clone for ClusterParameterStatusBuilder
source§fn clone(&self) -> ClusterParameterStatusBuilder
fn clone(&self) -> ClusterParameterStatusBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ClusterParameterStatusBuilder
impl Default for ClusterParameterStatusBuilder
source§fn default() -> ClusterParameterStatusBuilder
fn default() -> ClusterParameterStatusBuilder
source§impl PartialEq for ClusterParameterStatusBuilder
impl PartialEq for ClusterParameterStatusBuilder
source§fn eq(&self, other: &ClusterParameterStatusBuilder) -> bool
fn eq(&self, other: &ClusterParameterStatusBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.