Class CfnDataCatalogEncryptionSettings.EncryptionAtRestProperty
Specifies the encryption-at-rest configuration for the Data Catalog.
Inheritance
System.Object
CfnDataCatalogEncryptionSettings.EncryptionAtRestProperty
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class EncryptionAtRestProperty : Object, CfnDataCatalogEncryptionSettings.IEncryptionAtRestProperty
Syntax (vb)
Public Class EncryptionAtRestProperty
Inherits Object
Implements CfnDataCatalogEncryptionSettings.IEncryptionAtRestProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Glue;
var encryptionAtRestProperty = new EncryptionAtRestProperty {
CatalogEncryptionMode = "catalogEncryptionMode",
CatalogEncryptionServiceRole = "catalogEncryptionServiceRole",
SseAwsKmsKeyId = "sseAwsKmsKeyId"
};
Synopsis
Constructors
EncryptionAtRestProperty() |
Properties
CatalogEncryptionMode | The encryption-at-rest mode for encrypting Data Catalog data. |
CatalogEncryptionServiceRole | The role that AWS Glue assumes to encrypt and decrypt the Data Catalog objects on the caller's behalf. |
SseAwsKmsKeyId | The ID of the AWS KMS key to use for encryption at rest. |
Constructors
EncryptionAtRestProperty()
public EncryptionAtRestProperty()
Properties
CatalogEncryptionMode
The encryption-at-rest mode for encrypting Data Catalog data.
public string CatalogEncryptionMode { get; set; }
Property Value
System.String
Remarks
CatalogEncryptionServiceRole
The role that AWS Glue assumes to encrypt and decrypt the Data Catalog objects on the caller's behalf.
public string CatalogEncryptionServiceRole { get; set; }
Property Value
System.String
Remarks
SseAwsKmsKeyId
The ID of the AWS KMS key to use for encryption at rest.
public string SseAwsKmsKeyId { get; set; }
Property Value
System.String