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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCatalog.CatalogPropertiesPropertystatic final classAn implementation forCfnCatalog.CatalogPropertiesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomProperties
Additional key-value properties for the catalog.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getDataLakeAccessProperties
Data lake access properties for the catalog.Returns union: either
IResolvableorCfnCatalog.DataLakeAccessPropertiesProperty- See Also:
-
builder
-