Interface CfnApplicationV2.ZeppelinApplicationConfigurationProperty

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

@Stability(Stable) public static interface CfnApplicationV2.ZeppelinApplicationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration of a Kinesis Data Analytics Studio notebook.

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.*;
 ZeppelinApplicationConfigurationProperty zeppelinApplicationConfigurationProperty = ZeppelinApplicationConfigurationProperty.builder()
         .catalogConfiguration(CatalogConfigurationProperty.builder()
                 .glueDataCatalogConfiguration(GlueDataCatalogConfigurationProperty.builder()
                         .databaseArn("databaseArn")
                         .build())
                 .build())
         .customArtifactsConfiguration(List.of(CustomArtifactConfigurationProperty.builder()
                 .artifactType("artifactType")
                 // the properties below are optional
                 .mavenReference(MavenReferenceProperty.builder()
                         .artifactId("artifactId")
                         .groupId("groupId")
                         .version("version")
                         .build())
                 .s3ContentLocation(S3ContentLocationProperty.builder()
                         .bucketArn("bucketArn")
                         .fileKey("fileKey")
                         // the properties below are optional
                         .objectVersion("objectVersion")
                         .build())
                 .build()))
         .deployAsApplicationConfiguration(DeployAsApplicationConfigurationProperty.builder()
                 .s3ContentLocation(S3ContentBaseLocationProperty.builder()
                         .bucketArn("bucketArn")
                         // the properties below are optional
                         .basePath("basePath")
                         .build())
                 .build())
         .monitoringConfiguration(ZeppelinMonitoringConfigurationProperty.builder()
                 .logLevel("logLevel")
                 .build())
         .build();
 

See Also: