Module Values.TrustSource

Describes a trust relationship between an Managed Microsoft AD directory and an external domain.

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

    The Directory ID of the Amazon Web Services directory involved in the trust relationship.

    *)
  2. trustId : TrustId.t option;
    (*

    The unique ID of the trust relationship.

    *)
  3. remoteDomainName : RemoteDomainName.t option;
    (*

    The Fully Qualified Domain Name (FQDN) of the external domain involved in the trust relationship.

    *)
  4. trustType : TrustType.t option;
    (*

    The trust relationship type. Forest is the default.

    *)
  5. trustDirection : TrustDirection.t option;
    (*

    The trust relationship direction.

    *)
  6. trustState : TrustState.t option;
    (*

    The trust relationship state.

    *)
  7. createdDateTime : CreatedDateTime.t option;
    (*

    The date and time that the trust relationship was created.

    *)
  8. lastUpdatedDateTime : LastUpdatedDateTime.t option;
    (*

    The date and time that the trust relationship was last updated.

    *)
  9. stateLastUpdatedDateTime : StateLastUpdatedDateTime.t option;
    (*

    The date and time that the TrustState was last updated.

    *)
  10. trustStateReason : TrustStateReason.t option;
    (*

    The reason for the TrustState.

    *)
  11. selectiveAuth : SelectiveAuth.t option;
    (*

    Current state of selective authentication for the trust.

    *)
}
Sourceval make : ?directoryId:??? -> ?trustId:??? -> ?remoteDomainName:??? -> ?trustType:??? -> ?trustDirection:??? -> ?trustState:??? -> ?createdDateTime:??? -> ?lastUpdatedDateTime:??? -> ?stateLastUpdatedDateTime:??? -> ?trustStateReason:??? -> ?selectiveAuth:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DirectoryId.t | `Timestamp of CreatedDateTime.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