[][src]Struct rusoto_glue::Trigger

pub struct Trigger {
    pub actions: Option<Vec<Action>>,
    pub description: Option<String>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub predicate: Option<Predicate>,
    pub schedule: Option<String>,
    pub state: Option<String>,
    pub type_: Option<String>,
    pub workflow_name: Option<String>,
}

Information about a specific trigger.

Fields

actions: Option<Vec<Action>>

The actions initiated by this trigger.

description: Option<String>

A description of this trigger.

id: Option<String>

Reserved for future use.

name: Option<String>

The name of the trigger.

predicate: Option<Predicate>

The predicate of this trigger, which defines when it will fire.

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 * * ? *).

state: Option<String>

The current state of the trigger.

type_: Option<String>

The type of trigger that this is.

workflow_name: Option<String>

The name of the workflow associated with the trigger.

Trait Implementations

impl Clone for Trigger[src]

impl Debug for Trigger[src]

impl Default for Trigger[src]

impl<'de> Deserialize<'de> for Trigger[src]

impl PartialEq<Trigger> for Trigger[src]

impl StructuralPartialEq for Trigger[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.