Class: Aws::CloudDirectory::Types::BatchRemoveFacetFromObject
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::BatchRemoveFacetFromObject
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
Note:
When making an API call, you may pass BatchRemoveFacetFromObject data as a hash:
{
schema_facet: { # required
schema_arn: "Arn",
facet_name: "FacetName",
},
object_reference: { # required
selector: "SelectorObjectReference",
},
}
A batch operation to remove a facet from an object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#object_reference ⇒ Types::ObjectReference
A reference to the object whose facet will be removed.
-
#schema_facet ⇒ Types::SchemaFacet
The facet to remove from the object.
Instance Attribute Details
#object_reference ⇒ Types::ObjectReference
A reference to the object whose facet will be removed.
2799 2800 2801 2802 2803 2804 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 2799 class BatchRemoveFacetFromObject < Struct.new( :schema_facet, :object_reference) SENSITIVE = [] include Aws::Structure end |
#schema_facet ⇒ Types::SchemaFacet
The facet to remove from the object.
2799 2800 2801 2802 2803 2804 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 2799 class BatchRemoveFacetFromObject < Struct.new( :schema_facet, :object_reference) SENSITIVE = [] include Aws::Structure end |