Skip to main content

outgoing_typed_links

Creates, updates, deletes, gets or lists an outgoing_typed_links resource.

Overview

Nameoutgoing_typed_links
TypeResource
Idaws.clouddirectory.outgoing_typed_links

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
identity_attribute_valuesarrayIdentifies the attribute value to update.
source_object_referenceobjectThe reference that identifies an object.
target_object_referenceobjectThe reference that identifies an object.
typed_link_facetobjectIdentifies the schema Amazon Resource Name (ARN) and facet name for the typed link.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_outgoing_typed_linksselectx-amz-data-partition, regionReturns a paginated list of all the outgoing TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
x-amz-data-partitionstringThe Amazon Resource Name (ARN) of the directory where you want to list the typed links.

SELECT examples

Returns a paginated list of all the outgoing TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.

SELECT
identity_attribute_values,
source_object_reference,
target_object_reference,
typed_link_facet
FROM aws.clouddirectory.outgoing_typed_links
WHERE `x-amz-data-partition` = '{{ x-amz-data-partition }}' -- required
AND region = '{{ region }}' -- required
;