Class: Aws::DynamoDB::Types::TransactGetItem

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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.

Instance Attribute Summary collapse

Instance Attribute Details

#getTypes::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.

Returns:



6898
6899
6900
6901
# File 'lib/aws-sdk-dynamodb/types.rb', line 6898

class TransactGetItem < Struct.new(
  :get)
  include Aws::Structure
end