paws.security.identity (version 0.1.0)

clouddirectory_get_link_attributes: Retrieves attributes that are associated with a typed link

Description

Retrieves attributes that are associated with a typed link.

Usage

clouddirectory_get_link_attributes(DirectoryArn, TypedLinkSpecifier,
  AttributeNames, ConsistencyLevel)

Arguments

DirectoryArn

[required] The Amazon Resource Name (ARN) that is associated with the Directory where the typed link resides. For more information, see arns or Typed Links.

TypedLinkSpecifier

[required] Allows a typed link specifier to be accepted as input.

AttributeNames

[required] A list of attribute names whose values will be retrieved.

ConsistencyLevel

The consistency level at which to retrieve the attributes on a typed link.

Request syntax

svc$get_link_attributes(
  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"
          )
        )
      )
    )
  ),
  AttributeNames = list(
    "string"
  ),
  ConsistencyLevel = "SERIALIZABLE"|"EVENTUAL"
)