Module Values.CreateApplicationMessageSource

Request to create an application.

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

    The name of the application. Must be unique within your account.

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

    Your description of the application.

    *)
  3. resourceLifecycleConfig : ApplicationResourceLifecycleConfig.t option;
    (*

    Specifies an application resource lifecycle configuration to prevent your application from accumulating too many versions.

    *)
  4. tags : Tags.t option;
    (*

    Specifies the tags applied to the application. Elastic Beanstalk applies these tags only to the application. Environments that you create in the application don't inherit the tags.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?resourceLifecycleConfig:??? -> ?tags:??? -> applicationName:ApplicationName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ApplicationName.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Structure of (string * [> `Boolean of BoxedBoolean.t | `Integer of BoxedInt.t ]) list ]) list ]) list ]) 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