Interface CfnApplicationPropsMixin.ApplicationCodeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationPropsMixin.ApplicationCodeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationPropsMixin
@Stability(Stable)
public static interface CfnApplicationPropsMixin.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.cfnpropertymixins.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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnApplicationPropsMixin.ApplicationCodeConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCodeContent
The location and type of the application code.Returns union: either
IResolvableorCfnApplicationPropsMixin.CodeContentProperty- See Also:
-
getCodeContentType
Specifies whether the code content is in text or zip format.- See Also:
-
builder
@Stability(Stable) static CfnApplicationPropsMixin.ApplicationCodeConfigurationProperty.Builder builder()
-