[][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 tags: Option<HashMap<String, String>>,
    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 is not supported for ON_DEMAND triggers.

tags: Option<HashMap<String, String>>

The tags to use with this trigger. You may use tags to limit access to the trigger. For more information about tags in AWS Glue, see AWS Tags in AWS Glue in the developer guide.

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

impl Send for CreateTriggerRequest

impl Sync for CreateTriggerRequest

Blanket Implementations

impl<T> From for T[src]

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, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 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> 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

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

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