[][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,
    pub workflow_name: Option<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.

workflow_name: Option<String>

The name of the workflow associated with the trigger.

Trait Implementations

impl Clone for CreateTriggerRequest[src]

impl Debug for CreateTriggerRequest[src]

impl Default for CreateTriggerRequest[src]

impl PartialEq<CreateTriggerRequest> for CreateTriggerRequest[src]

impl Serialize for CreateTriggerRequest[src]

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