Class: Aws::CloudDirectory::Types::BatchCreateObject
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::BatchCreateObject
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
When making an API call, you may pass BatchCreateObject data as a hash:
{
schema_facet: [ # required
{
schema_arn: "Arn",
facet_name: "FacetName",
},
],
object_attribute_list: [ # required
{
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,
},
},
],
parent_reference: {
selector: "SelectorObjectReference",
},
link_name: "LinkName",
batch_reference_name: "BatchReferenceName",
}
Represents the output of a CreateObject 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.
-
#object_attribute_list ⇒ Array<Types::AttributeKeyAndValue>
An attribute map, which contains an attribute ARN as the key and attribute value as the map value.
-
#parent_reference ⇒ Types::ObjectReference
If specified, the parent reference to which this object will be attached.
-
#schema_facet ⇒ Array<Types::SchemaFacet>
A list of
FacetArns
that will be associated with the object.
Instance Attribute Details
#batch_reference_name ⇒ String
The batch reference name. See Transaction Support for more information.
873 874 875 876 877 878 879 880 881 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 873 class BatchCreateObject < Struct.new( :schema_facet, :object_attribute_list, :parent_reference, :link_name, :batch_reference_name) SENSITIVE = [] include Aws::Structure end |
#link_name ⇒ String
The name of the link.
873 874 875 876 877 878 879 880 881 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 873 class BatchCreateObject < Struct.new( :schema_facet, :object_attribute_list, :parent_reference, :link_name, :batch_reference_name) SENSITIVE = [] include Aws::Structure end |
#object_attribute_list ⇒ Array<Types::AttributeKeyAndValue>
An attribute map, which contains an attribute ARN as the key and attribute value as the map value.
873 874 875 876 877 878 879 880 881 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 873 class BatchCreateObject < Struct.new( :schema_facet, :object_attribute_list, :parent_reference, :link_name, :batch_reference_name) SENSITIVE = [] include Aws::Structure end |
#parent_reference ⇒ Types::ObjectReference
If specified, the parent reference to which this object will be attached.
873 874 875 876 877 878 879 880 881 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 873 class BatchCreateObject < Struct.new( :schema_facet, :object_attribute_list, :parent_reference, :link_name, :batch_reference_name) SENSITIVE = [] include Aws::Structure end |
#schema_facet ⇒ Array<Types::SchemaFacet>
A list of FacetArns
that will be associated with the object. For
more information, see arns.
873 874 875 876 877 878 879 880 881 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 873 class BatchCreateObject < Struct.new( :schema_facet, :object_attribute_list, :parent_reference, :link_name, :batch_reference_name) SENSITIVE = [] include Aws::Structure end |