Skip to main content

object_informations

Creates, updates, deletes, gets or lists an object_informations resource.

Overview

Nameobject_informations
TypeResource
Idaws.clouddirectory.object_informations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
object_identifierstringThe ObjectIdentifier of the specified object.
schema_facetsarrayThe facets attached to the specified object. Although the response does not include minor version information, the most recently applied minor version of each Facet is in effect. See GetAppliedSchemaVersion for details.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_object_informationselectx-amz-data-partition, regionx-amz-consistency-levelRetrieves metadata about an object.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
x-amz-data-partitionstringThe ARN of the directory being retrieved.
x-amz-consistency-levelstringThe consistency level at which to retrieve the object information.

SELECT examples

Retrieves metadata about an object.

SELECT
object_identifier,
schema_facets
FROM aws.clouddirectory.object_informations
WHERE `x-amz-data-partition` = '{{ x-amz-data-partition }}' -- required
AND region = '{{ region }}' -- required
AND `x-amz-consistency-level` = '{{ x-amz-consistency-level }}'
;