Interface DynamoDbExtensionContext.Context
-
- All Known Subinterfaces:
DynamoDbExtensionContext.AfterRead
,DynamoDbExtensionContext.BeforeWrite
- All Known Implementing Classes:
DefaultDynamoDbExtensionContext
- Enclosing class:
- DynamoDbExtensionContext
@ThreadSafe public static interface DynamoDbExtensionContext.Context
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Map<String,AttributeValue>
items()
OperationContext
operationContext()
TableMetadata
tableMetadata()
default TableSchema<?>
tableSchema()
-
-
-
Method Detail
-
items
Map<String,AttributeValue> items()
- Returns:
- The
AttributeValue
map of the items that is about to be written or has just been read.
-
operationContext
OperationContext operationContext()
- Returns:
- The context under which the operation to be modified is taking place.
-
tableMetadata
TableMetadata tableMetadata()
- Returns:
- A
TableMetadata
object describing the structure of the modelled table.
-
tableSchema
default TableSchema<?> tableSchema()
- Returns:
- A
TableSchema
object describing the structure of the modelled table.
-
-