Class StreamSpecification
- java.lang.Object
-
- software.amazon.awssdk.services.dynamodb.model.StreamSpecification
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<StreamSpecification.Builder,StreamSpecification>
@Generated("software.amazon.awssdk:codegen") public final class StreamSpecification extends Object implements SdkPojo, Serializable, ToCopyableBuilder<StreamSpecification.Builder,StreamSpecification>
Represents the DynamoDB Streams configuration for a table in DynamoDB.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceStreamSpecification.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StreamSpecification.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()Map<String,SdkField<?>>sdkFieldNameToField()List<SdkField<?>>sdkFields()static Class<? extends StreamSpecification.Builder>serializableBuilderClass()BooleanstreamEnabled()Indicates whether DynamoDB Streams is enabled (true) or disabled (false) on the table.StreamViewTypestreamViewType()When an item in the table is modified,StreamViewTypedetermines what information is written to the stream for this table.StringstreamViewTypeAsString()When an item in the table is modified,StreamViewTypedetermines what information is written to the stream for this table.StreamSpecification.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
streamEnabled
public final Boolean streamEnabled()
Indicates whether DynamoDB Streams is enabled (true) or disabled (false) on the table.
- Returns:
- Indicates whether DynamoDB Streams is enabled (true) or disabled (false) on the table.
-
streamViewType
public final StreamViewType streamViewType()
When an item in the table is modified,
StreamViewTypedetermines what information is written to the stream for this table. Valid values forStreamViewTypeare:-
KEYS_ONLY- Only the key attributes of the modified item are written to the stream. -
NEW_IMAGE- The entire item, as it appears after it was modified, is written to the stream. -
OLD_IMAGE- The entire item, as it appeared before it was modified, is written to the stream. -
NEW_AND_OLD_IMAGES- Both the new and the old item images of the item are written to the stream.
If the service returns an enum value that is not available in the current SDK version,
streamViewTypewill returnStreamViewType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromstreamViewTypeAsString().- Returns:
- When an item in the table is modified,
StreamViewTypedetermines what information is written to the stream for this table. Valid values forStreamViewTypeare:-
KEYS_ONLY- Only the key attributes of the modified item are written to the stream. -
NEW_IMAGE- The entire item, as it appears after it was modified, is written to the stream. -
OLD_IMAGE- The entire item, as it appeared before it was modified, is written to the stream. -
NEW_AND_OLD_IMAGES- Both the new and the old item images of the item are written to the stream.
-
- See Also:
StreamViewType
-
-
streamViewTypeAsString
public final String streamViewTypeAsString()
When an item in the table is modified,
StreamViewTypedetermines what information is written to the stream for this table. Valid values forStreamViewTypeare:-
KEYS_ONLY- Only the key attributes of the modified item are written to the stream. -
NEW_IMAGE- The entire item, as it appears after it was modified, is written to the stream. -
OLD_IMAGE- The entire item, as it appeared before it was modified, is written to the stream. -
NEW_AND_OLD_IMAGES- Both the new and the old item images of the item are written to the stream.
If the service returns an enum value that is not available in the current SDK version,
streamViewTypewill returnStreamViewType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromstreamViewTypeAsString().- Returns:
- When an item in the table is modified,
StreamViewTypedetermines what information is written to the stream for this table. Valid values forStreamViewTypeare:-
KEYS_ONLY- Only the key attributes of the modified item are written to the stream. -
NEW_IMAGE- The entire item, as it appears after it was modified, is written to the stream. -
OLD_IMAGE- The entire item, as it appeared before it was modified, is written to the stream. -
NEW_AND_OLD_IMAGES- Both the new and the old item images of the item are written to the stream.
-
- See Also:
StreamViewType
-
-
toBuilder
public StreamSpecification.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<StreamSpecification.Builder,StreamSpecification>
-
builder
public static StreamSpecification.Builder builder()
-
serializableBuilderClass
public static Class<? extends StreamSpecification.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
sdkFieldNameToField
public final Map<String,SdkField<?>> sdkFieldNameToField()
- Specified by:
sdkFieldNameToFieldin interfaceSdkPojo
-
-