Class: Aws::DirectoryServiceData::Types::SearchUsersRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryServiceData::Types::SearchUsersRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directoryservicedata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:next_token, :search_string]
Instance Attribute Summary collapse
-
#directory_id ⇒ String
The identifier (ID) of the directory that’s associated with the user.
-
#max_results ⇒ Integer
The maximum number of results to be returned per request.
-
#next_token ⇒ String
An encoded paging token for paginated calls that can be passed back to retrieve the next page.
-
#realm ⇒ String
The domain name that’s associated with the user.
-
#search_attributes ⇒ Array<String>
One or more data attributes that are used to search for a user.
-
#search_string ⇒ String
The attribute value that you want to search for.
Instance Attribute Details
#directory_id ⇒ String
The identifier (ID) of the directory that’s associated with the user.
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 |
# File 'lib/aws-sdk-directoryservicedata/types.rb', line 1402 class SearchUsersRequest < Struct.new( :directory_id, :max_results, :next_token, :realm, :search_attributes, :search_string) SENSITIVE = [:next_token, :search_string] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to be returned per request.
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 |
# File 'lib/aws-sdk-directoryservicedata/types.rb', line 1402 class SearchUsersRequest < Struct.new( :directory_id, :max_results, :next_token, :realm, :search_attributes, :search_string) SENSITIVE = [:next_token, :search_string] include Aws::Structure end |
#next_token ⇒ String
An encoded paging token for paginated calls that can be passed back to retrieve the next page.
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 |
# File 'lib/aws-sdk-directoryservicedata/types.rb', line 1402 class SearchUsersRequest < Struct.new( :directory_id, :max_results, :next_token, :realm, :search_attributes, :search_string) SENSITIVE = [:next_token, :search_string] include Aws::Structure end |
#realm ⇒ String
The domain name that’s associated with the user.
<note markdown=“1”> This parameter is optional, so you can return users outside of your Managed Microsoft AD domain. When no value is defined, only your Managed Microsoft AD users are returned.
This value is case insensitive.
</note>
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 |
# File 'lib/aws-sdk-directoryservicedata/types.rb', line 1402 class SearchUsersRequest < Struct.new( :directory_id, :max_results, :next_token, :realm, :search_attributes, :search_string) SENSITIVE = [:next_token, :search_string] include Aws::Structure end |
#search_attributes ⇒ Array<String>
One or more data attributes that are used to search for a user. For a list of supported attributes, see [Directory Service Data Attributes].
[1]: docs.aws.amazon.com/directoryservice/latest/admin-guide/ad_data_attributes.html
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 |
# File 'lib/aws-sdk-directoryservicedata/types.rb', line 1402 class SearchUsersRequest < Struct.new( :directory_id, :max_results, :next_token, :realm, :search_attributes, :search_string) SENSITIVE = [:next_token, :search_string] include Aws::Structure end |
#search_string ⇒ String
The attribute value that you want to search for.
<note markdown=“1”> Wildcard ‘(*)` searches aren’t supported. For a list of supported attributes, see [Directory Service Data Attributes].
</note>
[1]: docs.aws.amazon.com/directoryservice/latest/admin-guide/ad_data_attributes.html
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 |
# File 'lib/aws-sdk-directoryservicedata/types.rb', line 1402 class SearchUsersRequest < Struct.new( :directory_id, :max_results, :next_token, :realm, :search_attributes, :search_string) SENSITIVE = [:next_token, :search_string] include Aws::Structure end |