[][src]Struct rusoto_codepipeline::PutActionRevisionInput

pub struct PutActionRevisionInput {
    pub action_name: String,
    pub action_revision: ActionRevision,
    pub pipeline_name: String,
    pub stage_name: String,
}

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

impl Clone for PutActionRevisionInput[src]

impl Debug for PutActionRevisionInput[src]

impl Default for PutActionRevisionInput[src]

impl PartialEq<PutActionRevisionInput> for PutActionRevisionInput[src]

impl Serialize for PutActionRevisionInput[src]

impl StructuralPartialEq for PutActionRevisionInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.