@Generated(value="software.amazon.smithy.crt.java.EnumGenerator") public enum ServerSideEncryption extends Enum<ServerSideEncryption>
Enum Constant and Description |
---|
AES256 |
AWS_KMS |
UNKNOWN_TO_SDK_VERSION |
Modifier and Type | Method and Description |
---|---|
static ServerSideEncryption |
fromValue(String value) |
static Set<ServerSideEncryption> |
knownValues() |
void |
setValue(String value) |
String |
value() |
static ServerSideEncryption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServerSideEncryption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServerSideEncryption AES256
public static final ServerSideEncryption AWS_KMS
public static final ServerSideEncryption UNKNOWN_TO_SDK_VERSION
public static ServerSideEncryption[] values()
for (ServerSideEncryption c : ServerSideEncryption.values()) System.out.println(c);
public static ServerSideEncryption 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 nullpublic static ServerSideEncryption fromValue(String value)
public static Set<ServerSideEncryption> knownValues()
public String value()
public void setValue(String value)
Copyright © 2021. All rights reserved.