Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TypedLinkSpecifier

import type { TypedLinkSpecifier } from "https://aws-api.deno.dev/v0.3/services/clouddirectory.ts?docs=full";

Contains all the information that is used to uniquely identify a typed link. The parameters discussed in this topic are used to uniquely specify the typed link being operated on. The "AttachTypedLink" API returns a typed link specifier while the "DetachTypedLink" API accepts one as input. Similarly, the "ListIncomingTypedLinks" and "ListOutgoingTypedLinks" API operations provide typed link specifiers as output. You can also construct a typed link specifier from scratch.

interface TypedLinkSpecifier {
IdentityAttributeValues: AttributeNameAndValue[];
SourceObjectReference: ObjectReference;
TargetObjectReference: ObjectReference;
}

§Properties

§
IdentityAttributeValues: AttributeNameAndValue[]
[src]

Identifies the attribute value to update.

§
SourceObjectReference: ObjectReference
[src]

Identifies the source object that the typed link will attach to.

§
TargetObjectReference: ObjectReference
[src]

Identifies the target object that the typed link will attach to.

§

Identifies the typed link facet that is associated with the typed link.