interface CatalogPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnCatalog.CatalogPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnCatalog_CatalogPropertiesProperty |
Java | software.amazon.awscdk.services.glue.CfnCatalog.CatalogPropertiesProperty |
Python | aws_cdk.aws_glue.CfnCatalog.CatalogPropertiesProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnCatalog » CatalogPropertiesProperty |
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 { aws_glue as glue } from 'aws-cdk-lib';
const catalogPropertiesProperty: glue.CfnCatalog.CatalogPropertiesProperty = {
customProperties: {
customPropertiesKey: 'customProperties',
},
dataLakeAccessProperties: {
allowFullTableExternalDataAccess: 'allowFullTableExternalDataAccess',
catalogType: 'catalogType',
dataLakeAccess: false,
dataTransferRole: 'dataTransferRole',
kmsKey: 'kmsKey',
managedWorkgroupName: 'managedWorkgroupName',
managedWorkgroupStatus: 'managedWorkgroupStatus',
redshiftDatabaseName: 'redshiftDatabaseName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | { [string]: string } | IResolvable | Additional key-value properties for the catalog. |
| data | IResolvable | Data | Data lake access properties for the catalog. |
customProperties?
Type:
{ [string]: string } | IResolvable
(optional)
Additional key-value properties for the catalog.
dataLakeAccessProperties?
Type:
IResolvable | Data
(optional)
Data lake access properties for the catalog.

.NET
Go
Java
Python
TypeScript