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
- Struct
- Aws::CloudDirectory::Types::ListIncomingTypedLinksRequest
- Defined in:
- (unknown)
Overview
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
-
#consistency_level ⇒ String
The consistency level to execute the request at.
-
#directory_arn ⇒ String
The Amazon Resource Name (ARN) of the directory where you want to list the typed links.
-
#filter_attribute_ranges ⇒ Array<Types::TypedLinkAttributeRange>
Provides range filters for multiple attributes.
-
#filter_typed_link ⇒ 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_results ⇒ Integer
The maximum number of results to retrieve.
-
#next_token ⇒ String
The pagination token.
-
#object_reference ⇒ Types::ObjectReference
Reference that identifies the object whose attributes will be listed.
Instance Attribute Details
#consistency_level ⇒ String
The consistency level to execute the request at.
Possible values:
- SERIALIZABLE
- EVENTUAL
#directory_arn ⇒ String
The Amazon Resource Name (ARN) of the directory where you want to list the typed links.
#filter_attribute_ranges ⇒ Array<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.
#filter_typed_link ⇒ 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_results ⇒ Integer
The maximum number of results to retrieve.
#next_token ⇒ String
The pagination token.
#object_reference ⇒ Types::ObjectReference
Reference that identifies the object whose attributes will be listed.