public enum SSEKeyType extends Enum<SSEKeyType>
| Enum Constant and Description |
|---|
SSE_BYOK
使用KMS的用户主密钥,支持用户自定义秘钥上传
|
SSE_KMS_SERVICE
使用KMS的服务主密钥
|
| Modifier and Type | Method and Description |
|---|---|
static SSEKeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SSEKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SSEKeyType SSE_KMS_SERVICE
public static final SSEKeyType SSE_BYOK
public static SSEKeyType[] values()
for (SSEKeyType c : SSEKeyType.values()) System.out.println(c);
public static SSEKeyType 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 © 2024. All Rights Reserved.