applied_schema_versions
Creates, updates, deletes, gets or lists an applied_schema_versions resource.
Overview
| Name | applied_schema_versions |
| Type | Resource |
| Id | aws.clouddirectory.applied_schema_versions |
Fields
The following fields are returned by SELECT queries:
- get_applied_schema_version
| Name | Datatype | Description |
|---|---|---|
applied_schema_arn | string | Current applied schema ARN, including the minor version in use if one was provided. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_applied_schema_version | select | region | Returns current applied schema version ARN, including the minor version in use. |
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
- get_applied_schema_version
Returns current applied schema version ARN, including the minor version in use.
SELECT
applied_schema_arn
FROM aws.clouddirectory.applied_schema_versions
WHERE region = '{{ region }}' -- required
;