Struct aws_sdk_codepipeline::model::StageState [−][src]
#[non_exhaustive]pub struct StageState {
pub stage_name: Option<String>,
pub inbound_execution: Option<StageExecution>,
pub inbound_transition_state: Option<TransitionState>,
pub action_states: Option<Vec<ActionState>>,
pub latest_execution: Option<StageExecution>,
}
Expand description
Represents information about the state of the stage.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.stage_name: Option<String>
The name of the stage.
inbound_execution: Option<StageExecution>
Represents information about the run of a stage.
inbound_transition_state: Option<TransitionState>
The state of the inbound transition, which is either enabled or disabled.
action_states: Option<Vec<ActionState>>
The state of the stage.
latest_execution: Option<StageExecution>
Information about the latest execution in the stage, including its ID and status.
Implementations
The name of the stage.
Represents information about the run of a stage.
The state of the inbound transition, which is either enabled or disabled.
The state of the stage.
Information about the latest execution in the stage, including its ID and status.
Creates a new builder-style object to manufacture StageState
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for StageState
impl Send for StageState
impl Sync for StageState
impl Unpin for StageState
impl UnwindSafe for StageState
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more