Interface CfnCatalogProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCatalogProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-27T13:12:00.624Z") @Stability(Stable) public interface CfnCatalogProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnCatalog.

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.*;
 CfnCatalogProps cfnCatalogProps = CfnCatalogProps.builder()
         .name("name")
         // the properties below are optional
         .allowFullTableExternalDataAccess("allowFullTableExternalDataAccess")
         .catalogProperties(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())
         .createDatabaseDefaultPermissions(List.of(PrincipalPermissionsProperty.builder()
                 .permissions(List.of("permissions"))
                 .principal(DataLakePrincipalProperty.builder()
                         .dataLakePrincipalIdentifier("dataLakePrincipalIdentifier")
                         .build())
                 .build()))
         .createTableDefaultPermissions(List.of(PrincipalPermissionsProperty.builder()
                 .permissions(List.of("permissions"))
                 .principal(DataLakePrincipalProperty.builder()
                         .dataLakePrincipalIdentifier("dataLakePrincipalIdentifier")
                         .build())
                 .build()))
         .description("description")
         .federatedCatalog(FederatedCatalogProperty.builder()
                 .connectionName("connectionName")
                 .identifier("identifier")
                 .build())
         .overwriteChildResourcePermissionsWithDefault("overwriteChildResourcePermissionsWithDefault")
         .parameters(Map.of(
                 "parametersKey", "parameters"))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .targetRedshiftCatalog(TargetRedshiftCatalogProperty.builder()
                 .catalogArn("catalogArn")
                 .build())
         .build();
 

See Also: