You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CloudDirectory::Types::AttachTypedLinkRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AttachTypedLinkRequest as input to an Aws::Client method, you can use a vanilla 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,
      },
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#attributesArray<Types::AttributeNameAndValue>

A set of attributes that are associated with the typed link.

Returns:

#directory_arnString

The Amazon Resource Name (ARN) of the directory where you want to attach the typed link.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the directory where you want to attach the typed link.

#source_object_referenceTypes::ObjectReference

Identifies the source object that the typed link will attach to.

Returns:

#target_object_referenceTypes::ObjectReference

Identifies the target object that the typed link will attach to.

Returns:

Identifies the typed link facet that is associated with the typed link.

Returns: