Package io.aws.lambda.events.kinesis
Enum KinesisEvent.Record.EncryptionType
- java.lang.Object
-
- java.lang.Enum<KinesisEvent.Record.EncryptionType>
-
- io.aws.lambda.events.kinesis.KinesisEvent.Record.EncryptionType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<KinesisEvent.Record.EncryptionType>
- Enclosing class:
- KinesisEvent.Record
public static enum KinesisEvent.Record.EncryptionType extends java.lang.Enum<KinesisEvent.Record.EncryptionType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KinesisEvent.Record.EncryptionTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static KinesisEvent.Record.EncryptionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final KinesisEvent.Record.EncryptionType NONE
-
KMS
public static final KinesisEvent.Record.EncryptionType KMS
-
-
Method Detail
-
values
public static KinesisEvent.Record.EncryptionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (KinesisEvent.Record.EncryptionType c : KinesisEvent.Record.EncryptionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KinesisEvent.Record.EncryptionType valueOf(java.lang.String name)
Returns 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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-