Struct aws_sdk_codepipeline::model::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
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 more
sourceimpl 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ActionState) -> bool
fn ne(&self, other: &ActionState) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more