Skip to main content

update_directories

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

Overview

Nameupdate_directories
TypeResource
Idaws.ds.update_directories

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
initiated_bystringThis specifies if the update was initiated by the customer or by the service team.
last_updated_date_timestring (date-time)The last updated date and time of a particular directory setting.
new_valueobjectThe new value of the target setting.
previous_valueobjectThe old value of the target setting.
regionstringThe name of the Region.
start_timestring (date-time)The start time of the UpdateDirectorySetup for the particular type.
statusstringThe status of the update performed on the directory. (Updated, Updating, UpdateFailed)
status_reasonstringThe reason for the current status of the update type activity.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_update_directoryselectregionDescribes the updates of a directory for a particular update type.

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 updates of a directory for a particular update type.

SELECT
initiated_by,
last_updated_date_time,
new_value,
previous_value,
region,
start_time,
status,
status_reason
FROM aws.ds.update_directories
WHERE region = '{{ region }}' -- required
;