Enum StreamEncryption
- All Implemented Interfaces:
- Serializable,- Comparable<StreamEncryption>,- java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:42.129Z")
@Stability(Stable)
public enum StreamEncryption
extends Enum<StreamEncryption>
What kind of server-side encryption to apply to this stream.
 
Example:
 Role lambdaRole = Role.Builder.create(this, "Role")
         .assumedBy(new ServicePrincipal("lambda.amazonaws.com"))
         .description("Example role...")
         .build();
 Stream stream = Stream.Builder.create(this, "MyEncryptedStream")
         .encryption(StreamEncryption.KMS)
         .build();
 // give lambda permissions to read stream
 stream.grantRead(lambdaRole);
 - 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionServer-side encryption with a KMS key managed by the user.Server-side encryption with a master key managed by Amazon Kinesis.Records in the stream are not encrypted.
- 
Method SummaryModifier and TypeMethodDescriptionstatic StreamEncryptionReturns 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.
- 
Enum Constant Details- 
UNENCRYPTEDRecords in the stream are not encrypted.
- 
KMSServer-side encryption with a KMS key managed by the user.If encryptionKeyis specified, this key will be used, otherwise, one will be defined.
- 
MANAGEDServer-side encryption with a master key managed by Amazon Kinesis.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-