[−][src]Struct rusoto_glue::CreateTriggerRequest
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.
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]
fn eq(&self, other: &CreateTriggerRequest) -> bool
[src]
fn ne(&self, other: &CreateTriggerRequest) -> bool
[src]
impl Default for CreateTriggerRequest
[src]
fn default() -> CreateTriggerRequest
[src]
impl Clone for CreateTriggerRequest
[src]
fn clone(&self) -> 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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self