Struct aws_sdk_codepipeline::model::OutputArtifact
source · #[non_exhaustive]pub struct OutputArtifact { /* private fields */ }
Expand description
Represents information about the output of an action.
Implementations§
source§impl OutputArtifact
impl OutputArtifact
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
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.
source§impl OutputArtifact
impl OutputArtifact
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OutputArtifact
.
Trait Implementations§
source§impl Clone for OutputArtifact
impl Clone for OutputArtifact
source§fn clone(&self) -> OutputArtifact
fn clone(&self) -> OutputArtifact
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for OutputArtifact
impl Debug for OutputArtifact
source§impl PartialEq<OutputArtifact> for OutputArtifact
impl PartialEq<OutputArtifact> for OutputArtifact
source§fn eq(&self, other: &OutputArtifact) -> bool
fn eq(&self, other: &OutputArtifact) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.