applied_schema_arns
Creates, updates, deletes, gets or lists an applied_schema_arns resource.
Overview
| Name | applied_schema_arns |
| Type | Resource |
| Id | aws.clouddirectory.applied_schema_arns |
Fields
The following fields are returned by SELECT queries:
- list_applied_schema_arns
| Name | Datatype | Description |
|---|---|---|
schema_arn | string | The ARNs of schemas that are applied to the directory. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_applied_schema_arns | select | region | Lists schema major versions applied to a directory. If SchemaArn is provided, lists the minor version. |
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_applied_schema_arns
Lists schema major versions applied to a directory. If SchemaArn is provided, lists the minor version.
SELECT
schema_arn
FROM aws.clouddirectory.applied_schema_arns
WHERE region = '{{ region }}' -- required
;