[][src]Struct rusoto_redshift::ModifyScheduledActionMessage

pub struct ModifyScheduledActionMessage {
    pub enable: Option<bool>,
    pub end_time: Option<String>,
    pub iam_role: Option<String>,
    pub schedule: Option<String>,
    pub scheduled_action_description: Option<String>,
    pub scheduled_action_name: String,
    pub start_time: Option<String>,
    pub target_action: Option<ScheduledActionType>,
}

Fields

enable: Option<bool>

A modified enable flag of the scheduled action. If true, the scheduled action is active. If false, the scheduled action is disabled.

end_time: Option<String>

A modified end time of the scheduled action. For more information about this parameter, see ScheduledAction.

iam_role: Option<String>

A different IAM role to assume to run the target action. For more information about this parameter, see ScheduledAction.

schedule: Option<String>

A modified schedule in either at( ) or cron( ) format. For more information about this parameter, see ScheduledAction.

scheduled_action_description: Option<String>

A modified description of the scheduled action.

scheduled_action_name: String

The name of the scheduled action to modify.

start_time: Option<String>

A modified start time of the scheduled action. For more information about this parameter, see ScheduledAction.

target_action: Option<ScheduledActionType>

A modified JSON format of the scheduled action. For more information about this parameter, see ScheduledAction.

Trait Implementations

impl Clone for ModifyScheduledActionMessage[src]

impl Debug for ModifyScheduledActionMessage[src]

impl Default for ModifyScheduledActionMessage[src]

impl PartialEq<ModifyScheduledActionMessage> for ModifyScheduledActionMessage[src]

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