Describe Ldaps Settings
directoryservice_describe_ldaps_settings | R Documentation |
Describes the status of LDAP security for the specified directory¶
Description¶
Describes the status of LDAP security for the specified directory.
Usage¶
directoryservice_describe_ldaps_settings(DirectoryId, Type, NextToken,
Limit)
Arguments¶
DirectoryId |
[required] The identifier of the directory. |
Type |
The type of LDAP security to enable. Currently only the value
|
NextToken |
The type of next token used for pagination. |
Limit |
Specifies the number of items that should be displayed on one page. |
Value¶
A list with the following syntax:
list(
LDAPSSettingsInfo = list(
list(
LDAPSStatus = "Enabling"|"Enabled"|"EnableFailed"|"Disabled",
LDAPSStatusReason = "string",
LastUpdatedDateTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_ldaps_settings(
DirectoryId = "string",
Type = "Client",
NextToken = "string",
Limit = 123
)