@Generated(value="jsii-pacmak/1.24.0 (build b722f66)", date="2021-03-11T13:46:44.488Z") @Stability(value=Experimental) public enum TableEncryption extends Enum<TableEncryption>
https://docs.aws.amazon.com/athena/latest/ug/encryption.html| Enum Constant and Description |
|---|
CLIENT_SIDE_KMS
(experimental) Client-side encryption (CSE) with an AWS KMS key managed by the account owner.
|
KMS
(experimental) Server-side encryption (SSE) with an AWS KMS key managed by the account owner.
|
KMS_MANAGED
(experimental) Server-side encryption (SSE) with an AWS KMS key managed by the KMS service.
|
S3_MANAGED
(experimental) Server side encryption (SSE) with an Amazon S3-managed key.
|
UNENCRYPTED |
| Modifier and Type | Method and Description |
|---|---|
static TableEncryption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableEncryption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final TableEncryption UNENCRYPTED
@Stability(value=Experimental) public static final TableEncryption S3_MANAGED
https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingServerSideEncryption.html@Stability(value=Experimental) public static final TableEncryption KMS
https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingKMSEncryption.html@Stability(value=Experimental) public static final TableEncryption KMS_MANAGED
@Stability(value=Experimental) public static final TableEncryption CLIENT_SIDE_KMS
https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingClientSideEncryption.htmlpublic static TableEncryption[] values()
for (TableEncryption c : TableEncryption.values()) System.out.println(c);
public static TableEncryption valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.