Class: Aws::CloudDirectory::Types::AttachTypedLinkRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::AttachTypedLinkRequest
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
When making an API call, you may pass AttachTypedLinkRequest data as a hash:
{
directory_arn: "Arn", # required
source_object_reference: { # required
selector: "SelectorObjectReference",
},
target_object_reference: { # required
selector: "SelectorObjectReference",
},
typed_link_facet: { # required
schema_arn: "Arn", # required
typed_link_name: "TypedLinkName", # required
},
attributes: [ # required
{
attribute_name: "AttributeName", # required
value: { # required
string_value: "StringAttributeValue",
binary_value: "data",
boolean_value: false,
number_value: "NumberAttributeValue",
datetime_value: Time.now,
},
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attributes ⇒ Array<Types::AttributeNameAndValue>
A set of attributes that are associated with the typed link.
-
#directory_arn ⇒ String
The Amazon Resource Name (ARN) of the directory where you want to attach the typed link.
-
#source_object_reference ⇒ Types::ObjectReference
Identifies the source object that the typed link will attach to.
-
#target_object_reference ⇒ Types::ObjectReference
Identifies the target object that the typed link will attach to.
-
#typed_link_facet ⇒ Types::TypedLinkSchemaAndFacetName
Identifies the typed link facet that is associated with the typed link.
Instance Attribute Details
#attributes ⇒ Array<Types::AttributeNameAndValue>
A set of attributes that are associated with the typed link.
336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 336 class AttachTypedLinkRequest < Struct.new( :directory_arn, :source_object_reference, :target_object_reference, :typed_link_facet, :attributes) SENSITIVE = [] include Aws::Structure end |
#directory_arn ⇒ String
The Amazon Resource Name (ARN) of the directory where you want to attach the typed link.
336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 336 class AttachTypedLinkRequest < Struct.new( :directory_arn, :source_object_reference, :target_object_reference, :typed_link_facet, :attributes) SENSITIVE = [] include Aws::Structure end |
#source_object_reference ⇒ Types::ObjectReference
Identifies the source object that the typed link will attach to.
336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 336 class AttachTypedLinkRequest < Struct.new( :directory_arn, :source_object_reference, :target_object_reference, :typed_link_facet, :attributes) SENSITIVE = [] include Aws::Structure end |
#target_object_reference ⇒ Types::ObjectReference
Identifies the target object that the typed link will attach to.
336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 336 class AttachTypedLinkRequest < Struct.new( :directory_arn, :source_object_reference, :target_object_reference, :typed_link_facet, :attributes) SENSITIVE = [] include Aws::Structure end |
#typed_link_facet ⇒ Types::TypedLinkSchemaAndFacetName
Identifies the typed link facet that is associated with the typed link.
336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 336 class AttachTypedLinkRequest < Struct.new( :directory_arn, :source_object_reference, :target_object_reference, :typed_link_facet, :attributes) SENSITIVE = [] include Aws::Structure end |