Module Values.DescribeGroupResultSource

Returns information about a specific group.

Sourcetype nonrec t = {
  1. directoryId : DirectoryId.t option;
    (*

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

    *)
  2. distinguishedName : DistinguishedName.t option;
    (*

    The distinguished name of the object.

    *)
  3. groupScope : GroupScope.t option;
    (*

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

    *)
  4. groupType : GroupType.t option;
    (*

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

    *)
  5. otherAttributes : Attributes.t option;
    (*

    The attribute values that are returned for the attribute names that are included in the request.

    *)
  6. realm : Realm.t option;
    (*

    The domain name that's associated with the group.

    *)
  7. sAMAccountName : GroupName.t option;
    (*

    The name of the group.

    *)
  8. sID : SID.t option;
    (*

    The unique security identifier (SID) of the group.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `DirectoryUnavailableException of DirectoryUnavailableException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?directoryId:??? -> ?distinguishedName:??? -> ?groupScope:??? -> ?groupType:??? -> ?otherAttributes:??? -> ?realm:??? -> ?sAMAccountName:??? -> ?sID:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `DirectoryUnavailableException of DirectoryUnavailableException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `DirectoryUnavailableException of DirectoryUnavailableException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of LdapDisplayName.t ] * [> `Structure of (string * [> `Boolean of BooleanAttributeValue.t | `List of [> `String of StringAttributeValue.t ] list | `Long of NumberAttributeValue.t | `String of StringAttributeValue.t ]) list ]) list | `String of DirectoryId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t