class
Amazonite::DynamoDB::ExecuteStatementInput
- Amazonite::DynamoDB::ExecuteStatementInput
- Reference
- Object
Included Modules
- JSON::Serializable
Defined in:
dynamodb/execute_statement_input.crConstructors
- .new(pull : JSON::PullParser)
- .new(statement : String, parameters : Array(AttributeValue) | Nil = nil, consistent_read : Bool | Nil = nil, next_token : String | Nil = nil, return_consumed_capacity : ReturnConsumedCapacity | Nil = nil, limit : Int32 | Nil = nil, return_values_on_condition_check_failure : ReturnValuesOnConditionCheckFailure | Nil = nil)
- .new(*, __pull_for_json_serializable pull : JSON::PullParser)
Instance Method Summary
-
#==(other : self)
Returns
trueif this reference is the same as other. -
#consistent_read : Bool | Nil
The consistency of a read operation.
-
#consistent_read=(consistent_read : Bool | Nil)
The consistency of a read operation.
-
#hash(hasher)
See
Object#hash(hasher) -
#limit : Int32 | Nil
The maximum number of items to evaluate (not necessarily the number of matching items).
-
#limit=(limit : Int32 | Nil)
The maximum number of items to evaluate (not necessarily the number of matching items).
-
#next_token : String | Nil
Set this value to get remaining results, if
NextTokenwas returned in the statement response. -
#next_token=(next_token : String | Nil)
Set this value to get remaining results, if
NextTokenwas returned in the statement response. -
#parameters : Array(AttributeValue) | Nil
The parameters for the PartiQL statement, if any.
-
#parameters=(parameters : Array(AttributeValue) | Nil)
The parameters for the PartiQL statement, if any.
- #return_consumed_capacity : ReturnConsumedCapacity | Nil
- #return_consumed_capacity=(return_consumed_capacity : ReturnConsumedCapacity | Nil)
-
#return_values_on_condition_check_failure : ReturnValuesOnConditionCheckFailure | Nil
An optional parameter that returns the item attributes for an
ExecuteStatementoperation that failed a condition check. -
#return_values_on_condition_check_failure=(return_values_on_condition_check_failure : ReturnValuesOnConditionCheckFailure | Nil)
An optional parameter that returns the item attributes for an
ExecuteStatementoperation that failed a condition check. -
#statement : String
The PartiQL statement representing the operation to run.
-
#statement=(statement : String)
The PartiQL statement representing the operation to run.
- #validate! : Nil
Constructor Detail
Instance Method Detail
Returns true if this reference is the same as other. Invokes same?.
The consistency of a read operation. If set to true, then a strongly consistent read is used;
otherwise, an eventually consistent read is used.
The consistency of a read operation. If set to true, then a strongly consistent read is used;
otherwise, an eventually consistent read is used.
The maximum number of items to evaluate (not necessarily the number of matching items). If
DynamoDB processes the number of items up to the limit while processing the results, it stops
the operation and returns the matching values up to that point, along with a key in
LastEvaluatedKey to apply in a subsequent operation so you can pick up where you left off.
Also, if the processed dataset size exceeds 1 MB before DynamoDB reaches this limit, it stops
the operation and returns the matching values up to the limit, and a key in LastEvaluatedKey
to apply in a subsequent operation to continue the operation.
The maximum number of items to evaluate (not necessarily the number of matching items). If
DynamoDB processes the number of items up to the limit while processing the results, it stops
the operation and returns the matching values up to that point, along with a key in
LastEvaluatedKey to apply in a subsequent operation so you can pick up where you left off.
Also, if the processed dataset size exceeds 1 MB before DynamoDB reaches this limit, it stops
the operation and returns the matching values up to the limit, and a key in LastEvaluatedKey
to apply in a subsequent operation to continue the operation.
Set this value to get remaining results, if NextToken was returned in the statement response.
Set this value to get remaining results, if NextToken was returned in the statement response.
The parameters for the PartiQL statement, if any.
An optional parameter that returns the item attributes for an ExecuteStatement operation that
failed a condition check.
There is no additional cost associated with requesting a return value aside from the small network and processing overhead of receiving a larger response. No read capacity units are consumed.
An optional parameter that returns the item attributes for an ExecuteStatement operation that
failed a condition check.
There is no additional cost associated with requesting a return value aside from the small network and processing overhead of receiving a larger response. No read capacity units are consumed.