Skip to content

Attach Object

clouddirectory_attach_object R Documentation

Attaches an existing object to another object

Description

Attaches an existing object to another object. An object can be accessed in two ways:

  1. Using the path

  2. Using ObjectIdentifier

Usage

clouddirectory_attach_object(DirectoryArn, ParentReference,
  ChildReference, LinkName)

Arguments

DirectoryArn

[required] Amazon Resource Name (ARN) that is associated with the Directory where both objects reside. For more information, see arns.

ParentReference

[required] The parent object reference.

ChildReference

[required] The child object reference to be attached to the object.

LinkName

[required] The link name with which the child object is attached to the parent.

Value

A list with the following syntax:

list(
  AttachedObjectIdentifier = "string"
)

Request syntax

svc$attach_object(
  DirectoryArn = "string",
  ParentReference = list(
    Selector = "string"
  ),
  ChildReference = list(
    Selector = "string"
  ),
  LinkName = "string"
)