Interface CfnApplicationPropsMixin.DeployAsApplicationConfigurationProperty

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

@Stability(Stable) public static interface CfnApplicationPropsMixin.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.cfnpropertymixins.services.kinesisanalyticsv2.*;
 DeployAsApplicationConfigurationProperty deployAsApplicationConfigurationProperty = DeployAsApplicationConfigurationProperty.builder()
         .s3ContentLocation(S3ContentBaseLocationProperty.builder()
                 .basePath("basePath")
                 .bucketArn("bucketArn")
                 .build())
         .build();
 

See Also: