Interface CfnCatalog.DataLakeAccessPropertiesProperty

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

@Stability(Stable) public static interface CfnCatalog.DataLakeAccessPropertiesProperty extends software.amazon.jsii.JsiiSerializable
Data lake access properties for the catalog.

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.*;
 DataLakeAccessPropertiesProperty dataLakeAccessPropertiesProperty = DataLakeAccessPropertiesProperty.builder()
         .allowFullTableExternalDataAccess("allowFullTableExternalDataAccess")
         .catalogType("catalogType")
         .dataLakeAccess(false)
         .dataTransferRole("dataTransferRole")
         .kmsKey("kmsKey")
         .managedWorkgroupName("managedWorkgroupName")
         .managedWorkgroupStatus("managedWorkgroupStatus")
         .redshiftDatabaseName("redshiftDatabaseName")
         .build();
 

See Also: