public static enum ServerSideEncryption.Type extends Enum<ServerSideEncryption.Type>
| Modifier and Type | Method and Description |
|---|---|
boolean |
requiresTls()
Returns true if the server-side encryption requires a TLS connection.
|
boolean |
requiresV4()
Returns true if the server-side encryption requires signature V4.
|
static ServerSideEncryption.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServerSideEncryption.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServerSideEncryption.Type SSE_C
public static final ServerSideEncryption.Type SSE_S3
public static final ServerSideEncryption.Type SSE_KMS
public static ServerSideEncryption.Type[] values()
for (ServerSideEncryption.Type c : ServerSideEncryption.Type.values()) System.out.println(c);
public static ServerSideEncryption.Type 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 boolean requiresTls()
public boolean requiresV4()