published_schema_arns
Creates, updates, deletes, gets or lists a published_schema_arns resource.
Overview
| Name | published_schema_arns |
| Type | Resource |
| Id | aws.clouddirectory.published_schema_arns |
Fields
The following fields are returned by SELECT queries:
- list_published_schema_arns
| Name | Datatype | Description |
|---|---|---|
schema_arn | string | The ARNs of published schemas. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_published_schema_arns | select | region | Lists the major version families of each published schema. If a major version ARN is provided as SchemaArn, the minor version revisions in that family are listed instead. |
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_published_schema_arns
Lists the major version families of each published schema. If a major version ARN is provided as SchemaArn, the minor version revisions in that family are listed instead.
SELECT
schema_arn
FROM aws.clouddirectory.published_schema_arns
WHERE region = '{{ region }}' -- required
;