Skip to content

Get Object Information

clouddirectory_get_object_information R Documentation

Retrieves metadata about an object

Description

Retrieves metadata about an object.

Usage

clouddirectory_get_object_information(DirectoryArn, ObjectReference,
  ConsistencyLevel)

Arguments

DirectoryArn

[required] The ARN of the directory being retrieved.

ObjectReference

[required] A reference to the object.

ConsistencyLevel

The consistency level at which to retrieve the object information.

Value

A list with the following syntax:

list(
  SchemaFacets = list(
    list(
      SchemaArn = "string",
      FacetName = "string"
    )
  ),
  ObjectIdentifier = "string"
)

Request syntax

svc$get_object_information(
  DirectoryArn = "string",
  ObjectReference = list(
    Selector = "string"
  ),
  ConsistencyLevel = "SERIALIZABLE"|"EVENTUAL"
)