Struct aws_sdk_codepipeline::model::ActionRevision
source · [−]#[non_exhaustive]pub struct ActionRevision {
pub revision_id: Option<String>,
pub revision_change_id: Option<String>,
pub created: Option<DateTime>,
}
Expand description
Represents information about the version (or revision) 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.revision_id: Option<String>
The system-generated unique ID that identifies the revision number of the action.
revision_change_id: Option<String>
The unique identifier of the change that set the state to this revision (for example, a deployment ID or timestamp).
created: Option<DateTime>
The date and time when the most recent version of the action was created, in timestamp format.
Implementations
sourceimpl ActionRevision
impl ActionRevision
sourcepub fn revision_id(&self) -> Option<&str>
pub fn revision_id(&self) -> Option<&str>
The system-generated unique ID that identifies the revision number of the action.
sourcepub fn revision_change_id(&self) -> Option<&str>
pub fn revision_change_id(&self) -> Option<&str>
The unique identifier of the change that set the state to this revision (for example, a deployment ID or timestamp).
sourceimpl ActionRevision
impl ActionRevision
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ActionRevision
Trait Implementations
sourceimpl Clone for ActionRevision
impl Clone for ActionRevision
sourcefn clone(&self) -> ActionRevision
fn clone(&self) -> ActionRevision
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 ActionRevision
impl Debug for ActionRevision
sourceimpl PartialEq<ActionRevision> for ActionRevision
impl PartialEq<ActionRevision> for ActionRevision
sourcefn eq(&self, other: &ActionRevision) -> bool
fn eq(&self, other: &ActionRevision) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ActionRevision) -> bool
fn ne(&self, other: &ActionRevision) -> bool
This method tests for !=
.
impl StructuralPartialEq for ActionRevision
Auto Trait Implementations
impl RefUnwindSafe for ActionRevision
impl Send for ActionRevision
impl Sync for ActionRevision
impl Unpin for ActionRevision
impl UnwindSafe for ActionRevision
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