@Generated(value="jsii-pacmak/1.30.0 (build adae23f)", date="2021-06-30T10:01:43.302Z") @Stability(value=Experimental) public enum EncryptionOption extends Enum<EncryptionOption>
https://docs.aws.amazon.com/athena/latest/APIReference/API_EncryptionConfiguration.html#athena-Type-EncryptionConfiguration-EncryptionOption| 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.
|
S3_MANAGED
(experimental) Server side encryption (SSE) with an Amazon S3-managed key.
|
| Modifier and Type | Method and Description |
|---|---|
static EncryptionOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final EncryptionOption S3_MANAGED
https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingServerSideEncryption.html@Stability(value=Experimental) public static final EncryptionOption KMS
https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingKMSEncryption.html@Stability(value=Experimental) public static final EncryptionOption CLIENT_SIDE_KMS
https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingClientSideEncryption.htmlpublic static EncryptionOption[] values()
for (EncryptionOption c : EncryptionOption.values()) System.out.println(c);
public static EncryptionOption 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.