Skip to content

Get Object Attributes

clouddirectory_get_object_attributes R Documentation

Retrieves attributes within a facet that are associated with an object

Description

Retrieves attributes within a facet that are associated with an object.

Usage

clouddirectory_get_object_attributes(DirectoryArn, ObjectReference,
  ConsistencyLevel, SchemaFacet, AttributeNames)

Arguments

DirectoryArn

[required] The Amazon Resource Name (ARN) that is associated with the Directory where the object resides.

ObjectReference

[required] Reference that identifies the object whose attributes will be retrieved.

ConsistencyLevel

The consistency level at which to retrieve the attributes on an object.

SchemaFacet

[required] Identifier for the facet whose attributes will be retrieved. See SchemaFacet for details.

AttributeNames

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

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_object_attributes(
  DirectoryArn = "string",
  ObjectReference = list(
    Selector = "string"
  ),
  ConsistencyLevel = "SERIALIZABLE"|"EVENTUAL",
  SchemaFacet = list(
    SchemaArn = "string",
    FacetName = "string"
  ),
  AttributeNames = list(
    "string"
  )
)