[][src]Struct rusoto_redshift::CreateScheduledActionMessage

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

Fields

enable: Option<bool>

If true, the schedule is enabled. If false, the scheduled action does not trigger. For more information about state of the scheduled action, see ScheduledAction.

end_time: Option<String>

The end time in UTC of the scheduled action. After this time, the scheduled action does not trigger. For more information about this parameter, see ScheduledAction.

iam_role: String

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

schedule: String

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

scheduled_action_description: Option<String>

The description of the scheduled action.

scheduled_action_name: String

The name of the scheduled action. The name must be unique within an account. For more information about this parameter, see ScheduledAction.

start_time: Option<String>

The start time in UTC of the scheduled action. Before this time, the scheduled action does not trigger. For more information about this parameter, see ScheduledAction.

target_action: ScheduledActionType

A JSON format string of the Amazon Redshift API operation with input parameters. For more information about this parameter, see ScheduledAction.

Trait Implementations

impl Clone for CreateScheduledActionMessage[src]

impl Debug for CreateScheduledActionMessage[src]

impl Default for CreateScheduledActionMessage[src]

impl PartialEq<CreateScheduledActionMessage> for CreateScheduledActionMessage[src]

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