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

Class: Aws::IdentityStore::Types::Filter

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

Overview

Note:

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

{
  attribute_path: "AttributePath", # required
  attribute_value: "SensitiveStringType", # required
}

A query filter used by ListUsers and ListGroup. This filter object provides the attribute name and attribute value to search users or groups.

Instance Attribute Summary collapse

Instance Attribute Details

#attribute_pathString

The attribute path used to specify which attribute name to search. Length limit is 255 characters. For example, UserName is a valid attribute path for the ListUsers API, and DisplayName is a valid attribute path for the ListGroups API.

Returns:

  • (String)

    The attribute path used to specify which attribute name to search.

#attribute_valueString

Represents the data for an attribute. Each attribute value is described as a name-value pair.

Returns:

  • (String)

    Represents the data for an attribute.