Module Values.AwsAmazonMqBrokerLdapServerMetadataDetailsSource

The metadata of the Lightweight Directory Access Protocol (LDAP) server used to authenticate and authorize connections to the broker. This is an optional failover server.

Sourcetype nonrec t = {
  1. hosts : StringList.t option;
    (*

    Specifies the location of the LDAP server, such as Amazon Web Services Directory Service for Microsoft Active Directory.

    *)
  2. roleBase : NonEmptyString.t option;
    (*

    The distinguished name of the node in the directory information tree (DIT) to search for roles or groups.

    *)
  3. roleName : NonEmptyString.t option;
    (*

    The group name attribute in a role entry whose value is the name of that role.

    *)
  4. roleSearchMatching : NonEmptyString.t option;
    (*

    The LDAP search filter used to find roles within the roleBase.

    *)
  5. roleSearchSubtree : Boolean.t option;
    (*

    The directory search scope for the role. If set to true, the scope is to search the entire subtree.

    *)
  6. serviceAccountUsername : NonEmptyString.t option;
    (*

    A username for the service account, which is an account in your LDAP server that has access to initiate a connection.

    *)
  7. userBase : NonEmptyString.t option;
    (*

    Selects a particular subtree of the directory information tree (DIT) to search for user entries.

    *)
  8. userRoleName : NonEmptyString.t option;
    (*

    The name of the LDAP attribute in the user's directory entry for the user's group membership.

    *)
  9. userSearchMatching : NonEmptyString.t option;
    (*

    The LDAP search filter used to find users within the userBase.

    *)
  10. userSearchSubtree : Boolean.t option;
    (*

    The directory search scope for the user. If set to true, the scope is to search the entire subtree.

    *)
}
Sourceval make : ?hosts:??? -> ?roleBase:??? -> ?roleName:??? -> ?roleSearchMatching:??? -> ?roleSearchSubtree:??? -> ?serviceAccountUsername:??? -> ?userBase:??? -> ?userRoleName:??? -> ?userSearchMatching:??? -> ?userSearchSubtree:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.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