Module Values.DescribeTrustsRequestSource

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.

Sourcetype nonrec t = {
  1. directoryId : DirectoryId.t option;
    (*

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

    *)
  2. trustIds : TrustIds.t option;
    (*

    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.

    *)
  3. nextToken : NextToken.t option;
    (*

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

    *)
  4. limit : Limit.t option;
    (*

    The maximum number of objects to return.

    *)
}
Sourceval make : ?directoryId:??? -> ?trustIds:??? -> ?nextToken:??? -> ?limit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Limit.t | `List of [> `String of TrustId.t ] list | `String of DirectoryId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t