Skip to main content

schema_extensions

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

Overview

Nameschema_extensions
TypeResource
Idaws.ds.schema_extensions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
descriptionstringA description of the schema extension. (pattern: <code>^([a-zA-Z0-9_])[\a-zA-Z0-9_@#%+=:?./!\s-]$</code>)
directory_idstringThe identifier of the directory to which the schema extension is applied. (pattern: <code>^d-[0-9a-f]{10}$</code>)
end_date_timestring (date-time)The date and time that the schema extension was completed.
schema_extension_idstringThe identifier of the schema extension. (pattern: <code>^e-[0-9a-f]{10}$</code>)
schema_extension_statusstringThe current status of the schema extension. (Initializing, CreatingSnapshot, UpdatingSchema, Replicating, CancelInProgress, RollbackInProgress, Cancelled, Failed, Completed)
schema_extension_status_reasonstringThe reason for the SchemaExtensionStatus.
start_date_timestring (date-time)The date and time that the schema extension started being applied to the directory.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_schema_extensionsselectregionLists all schema extensions applied to a Microsoft AD 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

Lists all schema extensions applied to a Microsoft AD Directory.

SELECT
description,
directory_id,
end_date_time,
schema_extension_id,
schema_extension_status,
schema_extension_status_reason,
start_date_time
FROM aws.ds.schema_extensions
WHERE region = '{{ region }}' -- required
;