interface ZeppelinApplicationConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.KinesisAnalyticsV2.CfnApplication.ZeppelinApplicationConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalyticsv2#CfnApplication_ZeppelinApplicationConfigurationProperty | 
|  Java | software.amazon.awscdk.services.kinesisanalyticsv2.CfnApplication.ZeppelinApplicationConfigurationProperty | 
|  Python | aws_cdk.aws_kinesisanalyticsv2.CfnApplication.ZeppelinApplicationConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_kinesisanalyticsv2»CfnApplication»ZeppelinApplicationConfigurationProperty | 
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 { aws_kinesisanalyticsv2 as kinesisanalyticsv2 } from 'aws-cdk-lib';
const zeppelinApplicationConfigurationProperty: kinesisanalyticsv2.CfnApplication.ZeppelinApplicationConfigurationProperty = {
  catalogConfiguration: {
    glueDataCatalogConfiguration: {
      databaseArn: 'databaseArn',
    },
  },
  customArtifactsConfiguration: [{
    artifactType: 'artifactType',
    // the properties below are optional
    mavenReference: {
      artifactId: 'artifactId',
      groupId: 'groupId',
      version: 'version',
    },
    s3ContentLocation: {
      bucketArn: 'bucketArn',
      fileKey: 'fileKey',
      // the properties below are optional
      objectVersion: 'objectVersion',
    },
  }],
  deployAsApplicationConfiguration: {
    s3ContentLocation: {
      bucketArn: 'bucketArn',
      // the properties below are optional
      basePath: 'basePath',
    },
  },
  monitoringConfiguration: {
    logLevel: 'logLevel',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| catalog | IResolvable | Catalog | The Amazon Glue Data Catalog that you use in queries in a Kinesis Data Analytics Studio notebook. | 
| custom | IResolvable | (IResolvable | Custom)[] | A list of CustomArtifactConfigurationobjects. | 
| deploy | IResolvable | Deploy | The information required to deploy a Kinesis Data Analytics Studio notebook as an application with durable state. | 
| monitoring | IResolvable | Zeppelin | The monitoring configuration of a Kinesis Data Analytics Studio notebook. | 
catalogConfiguration?
Type:
IResolvable | Catalog
(optional)
The Amazon Glue Data Catalog that you use in queries in a Kinesis Data Analytics Studio notebook.
customArtifactsConfiguration?
Type:
IResolvable | (IResolvable | Custom)[]
(optional)
A list of CustomArtifactConfiguration objects.
deployAsApplicationConfiguration?
Type:
IResolvable | Deploy
(optional)
The information required to deploy a Kinesis Data Analytics Studio notebook as an application with durable state.
monitoringConfiguration?
Type:
IResolvable | Zeppelin
(optional)
The monitoring configuration of a Kinesis Data Analytics Studio notebook.
