Struct rusoto_codepipeline::ActionRevision[][src]

pub struct ActionRevision {
    pub created: f64,
    pub revision_change_id: String,
    pub revision_id: String,
}

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

Fields

The date and time when the most recent version of the action was created, in timestamp format.

The unique identifier of the change that set the state to this revision, for example a deployment ID or timestamp.

The system-generated unique ID that identifies the revision number of the action.

Trait Implementations

impl Default for ActionRevision
[src]

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

impl Debug for ActionRevision
[src]

Formats the value using the given formatter. Read more

impl Clone for ActionRevision
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ActionRevision
[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