package dynamodb
- Alphabetic
- Public
- Protected
Type Members
- trait DynamoDbOp[In <: DynamoDbRequest, Out <: DynamoDbResponse] extends AnyRef
Abstracts the execution of any given DynamoDbRequest with its correspondent operation that returns DynamoDbResponse.
Abstracts the execution of any given DynamoDbRequest with its correspondent operation that returns DynamoDbResponse.
- In
The input request as type parameter with a lower bound for DynamoDbRequest.
- Out
The response of the execution as type parameter with a lower bound for DynamoDbResponse.
Value Members
- object DynamoDb
- object DynamoDbOp
Defines all the available dynamodb operations available from DynamoDbAsyncClient as a DynamoDbOp.
Defines all the available dynamodb operations available from DynamoDbAsyncClient as a DynamoDbOp.
- Note
All them are defined implicitly, so by importing the wrapper object it will automatically infer and extend the DynamoDbRequest to DynamoDbOp, allowing then to use the implementations of consumer DynamoDb.consumer and transformer DynamoDb.transformer.