Class: Aws::CloudDirectory::Types::BatchDetachObject
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::BatchDetachObject
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
Note:
When making an API call, you may pass BatchDetachObject data as a hash:
{
parent_reference: { # required
selector: "SelectorObjectReference",
},
link_name: "LinkName", # required
batch_reference_name: "BatchReferenceName",
}
Represents the output of a DetachObject operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#batch_reference_name ⇒ String
The batch reference name.
-
#link_name ⇒ String
The name of the link.
-
#parent_reference ⇒ Types::ObjectReference
Parent reference from which the object with the specified link name is detached.
Instance Attribute Details
#batch_reference_name ⇒ String
The batch reference name. See Transaction Support for more information.
1007 1008 1009 1010 1011 1012 1013 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 1007 class BatchDetachObject < Struct.new( :parent_reference, :link_name, :batch_reference_name) SENSITIVE = [] include Aws::Structure end |
#link_name ⇒ String
The name of the link.
1007 1008 1009 1010 1011 1012 1013 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 1007 class BatchDetachObject < Struct.new( :parent_reference, :link_name, :batch_reference_name) SENSITIVE = [] include Aws::Structure end |
#parent_reference ⇒ Types::ObjectReference
Parent reference from which the object with the specified link name is detached.
1007 1008 1009 1010 1011 1012 1013 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 1007 class BatchDetachObject < Struct.new( :parent_reference, :link_name, :batch_reference_name) SENSITIVE = [] include Aws::Structure end |