Interface CfnApplicationV2.DeployAsApplicationConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplicationV2.DeployAsApplicationConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnApplicationV2

@Stability(Stable) public static interface CfnApplicationV2.DeployAsApplicationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The information required to deploy a Kinesis Data Analytics Studio notebook as an application with durable state.

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.*;
 DeployAsApplicationConfigurationProperty deployAsApplicationConfigurationProperty = DeployAsApplicationConfigurationProperty.builder()
         .s3ContentLocation(S3ContentBaseLocationProperty.builder()
                 .bucketArn("bucketArn")
                 // the properties below are optional
                 .basePath("basePath")
                 .build())
         .build();
 

See Also: