[][src]Struct rusoto_autoscaling::FailedScheduledUpdateGroupActionRequest

pub struct FailedScheduledUpdateGroupActionRequest {
    pub error_code: Option<String>,
    pub error_message: Option<String>,
    pub scheduled_action_name: String,
}

Describes a scheduled action that could not be created, updated, or deleted.

Fields

error_code: Option<String>

The error code.

error_message: Option<String>

The error message accompanying the error code.

scheduled_action_name: String

The name of the scheduled action.

Trait Implementations

impl PartialEq<FailedScheduledUpdateGroupActionRequest> for FailedScheduledUpdateGroupActionRequest[src]

impl Default for FailedScheduledUpdateGroupActionRequest[src]

impl Clone for FailedScheduledUpdateGroupActionRequest[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for FailedScheduledUpdateGroupActionRequest[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T