typed_link_facet_informations
Creates, updates, deletes, gets or lists a typed_link_facet_informations resource.
Overview
| Name | typed_link_facet_informations |
| Type | Resource |
| Id | aws.clouddirectory.typed_link_facet_informations |
Fields
The following fields are returned by SELECT queries:
- get_typed_link_facet_information
| Name | Datatype | Description |
|---|---|---|
identity_attribute_order | string | The order of identity attributes for the facet, from most significant to least significant. The ability to filter typed links considers the order that the attributes are defined on the typed link facet. When providing ranges to typed link selection, any inexact ranges must be specified at the end. Any attributes that do not have a range specified are presumed to match the entire range. Filters are interpreted in the order of the attributes on the typed link facet, not the order in which they are supplied to any API calls. For more information about identity attributes, see Typed Links. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_typed_link_facet_information | select | x-amz-data-partition, region | Returns the identity attribute order for a specific TypedLinkFacet. 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
- get_typed_link_facet_information
Returns the identity attribute order for a specific TypedLinkFacet. For more information, see Typed Links.
SELECT
identity_attribute_order
FROM aws.clouddirectory.typed_link_facet_informations
WHERE `x-amz-data-partition` = '{{ x-amz-data-partition }}' -- required
AND region = '{{ region }}' -- required
;