Detach Typed Link
| clouddirectory_detach_typed_link | R Documentation | 
Detaches a typed link from a specified source and target object¶
Description¶
Detaches a typed link from a specified source and target object. For more information, see Typed Links.
Usage¶
clouddirectory_detach_typed_link(DirectoryArn, TypedLinkSpecifier)
Arguments¶
| DirectoryArn | [required] The Amazon Resource Name (ARN) of the directory where you want to detach the typed link. | 
| TypedLinkSpecifier | [required] Used to accept a typed link specifier as input. | 
Value¶
An empty list.
Request syntax¶
svc$detach_typed_link(
  DirectoryArn = "string",
  TypedLinkSpecifier = list(
    TypedLinkFacet = list(
      SchemaArn = "string",
      TypedLinkName = "string"
    ),
    SourceObjectReference = list(
      Selector = "string"
    ),
    TargetObjectReference = list(
      Selector = "string"
    ),
    IdentityAttributeValues = list(
      list(
        AttributeName = "string",
        Value = list(
          StringValue = "string",
          BinaryValue = raw,
          BooleanValue = TRUE|FALSE,
          NumberValue = "string",
          DatetimeValue = as.POSIXct(
            "2015-01-01"
          )
        )
      )
    )
  )
)