Class: Aws::DynamoDB::Types::ExecuteTransactionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ExecuteTransactionInput
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_request_token ⇒ String
Set this value to get remaining results, if
NextToken
was returned in the statement response. -
#return_consumed_capacity ⇒ String
Determines the level of detail about either provisioned or on-demand throughput consumption that is returned in the response.
-
#transact_statements ⇒ Array<Types::ParameterizedStatement>
The list of PartiQL statements representing the transaction to run.
Instance Attribute Details
#client_request_token ⇒ String
Set this value to get remaining results, if NextToken
was returned
in the statement response.
A suitable default value is auto-generated. You should normally not need to pass this option.
3231 3232 3233 3234 3235 3236 3237 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 3231 class ExecuteTransactionInput < Struct.new( :transact_statements, :client_request_token, :return_consumed_capacity) SENSITIVE = [] include Aws::Structure end |
#return_consumed_capacity ⇒ String
Determines the level of detail about either provisioned or on-demand throughput consumption that is returned in the response. For more information, see TransactGetItems and TransactWriteItems.
3231 3232 3233 3234 3235 3236 3237 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 3231 class ExecuteTransactionInput < Struct.new( :transact_statements, :client_request_token, :return_consumed_capacity) SENSITIVE = [] include Aws::Structure end |
#transact_statements ⇒ Array<Types::ParameterizedStatement>
The list of PartiQL statements representing the transaction to run.
3231 3232 3233 3234 3235 3236 3237 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 3231 class ExecuteTransactionInput < Struct.new( :transact_statements, :client_request_token, :return_consumed_capacity) SENSITIVE = [] include Aws::Structure end |