DirectoryServiceData / Paginator / SearchGroups

SearchGroups#

class DirectoryServiceData.Paginator.SearchGroups#
paginator = client.get_paginator('search_groups')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from DirectoryServiceData.Client.search_groups().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    DirectoryId='string',
    Realm='string',
    SearchAttributes=[
        'string',
    ],
    SearchString='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • DirectoryId (string) –

    [REQUIRED]

    The identifier (ID) of the directory that’s associated with the group.

  • Realm (string) –

    The domain name that’s associated with the group.

    Note

    This parameter is optional, so you can return groups outside of your Managed Microsoft AD domain. When no value is defined, only your Managed Microsoft AD groups are returned.

    This value is case insensitive.

  • SearchAttributes (list) –

    [REQUIRED]

    One or more data attributes that are used to search for a group. For a list of supported attributes, see Directory Service Data Attributes.

    • (string) –

  • SearchString (string) –

    [REQUIRED]

    The attribute value that you want to search for.

    Note

    Wildcard (*) searches aren’t supported. For a list of supported attributes, see Directory Service Data Attributes.

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'DirectoryId': 'string',
    'Groups': [
        {
            'DistinguishedName': 'string',
            'GroupScope': 'DomainLocal'|'Global'|'Universal'|'BuiltinLocal',
            'GroupType': 'Distribution'|'Security',
            'OtherAttributes': {
                'string': {
                    'BOOL': True|False,
                    'N': 123,
                    'S': 'string',
                    'SS': [
                        'string',
                    ]
                }
            },
            'SAMAccountName': 'string',
            'SID': 'string'
        },
    ],
    'Realm': 'string'
}

Response Structure

  • (dict) –

    • DirectoryId (string) –

      The identifier (ID) of the directory that’s associated with the group.

    • Groups (list) –

      The group information that the request returns.

      • (dict) –

        A group object that contains identifying information and attributes for a specified group.

        • DistinguishedName (string) –

          The distinguished name of the object.

        • GroupScope (string) –

          The scope of the AD group. For details, see Active Directory security groups

        • GroupType (string) –

          The AD group type. For details, see Active Directory security group type.

        • OtherAttributes (dict) –

          An expression of one or more attributes, data types, and the values of a group.

          • (string) –

            • (dict) –

              The data type for an attribute. Each attribute value is described as a name-value pair. The name is the AD schema name, and the value is the data itself. For a list of supported attributes, see Directory Service Data Attributes.

              Note

              This is a Tagged Union structure. Only one of the following top level keys will be set: BOOL, N, S, SS. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER is as follows:

              'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
              
              • BOOL (boolean) –

                Indicates that the attribute type value is a boolean. For example:

                "BOOL": true

              • N (integer) –

                Indicates that the attribute type value is a number. For example:

                "N": "16"

              • S (string) –

                Indicates that the attribute type value is a string. For example:

                "S": "S Group"

              • SS (list) –

                Indicates that the attribute type value is a string set. For example:

                "SS": ["sample_service_class/host.sample.com:1234/sample_service_name_1", "sample_service_class/host.sample.com:1234/sample_service_name_2"]

                • (string) –

        • SAMAccountName (string) –

          The name of the group.

        • SID (string) –

          The unique security identifier (SID) of the group.

    • Realm (string) –

      The domain that’s associated with the group.