public static interface CfnPipeline.OutputArtifactProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.codepipeline.*; OutputArtifactProperty outputArtifactProperty = OutputArtifactProperty.builder() .name("name") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnPipeline.OutputArtifactProperty.Builder
A builder for
CfnPipeline.OutputArtifactProperty |
static class |
CfnPipeline.OutputArtifactProperty.Jsii$Proxy
An implementation for
CfnPipeline.OutputArtifactProperty |
Modifier and Type | Method and Description |
---|---|
static CfnPipeline.OutputArtifactProperty.Builder |
builder() |
java.lang.String |
getName()
The name of the output of an artifact, such as "My App".
|
java.lang.String getName()
The output artifact name must exactly match the input artifact declared for a downstream action. However, the downstream action's 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.
static CfnPipeline.OutputArtifactProperty.Builder builder()