Struct aws_sdk_codepipeline::types::ActionState
source · #[non_exhaustive]pub struct ActionState {
pub action_name: Option<String>,
pub current_revision: Option<ActionRevision>,
pub latest_execution: Option<ActionExecution>,
pub entity_url: Option<String>,
pub revision_url: Option<String>,
}
Expand description
Represents information about the state of an action.
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.action_name: Option<String>
The name of the action.
current_revision: Option<ActionRevision>
Represents information about the version (or revision) of an action.
latest_execution: Option<ActionExecution>
Represents information about the run of an action.
entity_url: Option<String>
A URL link for more information about the state of the action, such as a deployment group details page.
revision_url: Option<String>
A URL link for more information about the revision, such as a commit details page.
Implementations§
source§impl ActionState
impl ActionState
sourcepub fn action_name(&self) -> Option<&str>
pub fn action_name(&self) -> Option<&str>
The name of the action.
sourcepub fn current_revision(&self) -> Option<&ActionRevision>
pub fn current_revision(&self) -> Option<&ActionRevision>
Represents information about the version (or revision) of an action.
sourcepub fn latest_execution(&self) -> Option<&ActionExecution>
pub fn latest_execution(&self) -> Option<&ActionExecution>
Represents information about the run of an action.
sourcepub fn entity_url(&self) -> Option<&str>
pub fn entity_url(&self) -> Option<&str>
A URL link for more information about the state of the action, such as a deployment group details page.
sourcepub fn revision_url(&self) -> Option<&str>
pub fn revision_url(&self) -> Option<&str>
A URL link for more information about the revision, such as a commit details page.
source§impl ActionState
impl ActionState
sourcepub fn builder() -> ActionStateBuilder
pub fn builder() -> ActionStateBuilder
Creates a new builder-style object to manufacture ActionState
.
Trait Implementations§
source§impl Clone for ActionState
impl Clone for ActionState
source§fn clone(&self) -> ActionState
fn clone(&self) -> ActionState
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ActionState
impl Debug for ActionState
source§impl PartialEq for ActionState
impl PartialEq for ActionState
source§fn eq(&self, other: &ActionState) -> bool
fn eq(&self, other: &ActionState) -> bool
self
and other
values to be equal, and is used
by ==
.