Show / Hide Table of Contents

Enum CloudWatchEncryptionMode

(experimental) Encryption mode for CloudWatch Logs.

Namespace: Amazon.CDK.AWS.Glue.Alpha
Assembly: Amazon.CDK.AWS.Glue.Alpha.dll
Syntax (csharp)
public enum CloudWatchEncryptionMode
Syntax (vb)
Public Enum CloudWatchEncryptionMode
Remarks

Stability: Experimental

See: https://docs.aws.amazon.com/glue/latest/webapi/API_CloudWatchEncryption.html#Glue-Type-CloudWatchEncryption-CloudWatchEncryptionMode

ExampleMetadata: infused

Examples
new SecurityConfiguration(this, "MySecurityConfiguration", new SecurityConfigurationProps {
                 CloudWatchEncryption = new CloudWatchEncryption {
                     Mode = CloudWatchEncryptionMode.KMS
                 },
                 JobBookmarksEncryption = new JobBookmarksEncryption {
                     Mode = JobBookmarksEncryptionMode.CLIENT_SIDE_KMS
                 },
                 S3Encryption = new S3Encryption {
                     Mode = S3EncryptionMode.KMS
                 }
             });

Synopsis

Fields

KMS

(experimental) Server-side encryption (SSE) with an AWS KMS key managed by the account owner.

Fields

Name Description
KMS

(experimental) Server-side encryption (SSE) with an AWS KMS key managed by the account owner.

Back to top Generated by DocFX