class Aws::CloudDirectory::Types::TypedAttributeValueRange

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

[1]: docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_range_filters.html

@note When making an API call, you may pass TypedAttributeValueRange

data as a 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,
      },
    }

@!attribute [rw] start_mode

The inclusive or exclusive range start.
@return [String]

@!attribute [rw] start_value

The value to start the range at.
@return [Types::TypedAttributeValue]

@!attribute [rw] end_mode

The inclusive or exclusive range end.
@return [String]

@!attribute [rw] end_value

The attribute value to terminate the range at.
@return [Types::TypedAttributeValue]

@see docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/TypedAttributeValueRange AWS API Documentation

Constants

SENSITIVE