You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MQ::Types::LdapServerMetadataInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing LdapServerMetadataInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  hosts: ["__string"],
  role_base: "__string",
  role_name: "__string",
  role_search_matching: "__string",
  role_search_subtree: false,
  service_account_password: "__string",
  service_account_username: "__string",
  user_base: "__string",
  user_role_name: "__string",
  user_search_matching: "__string",
  user_search_subtree: false,
}

The metadata of the LDAP server used to authenticate and authorize connections to the broker. Currently not supported for RabbitMQ engine type.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#hostsArray<String>

Fully qualified domain name of the LDAP server. Optional failover server.

Returns:

  • (Array<String>)

    Fully qualified domain name of the LDAP server.

#role_baseString

Fully qualified name of the directory to search for a user’s groups.

Returns:

  • (String)

    Fully qualified name of the directory to search for a user’s groups.

#role_nameString

Specifies the LDAP attribute that identifies the group name attribute in the object returned from the group membership query.

Returns:

  • (String)

    Specifies the LDAP attribute that identifies the group name attribute in the object returned from the group membership query.

#role_search_matchingString

The search criteria for groups.

Returns:

  • (String)

    The search criteria for groups.

#role_search_subtreeBoolean

The directory search scope for the role. If set to true, scope is to search the entire sub-tree.

Returns:

  • (Boolean)

    The directory search scope for the role.

#service_account_passwordString

Service account password.

Returns:

  • (String)

    Service account password.

#service_account_usernameString

Service account username.

Returns:

  • (String)

    Service account username.

#user_baseString

Fully qualified name of the directory where you want to search for users.

Returns:

  • (String)

    Fully qualified name of the directory where you want to search for users.

#user_role_nameString

Specifies the name of the LDAP attribute for the user group membership.

Returns:

  • (String)

    Specifies the name of the LDAP attribute for the user group membership.

#user_search_matchingString

The search criteria for users.

Returns:

  • (String)

    The search criteria for users.

#user_search_subtreeBoolean

The directory search scope for the user. If set to true, scope is to search the entire sub-tree.

Returns:

  • (Boolean)

    The directory search scope for the user.