@Generated(value="jsii-pacmak/1.30.0 (build adae23f)", date="2021-06-30T10:01:21.430Z") @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 © 2021. All rights reserved.