schema_extensions
Creates, updates, deletes, gets or lists a schema_extensions resource.
Overview
| Name | schema_extensions |
| Type | Resource |
| Id | aws.ds.schema_extensions |
Fields
The following fields are returned by SELECT queries:
- list_schema_extensions
| Name | Datatype | Description |
|---|---|---|
description | string | A description of the schema extension. (pattern: <code>^([a-zA-Z0-9_])[\a-zA-Z0-9_@#%+=:?./!\s-]$</code>) |
directory_id | string | The identifier of the directory to which the schema extension is applied. (pattern: <code>^d-[0-9a-f]{10}$</code>) |
end_date_time | string (date-time) | The date and time that the schema extension was completed. |
schema_extension_id | string | The identifier of the schema extension. (pattern: <code>^e-[0-9a-f]{10}$</code>) |
schema_extension_status | string | The current status of the schema extension. (Initializing, CreatingSnapshot, UpdatingSchema, Replicating, CancelInProgress, RollbackInProgress, Cancelled, Failed, Completed) |
schema_extension_status_reason | string | The reason for the SchemaExtensionStatus. |
start_date_time | string (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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_schema_extensions | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_schema_extensions
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
;