Struct aws_sdk_codepipeline::model::ActionState
source · [−]#[non_exhaustive]pub struct ActionState { /* private fields */ }
Expand description
Represents information about the state of an action.
Implementations
sourceimpl 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.
sourceimpl ActionState
impl ActionState
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ActionState
.
Trait Implementations
sourceimpl Clone for ActionState
impl Clone for ActionState
sourcefn clone(&self) -> ActionState
fn clone(&self) -> ActionState
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ActionState
impl Debug for ActionState
sourceimpl PartialEq<ActionState> for ActionState
impl PartialEq<ActionState> for ActionState
sourcefn eq(&self, other: &ActionState) -> bool
fn eq(&self, other: &ActionState) -> bool
impl StructuralPartialEq for ActionState
Auto Trait Implementations
impl RefUnwindSafe for ActionState
impl Send for ActionState
impl Sync for ActionState
impl Unpin for ActionState
impl UnwindSafe for ActionState
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more