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
disabled_reason: Option<String>
The user-specified reason why the transition between two stages of a pipeline was disabled.
enabled: Option<bool>
Whether the transition between stages is enabled (true) or disabled (false).
last_changed_at: Option<f64>
The timestamp when the transition state was last changed.
last_changed_by: Option<String>
The ID of the user who last changed the transition state.
Trait Implementations
impl Default for TransitionState
[src]
fn default() -> TransitionState
[src]
Returns the "default value" for a type. Read more
impl Debug for TransitionState
[src]
impl Clone for TransitionState
[src]
fn clone(&self) -> TransitionState
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more