Module Values.ProgramManagementAccountSummarySource

Summary information about a program management account.

Sourcetype nonrec t = {
  1. id : ProgramManagementAccountId.t option;
    (*

    The unique identifier of the program management account.

    *)
  2. revision : Revision.t option;
    (*

    The current revision number of the program management account.

    *)
  3. catalog : Catalog.t option;
    (*

    The catalog identifier associated with the account.

    *)
  4. program : Program.t option;
    (*

    The program type for the management account.

    *)
  5. displayName : ProgramManagementAccountDisplayName.t option;
    (*

    The display name of the program management account.

    *)
  6. accountId : AccountId.t option;
    (*

    The AWS account ID associated with the program management account.

    *)
  7. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the program management account.

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

    The timestamp when the account was created.

    *)
  9. updatedAt : DateTime.t option;
    (*

    The timestamp when the account was last updated.

    *)
  10. startDate : DateTime.t option;
    (*

    The start date of the program management account.

    *)
  11. status : ProgramManagementAccountStatus.t option;
    (*

    The current status of the program management account.

    *)
}
Sourceval make : ?id:??? -> ?revision:??? -> ?catalog:??? -> ?program:??? -> ?displayName:??? -> ?accountId:??? -> ?arn:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?startDate:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ProgramManagementAccountId.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