Skip to content

Execute transaction

async_boto.validation.dynamodb.execute_transaction

ExecuteTransactionRequest

Bases: BaseModel

Allows you to perform transactional reads or writes on data stored in DynamoDB, using PartiQL.

ATTRIBUTE DESCRIPTION
TransactStatements

The list of PartiQL statements representing the transaction to run.

TYPE: List[ParameterizedStatement]

ClientRequestToken

Set this value to get remaining results, if NextToken was returned in the statement response.

TYPE: Optional[str]

ReturnConsumedCapacity

Determines the level of detail about either provisioned or on-demand throughput consumption that is returned in the response.

TYPE: Optional[Literal['INDEXES', 'TOTAL', 'NONE']]

TransactStatements instance-attribute

TransactStatements

ClientRequestToken class-attribute instance-attribute

ClientRequestToken = None

ReturnConsumedCapacity class-attribute instance-attribute

ReturnConsumedCapacity = None

ExecuteTransactionResponse

Bases: BaseModel

Response for the ExecuteTransaction operation.

ATTRIBUTE DESCRIPTION
ConsumedCapacity

The capacity units consumed by the entire operation.

TYPE: Optional[List[ConsumedCapacity]]

Responses

The response to a PartiQL transaction.

TYPE: Optional[List[ItemResponse]]

ConsumedCapacity class-attribute instance-attribute

ConsumedCapacity = None

Responses class-attribute instance-attribute

Responses = None