#[non_exhaustive]pub struct PutActionRevisionInput {
pub pipeline_name: Option<String>,
pub stage_name: Option<String>,
pub action_name: Option<String>,
pub action_revision: Option<ActionRevision>,
}
Expand description
Represents the input of a PutActionRevision
action.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.pipeline_name: Option<String>
The name of the pipeline that starts processing the revision to the source.
stage_name: Option<String>
The name of the stage that contains the action that acts on the revision.
action_name: Option<String>
The name of the action that processes the revision.
action_revision: Option<ActionRevision>
Represents information about the version (or revision) of an action.
Implementations§
source§impl PutActionRevisionInput
impl PutActionRevisionInput
sourcepub fn pipeline_name(&self) -> Option<&str>
pub fn pipeline_name(&self) -> Option<&str>
The name of the pipeline that starts processing the revision to the source.
sourcepub fn stage_name(&self) -> Option<&str>
pub fn stage_name(&self) -> Option<&str>
The name of the stage that contains the action that acts on the revision.
sourcepub fn action_name(&self) -> Option<&str>
pub fn action_name(&self) -> Option<&str>
The name of the action that processes the revision.
sourcepub fn action_revision(&self) -> Option<&ActionRevision>
pub fn action_revision(&self) -> Option<&ActionRevision>
Represents information about the version (or revision) of an action.
source§impl PutActionRevisionInput
impl PutActionRevisionInput
sourcepub fn builder() -> PutActionRevisionInputBuilder
pub fn builder() -> PutActionRevisionInputBuilder
Creates a new builder-style object to manufacture PutActionRevisionInput
.
Trait Implementations§
source§impl Clone for PutActionRevisionInput
impl Clone for PutActionRevisionInput
source§fn clone(&self) -> PutActionRevisionInput
fn clone(&self) -> PutActionRevisionInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PutActionRevisionInput
impl Debug for PutActionRevisionInput
source§impl PartialEq for PutActionRevisionInput
impl PartialEq for PutActionRevisionInput
source§fn eq(&self, other: &PutActionRevisionInput) -> bool
fn eq(&self, other: &PutActionRevisionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PutActionRevisionInput
Auto Trait Implementations§
impl Freeze for PutActionRevisionInput
impl RefUnwindSafe for PutActionRevisionInput
impl Send for PutActionRevisionInput
impl Sync for PutActionRevisionInput
impl Unpin for PutActionRevisionInput
impl UnwindSafe for PutActionRevisionInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.