Skip to main content

ldaps_settings

Creates, updates, deletes, gets or lists a ldaps_settings resource.

Overview

Nameldaps_settings
TypeResource
Idaws.ds.ldaps_settings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
ldaps_statusstringThe state of the LDAPS settings. (Enabling, Enabled, EnableFailed, Disabled)
ldaps_status_reasonstringDescribes a state change for LDAPS.
last_updated_date_timestring (date-time)The date and time when the LDAPS settings were last updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_ldaps_settingsselectregionDescribes 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;