Struct rusoto_codepipeline::PutActionRevisionInput[][src]

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

The name of the action that will process the revision.

Represents information about the version (or revision) of an action.

The name of the pipeline that will start processing the revision to the source.

The name of the stage that contains the action that will act upon the revision.

Trait Implementations

impl Default for PutActionRevisionInput
[src]

Returns the "default value" for a type. Read more

impl Debug for PutActionRevisionInput
[src]

Formats the value using the given formatter. Read more

impl Clone for PutActionRevisionInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PutActionRevisionInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations