interface DataCatalogEncryptionSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnDataCatalogEncryptionSettingsPropsMixin.DataCatalogEncryptionSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnDataCatalogEncryptionSettingsPropsMixin_DataCatalogEncryptionSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnDataCatalogEncryptionSettingsPropsMixin.DataCatalogEncryptionSettingsProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnDataCatalogEncryptionSettingsPropsMixin.DataCatalogEncryptionSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnDataCatalogEncryptionSettingsPropsMixin » DataCatalogEncryptionSettingsProperty |
Contains configuration information for maintaining Data Catalog security.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const dataCatalogEncryptionSettingsProperty: glue_mixins.CfnDataCatalogEncryptionSettingsPropsMixin.DataCatalogEncryptionSettingsProperty = {
connectionPasswordEncryption: {
kmsKeyId: 'kmsKeyId',
returnConnectionPasswordEncrypted: false,
},
encryptionAtRest: {
catalogEncryptionMode: 'catalogEncryptionMode',
catalogEncryptionServiceRole: 'catalogEncryptionServiceRole',
sseAwsKmsKeyId: 'sseAwsKmsKeyId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | IResolvable | Connection | When connection password protection is enabled, the Data Catalog uses a customer-provided key to encrypt the password as part of CreateConnection or UpdateConnection and store it in the ENCRYPTED_PASSWORD field in the connection properties. |
| encryption | IResolvable | Encryption | Specifies the encryption-at-rest configuration for the Data Catalog. |
connectionPasswordEncryption?
Type:
IResolvable | Connection
(optional)
When connection password protection is enabled, the Data Catalog uses a customer-provided key to encrypt the password as part of CreateConnection or UpdateConnection and store it in the ENCRYPTED_PASSWORD field in the connection properties.
You can enable catalog encryption or only password encryption.
encryptionAtRest?
Type:
IResolvable | Encryption
(optional)
Specifies the encryption-at-rest configuration for the Data Catalog.

.NET
Go
Java
Python
TypeScript