interface CfnDataCatalogEncryptionSettingsMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnDataCatalogEncryptionSettingsMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnDataCatalogEncryptionSettingsMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnDataCatalogEncryptionSettingsMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnDataCatalogEncryptionSettingsMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnDataCatalogEncryptionSettingsMixinProps |
Properties for CfnDataCatalogEncryptionSettingsPropsMixin.
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/cfn-property-mixins';
const cfnDataCatalogEncryptionSettingsMixinProps: glue.CfnDataCatalogEncryptionSettingsMixinProps = {
catalogId: 'catalogId',
dataCatalogEncryptionSettings: {
connectionPasswordEncryption: {
kmsKeyId: 'kmsKeyId',
returnConnectionPasswordEncrypted: false,
},
encryptionAtRest: {
catalogEncryptionMode: 'catalogEncryptionMode',
catalogEncryptionServiceRole: 'catalogEncryptionServiceRole',
sseAwsKmsKeyId: 'sseAwsKmsKeyId',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | The ID of the Data Catalog in which the settings are created. |
| data | IResolvable | Data | Contains configuration information for maintaining Data Catalog security. |
catalogId?
Type:
string
(optional)
The ID of the Data Catalog in which the settings are created.
dataCatalogEncryptionSettings?
Type:
IResolvable | Data
(optional)
Contains configuration information for maintaining Data Catalog security.

.NET
Go
Java
Python
TypeScript