Struct cfn::aws::glue::TriggerProperties [] [src]

pub struct TriggerProperties {
    pub actions: ValueList<Action>,
    pub description: Option<Value<String>>,
    pub name: Option<Value<String>>,
    pub predicate: Option<Value<Predicate>>,
    pub schedule: Option<Value<String>>,
    pub type_: Value<String>,
}

Properties for the Trigger resource.

Fields

Property Actions.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Description.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Name.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Predicate.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Schedule.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Type.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for TriggerProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for TriggerProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<TriggerProperties> for Trigger
[src]

[src]

Performs the conversion.

Auto Trait Implementations