Interface CfnApplicationV2.ApplicationCodeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationV2.ApplicationCodeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationV2
@Stability(Stable)
public static interface CfnApplicationV2.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.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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationV2.ApplicationCodeConfigurationProperty
static final class
An implementation forCfnApplicationV2.ApplicationCodeConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The location and type of the application code.Specifies whether the code content is in text or zip format.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCodeContent
The location and type of the application code.- See Also:
-
getCodeContentType
Specifies whether the code content is in text or zip format.- See Also:
-
builder
-