You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing SelectRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  select_expression: "String", # required
  next_token: "String",
  consistent_read: false,
}

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)

    Determines whether or not strong consistency should be enforced when data is read from SimpleDB.

#next_tokenString

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

Returns:

  • (String)

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

#select_expressionString

The expression used to query the domain.

Returns:

  • (String)

    The expression used to query the domain.