Class: Aws::IdentityStore::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::Filter
- Defined in:
- gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb
Overview
A query filter used by ListUsers
and ListGroups
. This filter
object provides the attribute name and attribute value to search users
or groups.
Constant Summary collapse
- SENSITIVE =
[:attribute_value]
Instance Attribute Summary collapse
-
#attribute_path ⇒ String
The attribute path that is used to specify which attribute name to search.
-
#attribute_value ⇒ String
Represents the data for an attribute.
Instance Attribute Details
#attribute_path ⇒ String
The attribute path that is 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.
713 714 715 716 717 718 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 713 class Filter < Struct.new( :attribute_path, :attribute_value) SENSITIVE = [:attribute_value] include Aws::Structure end |
#attribute_value ⇒ String
Represents the data for an attribute. Each attribute value is described as a name-value pair.
713 714 715 716 717 718 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 713 class Filter < Struct.new( :attribute_path, :attribute_value) SENSITIVE = [:attribute_value] include Aws::Structure end |