@Stability(value=Stable)
public static interface CfnApplicationV2.ZeppelinApplicationConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationV2.ZeppelinApplicationConfigurationProperty.Builder
|
static class |
CfnApplicationV2.ZeppelinApplicationConfigurationProperty.Jsii$Proxy
An implementation for
CfnApplicationV2.ZeppelinApplicationConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationV2.ZeppelinApplicationConfigurationProperty.Builder |
builder() |
default Object |
getCatalogConfiguration()
The Amazon Glue Data Catalog that you use in queries in a Kinesis Data Analytics Studio notebook.
|
default Object |
getCustomArtifactsConfiguration()
A list of `CustomArtifactConfiguration` objects.
|
default Object |
getDeployAsApplicationConfiguration()
The information required to deploy a Kinesis Data Analytics Studio notebook as an application with durable state.
|
default Object |
getMonitoringConfiguration()
The monitoring configuration of a Kinesis Data Analytics Studio notebook.
|
@Stability(value=Stable) @Nullable default Object getCatalogConfiguration()
@Stability(value=Stable) @Nullable default Object getCustomArtifactsConfiguration()
@Stability(value=Stable) @Nullable default Object getDeployAsApplicationConfiguration()
@Stability(value=Stable) @Nullable default Object getMonitoringConfiguration()
@Stability(value=Stable) static CfnApplicationV2.ZeppelinApplicationConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.