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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.ApplicationCodeConfigurationPropertystatic final classAn implementation forCfnApplication.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.Returns union: either
IResolvableorCfnApplication.CodeContentProperty- See Also:
-
getCodeContentType
Specifies whether the code content is in text or zip format.- See Also:
-
builder
-