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

Class: Aws::CloudDirectory::Types::ListIncomingTypedLinksRequest

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

Overview

Note:

When passing ListIncomingTypedLinksRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  directory_arn: "Arn", # required
  object_reference: { # required
    selector: "SelectorObjectReference",
  },
  filter_attribute_ranges: [
    {
      attribute_name: "AttributeName",
      range: { # required
        start_mode: "FIRST", # required, accepts FIRST, LAST, LAST_BEFORE_MISSING_VALUES, INCLUSIVE, EXCLUSIVE
        start_value: {
          string_value: "StringAttributeValue",
          binary_value: "data",
          boolean_value: false,
          number_value: "NumberAttributeValue",
          datetime_value: Time.now,
        },
        end_mode: "FIRST", # required, accepts FIRST, LAST, LAST_BEFORE_MISSING_VALUES, INCLUSIVE, EXCLUSIVE
        end_value: {
          string_value: "StringAttributeValue",
          binary_value: "data",
          boolean_value: false,
          number_value: "NumberAttributeValue",
          datetime_value: Time.now,
        },
      },
    },
  ],
  filter_typed_link: {
    schema_arn: "Arn", # required
    typed_link_name: "TypedLinkName", # required
  },
  next_token: "NextToken",
  max_results: 1,
  consistency_level: "SERIALIZABLE", # accepts SERIALIZABLE, EVENTUAL
}

Instance Attribute Summary collapse

Instance Attribute Details

#consistency_levelString

The consistency level to execute the request at.

Possible values:

  • SERIALIZABLE
  • EVENTUAL

Returns:

  • (String)

    The consistency level to execute the request at.

#directory_arnString

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

Returns:

  • (String)

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

#filter_attribute_rangesArray<Types::TypedLinkAttributeRange>

Provides range filters for multiple attributes. When providing ranges to typed link selection, any inexact ranges must be specified at the end. Any attributes that do not have a range specified are presumed to match the entire range.

Returns:

Filters are interpreted in the order of the attributes on the typed link facet, not the order in which they are supplied to any API calls.

Returns:

  • (Types::TypedLinkSchemaAndFacetName)

    Filters are interpreted in the order of the attributes on the typed link facet, not the order in which they are supplied to any API calls.

#max_resultsInteger

The maximum number of results to retrieve.

Returns:

  • (Integer)

    The maximum number of results to retrieve.

#next_tokenString

The pagination token.

Returns:

  • (String)

    The pagination token.

#object_referenceTypes::ObjectReference

Reference that identifies the object whose attributes will be listed.

Returns: