Interface AdditionalArtifact

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AdditionalArtifact.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:49.748Z") @Stability(Deprecated) @Deprecated public interface AdditionalArtifact extends software.amazon.jsii.JsiiSerializable
Deprecated.
This class is part of the old API. Use the API based on the CodePipeline class instead
(deprecated) Specification of an additional artifact to generate.

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.*;
 import software.amazon.awscdk.pipelines.*;
 Artifact artifact;
 AdditionalArtifact additionalArtifact = AdditionalArtifact.builder()
         .artifact(artifact)
         .directory("directory")
         .build();