typed_link_facet_names
Creates, updates, deletes, gets or lists a typed_link_facet_names resource.
Overview
| Name | typed_link_facet_names |
| Type | Resource |
| Id | aws.clouddirectory.typed_link_facet_names |
Fields
The following fields are returned by SELECT queries:
- list_typed_link_facet_names
| Name | Datatype | Description |
|---|---|---|
facet_name | string | The names of typed link facets that exist within the schema. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_typed_link_facet_names | select | x-amz-data-partition, region | Returns a paginated list of TypedLink facet names for a particular schema. For more information, see Typed Links. |
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) |
x-amz-data-partition | string | The Amazon Resource Name (ARN) that is associated with the schema. For more information, see arns. |
SELECT examples
- list_typed_link_facet_names
Returns a paginated list of TypedLink facet names for a particular schema. For more information, see Typed Links.
SELECT
facet_name
FROM aws.clouddirectory.typed_link_facet_names
WHERE `x-amz-data-partition` = '{{ x-amz-data-partition }}' -- required
AND region = '{{ region }}' -- required
;