Interface CfnPipelinePropsMixin.OutputArtifactProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipelinePropsMixin.OutputArtifactProperty.Jsii$Proxy
Enclosing class:
CfnPipelinePropsMixin

@Stability(Stable) public static interface CfnPipelinePropsMixin.OutputArtifactProperty extends software.amazon.jsii.JsiiSerializable
Represents information about the output of an action.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.codepipeline.*;
 OutputArtifactProperty outputArtifactProperty = OutputArtifactProperty.builder()
         .files(List.of("files"))
         .name("name")
         .build();
 

See Also: