paws.security.identity (version 0.1.0)

clouddirectory_detach_typed_link: 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.

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"
          )
        )
      )
    )
  )
)