[][src]Struct rusoto_docdb::ApplyPendingMaintenanceActionMessage

pub struct ApplyPendingMaintenanceActionMessage {
    pub apply_action: String,
    pub opt_in_type: String,
    pub resource_identifier: String,
}

Represents the input to ApplyPendingMaintenanceAction.

Fields

apply_action: String

The pending maintenance action to apply to this resource.

Valid values: system-update, db-upgrade

opt_in_type: String

A value that specifies the type of opt-in request or undoes an opt-in request. An opt-in request of type immediate can't be undone.

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 existing next-maintenance opt-in requests.

resource_identifier: String

The Amazon Resource Name (ARN) of the resource that the pending maintenance action applies to.

Trait Implementations

impl Clone for ApplyPendingMaintenanceActionMessage[src]

impl Debug for ApplyPendingMaintenanceActionMessage[src]

impl Default for ApplyPendingMaintenanceActionMessage[src]

impl PartialEq<ApplyPendingMaintenanceActionMessage> for ApplyPendingMaintenanceActionMessage[src]

impl StructuralPartialEq for ApplyPendingMaintenanceActionMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.