class Aws::DynamoDB::Table

def query(options = {})

Returns:
  • (Types::QueryOutput) -

Options Hash: (**options)
  • :expression_attribute_values (Hash) --
  • :expression_attribute_names (Hash) --
  • :key_condition_expression (String) --
  • :filter_expression (String) --
  • :projection_expression (String) --
  • :return_consumed_capacity (String) --
  • :exclusive_start_key (Hash) --
  • :scan_index_forward (Boolean) --
  • :conditional_operator (String) --
  • :query_filter (Hash) --
  • :key_conditions (Hash) --
  • :consistent_read (Boolean) --
  • :limit (Integer) --
  • :attributes_to_get (Array) --
  • :select (String) --
  • :index_name (String) --

Parameters:
  • options (Hash) -- ({})

Other tags:
    Example: Request syntax with placeholder values -
def query(options = {})
  options = options.merge(table_name: @name)
  resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
    @client.query(options)
  end
  resp.data
end