interface CfnDataCatalogEncryptionSettingsMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnDataCatalogEncryptionSettingsMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnDataCatalogEncryptionSettingsMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnDataCatalogEncryptionSettingsMixinProps |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnDataCatalogEncryptionSettingsMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const cfnDataCatalogEncryptionSettingsMixinProps: glue_mixins.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