pub struct PutActionRevisionInput {
pub action_name: String,
pub action_revision: ActionRevision,
pub pipeline_name: String,
pub stage_name: String,
}
Expand description
Represents the input of a PutActionRevision
action.
Fields§
§action_name: String
The name of the action that processes the revision.
action_revision: ActionRevision
Represents information about the version (or revision) of an action.
pipeline_name: String
The name of the pipeline that starts processing the revision to the source.
stage_name: String
The name of the stage that contains the action that acts on the revision.
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 Default for PutActionRevisionInput
impl Default for PutActionRevisionInput
Source§fn default() -> PutActionRevisionInput
fn default() -> PutActionRevisionInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutActionRevisionInput
impl PartialEq for PutActionRevisionInput
Source§impl Serialize for PutActionRevisionInput
impl Serialize for PutActionRevisionInput
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