Class: Aws::DynamoDB::Types::BatchStatementRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::BatchStatementRequest
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Note:
When making an API call, you may pass BatchStatementRequest data as a hash:
{
statement: "PartiQLStatement", # required
parameters: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
consistent_read: false,
}
A PartiQL batch statement request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#consistent_read ⇒ Boolean
The read consistency of the PartiQL batch request.
-
#parameters ⇒ Array<Types::AttributeValue>
The parameters associated with a PartiQL statement in the batch request.
-
#statement ⇒ String
A valid PartiQL statement.
Instance Attribute Details
#consistent_read ⇒ Boolean
The read consistency of the PartiQL batch request.
1067 1068 1069 1070 1071 1072 1073 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 1067 class BatchStatementRequest < Struct.new( :statement, :parameters, :consistent_read) SENSITIVE = [] include Aws::Structure end |
#parameters ⇒ Array<Types::AttributeValue>
The parameters associated with a PartiQL statement in the batch request.
1067 1068 1069 1070 1071 1072 1073 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 1067 class BatchStatementRequest < Struct.new( :statement, :parameters, :consistent_read) SENSITIVE = [] include Aws::Structure end |
#statement ⇒ String
A valid PartiQL statement.
1067 1068 1069 1070 1071 1072 1073 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 1067 class BatchStatementRequest < Struct.new( :statement, :parameters, :consistent_read) SENSITIVE = [] include Aws::Structure end |