[][src]Struct rusoto_glue::CreateTriggerRequest

pub struct CreateTriggerRequest {
    pub actions: Vec<Action>,
    pub description: Option<String>,
    pub name: String,
    pub predicate: Option<Predicate>,
    pub schedule: Option<String>,
    pub start_on_creation: Option<bool>,
    pub type_: String,
}

Fields

The actions initiated by this trigger when it fires.

A description of the new trigger.

The name of the trigger.

A predicate to specify when the new trigger should fire.

This field is required when the trigger type is CONDITIONAL.

A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

This field is required when the trigger type is SCHEDULED.

Set to true to start SCHEDULED and CONDITIONAL triggers when created. True not supported for ON_DEMAND triggers.

The type of the new trigger.

Trait Implementations

impl Default for CreateTriggerRequest
[src]

impl PartialEq<CreateTriggerRequest> for CreateTriggerRequest
[src]

impl Clone for CreateTriggerRequest
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateTriggerRequest
[src]

impl Serialize for CreateTriggerRequest
[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T
[src]

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

Should always be Self