Class: Aws::CloudDirectory::Types::TypedLinkSpecifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::TypedLinkSpecifier
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
When making an API call, you may pass TypedLinkSpecifier data as a hash:
{
typed_link_facet: { # required
schema_arn: "Arn", # required
typed_link_name: "TypedLinkName", # required
},
source_object_reference: { # required
selector: "SelectorObjectReference",
},
target_object_reference: { # required
selector: "SelectorObjectReference",
},
identity_attribute_values: [ # required
{
attribute_name: "AttributeName", # required
value: { # required
string_value: "StringAttributeValue",
binary_value: "data",
boolean_value: false,
number_value: "NumberAttributeValue",
datetime_value: Time.now,
},
},
],
}
Contains all the information that is used to uniquely identify a typed link. The parameters discussed in this topic are used to uniquely specify the typed link being operated on. The AttachTypedLink API returns a typed link specifier while the DetachTypedLink API accepts one as input. Similarly, the ListIncomingTypedLinks and ListOutgoingTypedLinks API operations provide typed link specifiers as output. You can also construct a typed link specifier from scratch.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identity_attribute_values ⇒ Array<Types::AttributeNameAndValue>
Identifies the attribute value to update.
-
#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
#identity_attribute_values ⇒ Array<Types::AttributeNameAndValue>
Identifies the attribute value to update.
8007 8008 8009 8010 8011 8012 8013 8014 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 8007 class TypedLinkSpecifier < Struct.new( :typed_link_facet, :source_object_reference, :target_object_reference, :identity_attribute_values) SENSITIVE = [] include Aws::Structure end |
#source_object_reference ⇒ Types::ObjectReference
Identifies the source object that the typed link will attach to.
8007 8008 8009 8010 8011 8012 8013 8014 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 8007 class TypedLinkSpecifier < Struct.new( :typed_link_facet, :source_object_reference, :target_object_reference, :identity_attribute_values) SENSITIVE = [] include Aws::Structure end |
#target_object_reference ⇒ Types::ObjectReference
Identifies the target object that the typed link will attach to.
8007 8008 8009 8010 8011 8012 8013 8014 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 8007 class TypedLinkSpecifier < Struct.new( :typed_link_facet, :source_object_reference, :target_object_reference, :identity_attribute_values) SENSITIVE = [] include Aws::Structure end |
#typed_link_facet ⇒ Types::TypedLinkSchemaAndFacetName
Identifies the typed link facet that is associated with the typed link.
8007 8008 8009 8010 8011 8012 8013 8014 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 8007 class TypedLinkSpecifier < Struct.new( :typed_link_facet, :source_object_reference, :target_object_reference, :identity_attribute_values) SENSITIVE = [] include Aws::Structure end |