Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DescribeTrustsRequest

import type { DescribeTrustsRequest } from "https://aws-api.deno.dev/v0.3/services/directoryservice.ts?docs=full";

Describes the trust relationships for a particular Managed Microsoft AD directory. If no input parameters are provided, such as directory ID or trust ID, this request describes all the trust relationships.

interface DescribeTrustsRequest {
DirectoryId?: string | null;
Limit?: number | null;
NextToken?: string | null;
TrustIds?: string[] | null;
}

§Properties

§
DirectoryId?: string | null
[src]

The Directory ID of the Amazon Web Services directory that is a part of the requested trust relationship.

§
Limit?: number | null
[src]

The maximum number of objects to return.

§
NextToken?: string | null
[src]

The DescribeTrustsResult.NextToken value from a previous call to "DescribeTrusts". Pass null if this is the first call.

§
TrustIds?: string[] | null
[src]

A list of identifiers of the trust relationships for which to obtain the information. If this member is null, all trust relationships that belong to the current account are returned.

An empty list results in an InvalidParameterException being thrown.