interface EncryptionAtRestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnDataCatalogEncryptionSettingsPropsMixin.EncryptionAtRestProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnDataCatalogEncryptionSettingsPropsMixin_EncryptionAtRestProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnDataCatalogEncryptionSettingsPropsMixin.EncryptionAtRestProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnDataCatalogEncryptionSettingsPropsMixin.EncryptionAtRestProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnDataCatalogEncryptionSettingsPropsMixin » EncryptionAtRestProperty |
Specifies the encryption-at-rest configuration for the Data Catalog.
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 encryptionAtRestProperty: glue_mixins.CfnDataCatalogEncryptionSettingsPropsMixin.EncryptionAtRestProperty = {
catalogEncryptionMode: 'catalogEncryptionMode',
catalogEncryptionServiceRole: 'catalogEncryptionServiceRole',
sseAwsKmsKeyId: 'sseAwsKmsKeyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | The encryption-at-rest mode for encrypting Data Catalog data. |
| catalog | string | The role that AWS Glue assumes to encrypt and decrypt the Data Catalog objects on the caller's behalf. |
| sse | string | The ID of the AWS key to use for encryption at rest. |
catalogEncryptionMode?
Type:
string
(optional)
The encryption-at-rest mode for encrypting Data Catalog data.
catalogEncryptionServiceRole?
Type:
string
(optional)
The role that AWS Glue assumes to encrypt and decrypt the Data Catalog objects on the caller's behalf.
sseAwsKmsKeyId?
Type:
string
(optional)
The ID of the AWS key to use for encryption at rest.

.NET
Go
Java
Python
TypeScript