Module Values_0.AccountSharingInfoSource

Information includes the Amazon Web Services account ID where the current document is shared and the version shared with that account.

Sourcetype nonrec t = {
  1. accountId : AccountId.t option;
    (*

    The Amazon Web Services account ID where the current document is shared.

    *)
  2. sharedDocumentVersion : SharedDocumentVersion.t option;
    (*

    The version of the current document shared with the account.

    *)
}
Sourceval make : ?accountId:??? -> ?sharedDocumentVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccountId.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