Module Values.CreateProgramManagementAccountRequestSource

Creates a new program management account for managing partner relationships.

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

    The catalog identifier for the program management account.

    *)
  2. program : Program.t;
    (*

    The program type for the management account.

    *)
  3. displayName : ProgramManagementAccountDisplayName.t;
    (*

    A human-readable name for the program management account.

    *)
  4. accountId : AccountId.t;
    (*

    The AWS account ID to associate with the program management account.

    *)
  5. clientToken : ClientToken.t option;
    (*

    A unique, case-sensitive identifier to ensure idempotency of the request.

    *)
  6. tags : TagList.t option;
    (*

    Key-value pairs to associate with the program management account.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?tags:??? -> catalog:Catalog.t -> program:Program.t -> displayName:ProgramManagementAccountDisplayName.t -> accountId:AccountId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of Catalog.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