@Generated(value="jsii-pacmak/1.29.0 (build 41df200)", date="2021-06-02T09:55:16.919Z") @Stability(value=Experimental) public enum StreamViewType extends Enum<StreamViewType>
https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_StreamSpecification.html| Enum Constant and Description |
|---|
KEYS_ONLY
(experimental) Only the key attributes of the modified item are written to the stream.
|
NEW_AND_OLD_IMAGES
(experimental) Both the new and the old item images of the item are written to the stream.
|
NEW_IMAGE
(experimental) The entire item, as it appears after it was modified, is written to the stream.
|
OLD_IMAGE
(experimental) The entire item, as it appeared before it was modified, is written to the stream.
|
| Modifier and Type | Method and Description |
|---|---|
static StreamViewType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamViewType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final StreamViewType NEW_IMAGE
@Stability(value=Experimental) public static final StreamViewType OLD_IMAGE
@Stability(value=Experimental) public static final StreamViewType NEW_AND_OLD_IMAGES
@Stability(value=Experimental) public static final StreamViewType KEYS_ONLY
public static StreamViewType[] values()
for (StreamViewType c : StreamViewType.values()) System.out.println(c);
public static StreamViewType 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.