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

Class: Aws::CloudDirectory::Types::TypedAttributeValueRange

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

Overview

Note:

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

{
  start_mode: "FIRST", # required, accepts FIRST, LAST, LAST_BEFORE_MISSING_VALUES, INCLUSIVE, EXCLUSIVE
  start_value: {
    string_value: "StringAttributeValue",
    binary_value: "data",
    boolean_value: false,
    number_value: "NumberAttributeValue",
    datetime_value: Time.now,
  },
  end_mode: "FIRST", # required, accepts FIRST, LAST, LAST_BEFORE_MISSING_VALUES, INCLUSIVE, EXCLUSIVE
  end_value: {
    string_value: "StringAttributeValue",
    binary_value: "data",
    boolean_value: false,
    number_value: "NumberAttributeValue",
    datetime_value: Time.now,
  },
}

A range of attribute values. For more information, see Range Filters.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#end_modeString

The inclusive or exclusive range end.

Possible values:

  • FIRST
  • LAST
  • LAST_BEFORE_MISSING_VALUES
  • INCLUSIVE
  • EXCLUSIVE

Returns:

  • (String)

    The inclusive or exclusive range end.

#end_valueTypes::TypedAttributeValue

The attribute value to terminate the range at.

Returns:

#start_modeString

The inclusive or exclusive range start.

Possible values:

  • FIRST
  • LAST
  • LAST_BEFORE_MISSING_VALUES
  • INCLUSIVE
  • EXCLUSIVE

Returns:

  • (String)

    The inclusive or exclusive range start.

#start_valueTypes::TypedAttributeValue

The value to start the range at.

Returns: