interface CatalogProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.Alpha.CatalogProps |
Go | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#CatalogProps |
Java | software.amazon.awscdk.services.glue.alpha.CatalogProps |
Python | aws_cdk.aws_glue_alpha.CatalogProps |
TypeScript (source) | @aws-cdk/aws-glue-alpha ยป CatalogProps |
Implements
Catalog
Construction properties for a Catalog.
Example
new glue.Catalog(this, 'MyCatalog', {
catalogName: 'my-catalog',
description: 'my catalog description',
});
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | The name of the catalog. |
| connection | Connection | Connection-password encryption configuration for the catalog. |
| description? | string | A description of the catalog. |
| encryption | Data | Encryption-at-rest configuration for the catalog. |
catalogName
Type:
string
The name of the catalog.
connectionPasswordEncryption?
Type:
Connection
(optional, default: connection-password encryption is not managed by CDK)
Connection-password encryption configuration for the catalog.
description?
Type:
string
(optional, default: no description)
A description of the catalog.
encryptionAtRest?
Type:
Data
(optional, default: encryption at rest is not managed by CDK (the catalog default applies))
Encryption-at-rest configuration for the catalog.

.NET
Go
Java
Python
TypeScript (