Interface CfnApplication.CatalogConfigurationProperty

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

@Stability(Stable) public static interface CfnApplication.CatalogConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration parameters for the default Amazon Glue database.

You use this database for SQL queries that you write in 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.kinesisanalyticsv2.*;
 CatalogConfigurationProperty catalogConfigurationProperty = CatalogConfigurationProperty.builder()
         .glueDataCatalogConfiguration(GlueDataCatalogConfigurationProperty.builder()
                 .databaseArn("databaseArn")
                 .build())
         .build();