[][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

actions: Vec<Action>

The actions initiated by this trigger when it fires.

description: Option<String>

A description of the new trigger.

name: String

The name of the trigger.

predicate: Option<Predicate>

A predicate to specify when the new trigger should fire.

This field is required when the trigger type is CONDITIONAL.

schedule: Option<String>

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.

start_on_creation: Option<bool>

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

type_: String

The type of the new trigger.

Trait Implementations

impl PartialEq<CreateTriggerRequest> for CreateTriggerRequest[src]

impl Default for CreateTriggerRequest[src]

impl Clone for CreateTriggerRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[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, U> Into for T where
    U: From<T>, 
[src]

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self