def select(select_expression, options = {})
if options.is_a?(String)
Fog::Logger.deprecation("get_attributes with string next_token param is deprecated, use 'AttributeName' => attributes) instead [light_black](#{caller.first})[/]")
options = {'NextToken' => options}
end
options['NextToken'] ||= nil
request(
'Action' => 'Select',
'ConsistentRead' => !!options['ConsistentRead'],
'NextToken' => options['NextToken'],
'SelectExpression' => select_expression,
:idempotent => true,
:parser => Fog::Parsers::AWS::SimpleDB::Select.new(@nil_string)
)
end