class Aws::DynamoDB::Table
def scan(options = {})
-
(Types::ScanOutput)-
Options Hash:
(**options)-
:consistent_read(Boolean) -- -
:expression_attribute_values(Hash) -- -
:expression_attribute_names(Hash) -- -
:filter_expression(String) -- -
:projection_expression(String) -- -
:segment(Integer) -- -
:total_segments(Integer) -- -
:return_consumed_capacity(String) -- -
:exclusive_start_key(Hash) -- -
:conditional_operator(String) -- -
:scan_filter(Hash) -- -
:select(String) -- -
:limit(Integer) -- -
:attributes_to_get(Array) -- -
:index_name(String) --
Parameters:
-
options(Hash) -- ({})
Other tags:
- Example: Request syntax with placeholder values -
def scan(options = {}) options = options.merge(table_name: @name) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.scan(options) end resp.data end