You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::CloudDirectory::Types::AddFacetToObjectRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::AddFacetToObjectRequest
- Defined in:
- (unknown)
Overview
Note:
When passing AddFacetToObjectRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
directory_arn: "Arn", # required
schema_facet: { # required
schema_arn: "Arn",
facet_name: "FacetName",
},
object_attribute_list: [
{
key: { # required
schema_arn: "Arn", # required
facet_name: "FacetName", # required
name: "AttributeName", # required
},
value: { # required
string_value: "StringAttributeValue",
binary_value: "data",
boolean_value: false,
number_value: "NumberAttributeValue",
datetime_value: Time.now,
},
},
],
object_reference: { # required
selector: "SelectorObjectReference",
},
}
Instance Attribute Summary collapse
-
#directory_arn ⇒ String
The Amazon Resource Name (ARN) that is associated with the Directory where the object resides.
-
#object_attribute_list ⇒ Array<Types::AttributeKeyAndValue>
Attributes on the facet that you are adding to the object.
-
#object_reference ⇒ Types::ObjectReference
A reference to the object you are adding the specified facet to.
-
#schema_facet ⇒ Types::SchemaFacet
Identifiers for the facet that you are adding to the object.
Instance Attribute Details
#directory_arn ⇒ String
#object_attribute_list ⇒ Array<Types::AttributeKeyAndValue>
Attributes on the facet that you are adding to the object.
#object_reference ⇒ Types::ObjectReference
A reference to the object you are adding the specified facet to.
#schema_facet ⇒ Types::SchemaFacet
Identifiers for the facet that you are adding to the object. See SchemaFacet for details.