Interface CfnProject.ArtifactsProperty

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

@Stability(Stable) public static interface CfnProject.ArtifactsProperty extends software.amazon.jsii.JsiiSerializable
Artifacts is a property of the AWS::CodeBuild::Project resource that specifies output settings for artifacts generated by an AWS CodeBuild build.

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.codebuild.*;
 ArtifactsProperty artifactsProperty = ArtifactsProperty.builder()
         .type("type")
         // the properties below are optional
         .artifactIdentifier("artifactIdentifier")
         .encryptionDisabled(false)
         .location("location")
         .name("name")
         .namespaceType("namespaceType")
         .overrideArtifactName(false)
         .packaging("packaging")
         .path("path")
         .build();
 

See Also: