Get Link Attributes
clouddirectory_get_link_attributes | R Documentation |
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.
Value¶
A list with the following syntax:
list(
Attributes = list(
list(
Key = list(
SchemaArn = "string",
FacetName = "string",
Name = "string"
),
Value = list(
StringValue = "string",
BinaryValue = raw,
BooleanValue = TRUE|FALSE,
NumberValue = "string",
DatetimeValue = as.POSIXct(
"2015-01-01"
)
)
)
)
)
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"
)