public static interface CfnApplication.ApplicationCodeConfigurationProperty
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") .objectVersion("objectVersion") .build()) .textContent("textContent") .zipFileContent("zipFileContent") .build()) .codeContentType("codeContentType") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplication.ApplicationCodeConfigurationProperty.Builder
A builder for
CfnApplication.ApplicationCodeConfigurationProperty |
static class |
CfnApplication.ApplicationCodeConfigurationProperty.Jsii$Proxy
An implementation for
CfnApplication.ApplicationCodeConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplication.ApplicationCodeConfigurationProperty.Builder |
builder() |
java.lang.Object |
getCodeContent()
The location and type of the application code.
|
java.lang.String |
getCodeContentType()
Specifies whether the code content is in text or zip format.
|