Module Values.CreateApplicationInputSource

Represents the input of a CreateApplication operation.

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

    The name of the application. This name must be unique with the applicable user or Amazon Web Services account.

    *)
  2. computePlatform : ComputePlatform.t option;
    (*

    The destination platform type for the deployment (Lambda, Server, or ECS).

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

    The metadata that you apply to CodeDeploy applications to help you organize and categorize them. Each tag consists of a key and an optional value, both of which you define.

    *)
}
Sourceval context_ : string
Sourceval make : ?computePlatform:??? -> ?tags:??? -> applicationName:ApplicationName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of Key.t ]) list ] 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