Interface CfnCatalog.CatalogPropertiesProperty

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

@Stability(Stable) public static interface CfnCatalog.CatalogPropertiesProperty extends software.amazon.jsii.JsiiSerializable
A structure that specifies data lake access properties and other custom properties.

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.glue.*;
 CatalogPropertiesProperty catalogPropertiesProperty = CatalogPropertiesProperty.builder()
         .customProperties(Map.of(
                 "customPropertiesKey", "customProperties"))
         .dataLakeAccessProperties(DataLakeAccessPropertiesProperty.builder()
                 .allowFullTableExternalDataAccess("allowFullTableExternalDataAccess")
                 .catalogType("catalogType")
                 .dataLakeAccess(false)
                 .dataTransferRole("dataTransferRole")
                 .kmsKey("kmsKey")
                 .managedWorkgroupName("managedWorkgroupName")
                 .managedWorkgroupStatus("managedWorkgroupStatus")
                 .redshiftDatabaseName("redshiftDatabaseName")
                 .build())
         .build();
 

See Also: