@Stability(value=Stable)
public static interface CfnApplicationV2.ApplicationCodeConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.kinesisanalytics.*;
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationV2.ApplicationCodeConfigurationProperty.Builder
A builder for
CfnApplicationV2.ApplicationCodeConfigurationProperty |
static class |
CfnApplicationV2.ApplicationCodeConfigurationProperty.Jsii$Proxy
An implementation for
CfnApplicationV2.ApplicationCodeConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationV2.ApplicationCodeConfigurationProperty.Builder |
builder() |
Object |
getCodeContent()
The location and type of the application code.
|
String |
getCodeContentType()
Specifies whether the code content is in text or zip format.
|
@Stability(value=Stable) @NotNull Object getCodeContent()
@Stability(value=Stable) @NotNull String getCodeContentType()
@Stability(value=Stable) static CfnApplicationV2.ApplicationCodeConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.