Interface CfnApplication.ApplicationCodeConfigurationProperty

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

@Stability(Stable) public static interface CfnApplication.ApplicationCodeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes code configuration for an application.

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.kinesisanalyticsv2.*;
 ApplicationCodeConfigurationProperty applicationCodeConfigurationProperty = ApplicationCodeConfigurationProperty.builder()
         .codeContent(CodeContentProperty.builder()
                 .s3ContentLocation(S3ContentLocationProperty.builder()
                         .bucketArn("bucketArn")
                         .fileKey("fileKey")
                         // the properties below are optional
                         .objectVersion("objectVersion")
                         .build())
                 .textContent("textContent")
                 .zipFileContent("zipFileContent")
                 .build())
         .codeContentType("codeContentType")
         .build();