Struct rusoto_clouddirectory::ListOutgoingTypedLinksRequest[][src]

pub struct ListOutgoingTypedLinksRequest {
    pub consistency_level: Option<String>,
    pub directory_arn: String,
    pub filter_attribute_ranges: Option<Vec<TypedLinkAttributeRange>>,
    pub filter_typed_link: Option<TypedLinkSchemaAndFacetName>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub object_reference: ObjectReference,
}

Fields

The consistency level to execute the request at.

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

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.

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

The maximum number of results to retrieve.

The pagination token.

A reference that identifies the object whose attributes will be listed.

Trait Implementations

impl Default for ListOutgoingTypedLinksRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for ListOutgoingTypedLinksRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListOutgoingTypedLinksRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListOutgoingTypedLinksRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations