Struct rusoto_codepipeline::TransitionState[][src]

pub struct TransitionState {
    pub disabled_reason: Option<String>,
    pub enabled: Option<bool>,
    pub last_changed_at: Option<f64>,
    pub last_changed_by: Option<String>,
}

Represents information about the state of transitions between one stage and another stage.

Fields

The user-specified reason why the transition between two stages of a pipeline was disabled.

Whether the transition between stages is enabled (true) or disabled (false).

The timestamp when the transition state was last changed.

The ID of the user who last changed the transition state.

Trait Implementations

impl Default for TransitionState
[src]

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

impl Debug for TransitionState
[src]

Formats the value using the given formatter. Read more

impl Clone for TransitionState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TransitionState
[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