Skip to content

List Object Attributes

clouddirectory_list_object_attributes R Documentation

Lists all attributes that are associated with an object

Description

Lists all attributes that are associated with an object.

Usage

clouddirectory_list_object_attributes(DirectoryArn, ObjectReference,
  NextToken, MaxResults, ConsistencyLevel, FacetFilter)

Arguments

DirectoryArn

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

ObjectReference

[required] The reference that identifies the object whose attributes will be listed.

NextToken

The pagination token.

MaxResults

The maximum number of items to be retrieved in a single call. This is an approximate number.

ConsistencyLevel

Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.

FacetFilter

Used to filter the list of object attributes that are associated with a certain facet.

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"
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_object_attributes(
  DirectoryArn = "string",
  ObjectReference = list(
    Selector = "string"
  ),
  NextToken = "string",
  MaxResults = 123,
  ConsistencyLevel = "SERIALIZABLE"|"EVENTUAL",
  FacetFilter = list(
    SchemaArn = "string",
    FacetName = "string"
  )
)