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
sourceimpl 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.
sourceimpl OutputArtifact
impl OutputArtifact
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OutputArtifact
.
Trait Implementations
sourceimpl Clone for OutputArtifact
impl Clone for OutputArtifact
sourcefn clone(&self) -> OutputArtifact
fn clone(&self) -> OutputArtifact
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for OutputArtifact
impl Debug for OutputArtifact
sourceimpl PartialEq<OutputArtifact> for OutputArtifact
impl PartialEq<OutputArtifact> for OutputArtifact
sourcefn eq(&self, other: &OutputArtifact) -> bool
fn eq(&self, other: &OutputArtifact) -> bool
impl StructuralPartialEq for OutputArtifact
Auto Trait Implementations
impl RefUnwindSafe for OutputArtifact
impl Send for OutputArtifact
impl Sync for OutputArtifact
impl Unpin for OutputArtifact
impl UnwindSafe for OutputArtifact
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more