#[non_exhaustive]pub struct ApplyPendingMaintenanceActionInput { /* private fields */ }
Expand description
Implementations§
source§impl ApplyPendingMaintenanceActionInput
impl ApplyPendingMaintenanceActionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ApplyPendingMaintenanceAction, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ApplyPendingMaintenanceAction, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ApplyPendingMaintenanceAction
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ApplyPendingMaintenanceActionInput
.
source§impl ApplyPendingMaintenanceActionInput
impl ApplyPendingMaintenanceActionInput
sourcepub fn replication_instance_arn(&self) -> Option<&str>
pub fn replication_instance_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the DMS resource that the pending maintenance action applies to.
sourcepub fn apply_action(&self) -> Option<&str>
pub fn apply_action(&self) -> Option<&str>
The pending maintenance action to apply to this resource.
Valid values: os-upgrade
, system-update
, db-upgrade
sourcepub fn opt_in_type(&self) -> Option<&str>
pub fn opt_in_type(&self) -> Option<&str>
A value that specifies the type of opt-in request, or undoes an opt-in request. You can't undo an opt-in request of type immediate
.
Valid values:
-
immediate
- Apply the maintenance action immediately. -
next-maintenance
- Apply the maintenance action during the next maintenance window for the resource. -
undo-opt-in
- Cancel any existingnext-maintenance
opt-in requests.
Trait Implementations§
source§impl Clone for ApplyPendingMaintenanceActionInput
impl Clone for ApplyPendingMaintenanceActionInput
source§fn clone(&self) -> ApplyPendingMaintenanceActionInput
fn clone(&self) -> ApplyPendingMaintenanceActionInput
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<ApplyPendingMaintenanceActionInput> for ApplyPendingMaintenanceActionInput
impl PartialEq<ApplyPendingMaintenanceActionInput> for ApplyPendingMaintenanceActionInput
source§fn eq(&self, other: &ApplyPendingMaintenanceActionInput) -> bool
fn eq(&self, other: &ApplyPendingMaintenanceActionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.