Struct rusoto_codepipeline::OutputArtifact[][src]

pub struct OutputArtifact {
    pub name: String,
}

Represents information about the output of an action.

Fields

The name of the output of an artifact, such as "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.

Output artifact names must be unique within a pipeline.

Trait Implementations

impl Default for OutputArtifact
[src]

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

impl Debug for OutputArtifact
[src]

Formats the value using the given formatter. Read more

impl Clone for OutputArtifact
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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