Struct rusoto_glue::CreateTriggerRequest[][src]

pub struct CreateTriggerRequest {
    pub actions: Vec<Action>,
    pub description: Option<String>,
    pub name: String,
    pub predicate: Option<Predicate>,
    pub schedule: Option<String>,
    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.

The type of the new trigger.

Trait Implementations

impl Default for CreateTriggerRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateTriggerRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateTriggerRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateTriggerRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations