Module Values.PartnerSummarySource

A summary view of a partner account containing basic information for listing purposes.

Sourcetype nonrec t = {
  1. catalog : Catalog.t option;
    (*

    The catalog identifier for the partner account.

    *)
  2. arn : PartnerArn.t option;
    (*

    The Amazon Resource Name (ARN) of the partner account.

    *)
  3. id : PartnerId.t option;
    (*

    The unique identifier of the partner account.

    *)
  4. legalName : SensitiveUnicodeString.t option;
    (*

    The legal name of the partner organization.

    *)
  5. createdAt : DateTime.t option;
    (*

    The timestamp when the partner account was created.

    *)
}
Sourceval make : ?catalog:??? -> ?arn:??? -> ?id:??? -> ?legalName:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Catalog.t | `Timestamp of DateTime.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