ldaps_settings
Creates, updates, deletes, gets or lists a ldaps_settings resource.
Overview
| Name | ldaps_settings |
| Type | Resource |
| Id | aws.ds.ldaps_settings |
Fields
The following fields are returned by SELECT queries:
- describe_ldaps_settings
| Name | Datatype | Description |
|---|---|---|
ldaps_status | string | The state of the LDAPS settings. (Enabling, Enabled, EnableFailed, Disabled) |
ldaps_status_reason | string | Describes a state change for LDAPS. |
last_updated_date_time | string (date-time) | The date and time when the LDAPS settings were last updated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_ldaps_settings | select | region | Describes the status of LDAP security for the specified directory. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_ldaps_settings
Describes the status of LDAP security for the specified directory.
SELECT
ldaps_status,
ldaps_status_reason,
last_updated_date_time
FROM aws.ds.ldaps_settings
WHERE region = '{{ region }}' -- required
;