[][src]Struct rusoto_elasticbeanstalk::ManagedAction

pub struct ManagedAction {
    pub action_description: Option<String>,
    pub action_id: Option<String>,
    pub action_type: Option<String>,
    pub status: Option<String>,
    pub window_start_time: Option<String>,
}

The record of an upcoming or in-progress managed action.

Fields

action_description: Option<String>

A description of the managed action.

action_id: Option<String>

A unique identifier for the managed action.

action_type: Option<String>

The type of managed action.

status: Option<String>

The status of the managed action. If the action is Scheduled, you can apply it immediately with ApplyEnvironmentManagedAction.

window_start_time: Option<String>

The start time of the maintenance window in which the managed action will execute.

Trait Implementations

impl Clone for ManagedAction[src]

impl Debug for ManagedAction[src]

impl Default for ManagedAction[src]

impl PartialEq<ManagedAction> for ManagedAction[src]

impl StructuralPartialEq for ManagedAction[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.