Class: Aws::SimpleDB::Types::SelectRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-simpledb/types.rb

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#consistent_readBoolean

Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If ‘true`, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.

Returns:

  • (Boolean)


523
524
525
526
527
528
529
# File 'lib/aws-sdk-simpledb/types.rb', line 523

class SelectRequest < Struct.new(
  :select_expression,
  :next_token,
  :consistent_read)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

A string informing Amazon SimpleDB where to start the next list of ‘ItemNames`.

Returns:

  • (String)


523
524
525
526
527
528
529
# File 'lib/aws-sdk-simpledb/types.rb', line 523

class SelectRequest < Struct.new(
  :select_expression,
  :next_token,
  :consistent_read)
  SENSITIVE = []
  include Aws::Structure
end

#select_expressionString

The expression used to query the domain.

Returns:

  • (String)


523
524
525
526
527
528
529
# File 'lib/aws-sdk-simpledb/types.rb', line 523

class SelectRequest < Struct.new(
  :select_expression,
  :next_token,
  :consistent_read)
  SENSITIVE = []
  include Aws::Structure
end