Module Values.CreateApplicationRequestSource

Create application.

Sourcetype nonrec t = {
  1. name : ApplicationName.t;
    (*

    Application name.

    *)
  2. description : ApplicationDescription.t option;
    (*

    Application description.

    *)
  3. tags : TagsMap.t option;
    (*

    Application tags.

    *)
  4. accountID : AccountID.t option;
    (*

    Account ID.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> ?accountID:??? -> name:ApplicationName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ApplicationName.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