Struct aws_sdk_codepipeline::model::InputArtifact
source · #[non_exhaustive]pub struct InputArtifact { /* private fields */ }
Expand description
Represents information about an artifact to be worked on, such as a test or build artifact.
Implementations§
source§impl InputArtifact
impl InputArtifact
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
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.
source§impl InputArtifact
impl InputArtifact
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InputArtifact
.
Trait Implementations§
source§impl Clone for InputArtifact
impl Clone for InputArtifact
source§fn clone(&self) -> InputArtifact
fn clone(&self) -> InputArtifact
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 more