[][src]Struct rusoto_iotevents::TransitionEvent

pub struct TransitionEvent {
    pub actions: Option<Vec<Action>>,
    pub condition: String,
    pub event_name: String,
    pub next_state: String,
}

Specifies the actions performed and the next state entered when a "condition" evaluates to TRUE.

Fields

actions: Option<Vec<Action>>

The actions to be performed.

condition: String

[Required] A Boolean expression that when TRUE causes the actions to be performed and the "nextState" to be entered.

event_name: String

The name of the transition event.

next_state: String

The next state to enter.

Trait Implementations

impl Clone for TransitionEvent[src]

impl Debug for TransitionEvent[src]

impl Default for TransitionEvent[src]

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

impl PartialEq<TransitionEvent> for TransitionEvent[src]

impl Serialize for TransitionEvent[src]

impl StructuralPartialEq for TransitionEvent[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.