Class: Aws::DynamoDB::Types::BatchExecuteStatementOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-dynamodb/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#consumed_capacityArray<Types::ConsumedCapacity>

The capacity units consumed by the entire operation. The values of the list are ordered according to the ordering of the statements.

Returns:



730
731
732
733
734
735
# File 'lib/aws-sdk-dynamodb/types.rb', line 730

class BatchExecuteStatementOutput < Struct.new(
  :responses,
  :consumed_capacity)
  SENSITIVE = []
  include Aws::Structure
end

#responsesArray<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.

Returns:



730
731
732
733
734
735
# File 'lib/aws-sdk-dynamodb/types.rb', line 730

class BatchExecuteStatementOutput < Struct.new(
  :responses,
  :consumed_capacity)
  SENSITIVE = []
  include Aws::Structure
end