Struct rusoto_codepipeline::InputArtifact[][src]

pub struct InputArtifact {
    pub name: String,
}

Represents information about an artifact to be worked on, such as a test or build artifact.

Fields

The name of the artifact to be worked on, for example, "My App".

The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.

Trait Implementations

impl Default for InputArtifact
[src]

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

impl Debug for InputArtifact
[src]

Formats the value using the given formatter. Read more

impl Clone for InputArtifact
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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