#[non_exhaustive]pub struct ModifyClusterMaintenanceInput { /* private fields */ }
Implementations§
source§impl ModifyClusterMaintenanceInput
impl ModifyClusterMaintenanceInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyClusterMaintenance, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyClusterMaintenance, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ModifyClusterMaintenance
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ModifyClusterMaintenanceInput
.
source§impl ModifyClusterMaintenanceInput
impl ModifyClusterMaintenanceInput
sourcepub fn cluster_identifier(&self) -> Option<&str>
pub fn cluster_identifier(&self) -> Option<&str>
A unique identifier for the cluster.
sourcepub fn defer_maintenance(&self) -> Option<bool>
pub fn defer_maintenance(&self) -> Option<bool>
A boolean indicating whether to enable the deferred maintenance window.
sourcepub fn defer_maintenance_identifier(&self) -> Option<&str>
pub fn defer_maintenance_identifier(&self) -> Option<&str>
A unique identifier for the deferred maintenance window.
sourcepub fn defer_maintenance_start_time(&self) -> Option<&DateTime>
pub fn defer_maintenance_start_time(&self) -> Option<&DateTime>
A timestamp indicating the start time for the deferred maintenance window.
sourcepub fn defer_maintenance_end_time(&self) -> Option<&DateTime>
pub fn defer_maintenance_end_time(&self) -> Option<&DateTime>
A timestamp indicating end time for the deferred maintenance window. If you specify an end time, you can't specify a duration.
sourcepub fn defer_maintenance_duration(&self) -> Option<i32>
pub fn defer_maintenance_duration(&self) -> Option<i32>
An integer indicating the duration of the maintenance window in days. If you specify a duration, you can't specify an end time. The duration must be 45 days or less.
Trait Implementations§
source§impl Clone for ModifyClusterMaintenanceInput
impl Clone for ModifyClusterMaintenanceInput
source§fn clone(&self) -> ModifyClusterMaintenanceInput
fn clone(&self) -> ModifyClusterMaintenanceInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<ModifyClusterMaintenanceInput> for ModifyClusterMaintenanceInput
impl PartialEq<ModifyClusterMaintenanceInput> for ModifyClusterMaintenanceInput
source§fn eq(&self, other: &ModifyClusterMaintenanceInput) -> bool
fn eq(&self, other: &ModifyClusterMaintenanceInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.