@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-13T01:13:35.135Z") public enum CloudWatchEncryptionMode extends java.lang.Enum<CloudWatchEncryptionMode>
Example:
SecurityConfiguration.Builder.create(this, "MySecurityConfiguration") .securityConfigurationName("name") .cloudWatchEncryption(CloudWatchEncryption.builder() .mode(CloudWatchEncryptionMode.KMS) .build()) .jobBookmarksEncryption(JobBookmarksEncryption.builder() .mode(JobBookmarksEncryptionMode.CLIENT_SIDE_KMS) .build()) .s3Encryption(S3Encryption.builder() .mode(S3EncryptionMode.KMS) .build()) .build();
https://docs.aws.amazon.com/glue/latest/webapi/API_CloudWatchEncryption.html#Glue-Type-CloudWatchEncryption-CloudWatchEncryptionMode
Enum Constant and Description |
---|
KMS
(experimental) Server-side encryption (SSE) with an AWS KMS key managed by the account owner.
|
Modifier and Type | Method and Description |
---|---|
static CloudWatchEncryptionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CloudWatchEncryptionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CloudWatchEncryptionMode KMS
https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingKMSEncryption.html
public static CloudWatchEncryptionMode[] values()
for (CloudWatchEncryptionMode c : CloudWatchEncryptionMode.values()) System.out.println(c);
public static CloudWatchEncryptionMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null