Class: Aws::DynamoDB::Types::BatchExecuteStatementOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::BatchExecuteStatementOutput
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#consumed_capacity ⇒ Array<Types::ConsumedCapacity>
The capacity units consumed by the entire operation.
-
#responses ⇒ Array<Types::BatchStatementResponse>
The response to each PartiQL statement in the batch.
Instance Attribute Details
#consumed_capacity ⇒ Array<Types::ConsumedCapacity>
The capacity units consumed by the entire operation. The values of the list are ordered according to the ordering of the statements.
729 730 731 732 733 734 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 729 class BatchExecuteStatementOutput < Struct.new( :responses, :consumed_capacity) SENSITIVE = [] include Aws::Structure end |
#responses ⇒ Array<Types::BatchStatementResponse>
The response to each PartiQL statement in the batch. The values of the list are ordered according to the ordering of the request statements.
729 730 731 732 733 734 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 729 class BatchExecuteStatementOutput < Struct.new( :responses, :consumed_capacity) SENSITIVE = [] include Aws::Structure end |