You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CloudDirectory::Types::GetObjectAttributesRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing GetObjectAttributesRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  directory_arn: "Arn", # required
  object_reference: { # required
    selector: "SelectorObjectReference",
  },
  consistency_level: "SERIALIZABLE", # accepts SERIALIZABLE, EVENTUAL
  schema_facet: { # required
    schema_arn: "Arn",
    facet_name: "FacetName",
  },
  attribute_names: ["AttributeName"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#attribute_namesArray<String>

List of attribute names whose values will be retrieved.

Returns:

  • (Array<String>)

    List of attribute names whose values will be retrieved.

#consistency_levelString

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

Possible values:

  • SERIALIZABLE
  • EVENTUAL

Returns:

  • (String)

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

#directory_arnString

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

Returns:

  • (String)

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

#object_referenceTypes::ObjectReference

Reference that identifies the object whose attributes will be retrieved.

Returns:

#schema_facetTypes::SchemaFacet

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

Returns: