@Generated(value="jsii-pacmak/1.14.1 (build 828de8a)", date="2020-11-24T22:28:38.073Z") @Stability(value=Experimental) public enum StreamEncryption extends Enum<StreamEncryption>
| Enum Constant and Description |
|---|
KMS
(experimental) Server-side encryption with a KMS key managed by the user.
|
MANAGED
(experimental) Server-side encryption with a master key managed by Amazon Kinesis.
|
UNENCRYPTED
(experimental) Records in the stream are not encrypted.
|
| Modifier and Type | Method and Description |
|---|---|
static StreamEncryption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamEncryption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final StreamEncryption UNENCRYPTED
@Stability(value=Experimental) public static final StreamEncryption KMS
If encryptionKey is specified, this key will be used, otherwise, one will be defined.
@Stability(value=Experimental) public static final StreamEncryption MANAGED
public static StreamEncryption[] values()
for (StreamEncryption c : StreamEncryption.values()) System.out.println(c);
public static StreamEncryption 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 © 2020. All rights reserved.