Class: Aws::DynamoDB::Types::TransactGetItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::TransactGetItem
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Note:
When making an API call, you may pass TransactGetItem data as a hash:
{
get: { # required
key: { # required
"AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
},
table_name: "TableName", # required
projection_expression: "ProjectionExpression",
expression_attribute_names: {
"ExpressionAttributeNameVariable" => "AttributeName",
},
},
}
Specifies an item to be retrieved as part of the transaction.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#get ⇒ Types::Get
Contains the primary key that identifies the item to get, together with the name of the table that contains the item, and optionally the specific attributes of the item to retrieve.
Instance Attribute Details
#get ⇒ Types::Get
Contains the primary key that identifies the item to get, together with the name of the table that contains the item, and optionally the specific attributes of the item to retrieve.
9320 9321 9322 9323 9324 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9320 class TransactGetItem < Struct.new( :get) SENSITIVE = [] include Aws::Structure end |