Module Values.CreateEnvironmentRequestSource

Creates an environment. For each application, you define one or more environments. An environment is a deployment group of AppConfig targets, such as applications in a Beta or Production environment. You can also define environments for application subcomponents such as the Web, Mobile and Back-end components for your application. You can configure Amazon CloudWatch alarms for each environment. The system monitors alarms during a configuration deployment. If an alarm is triggered, the system rolls back the configuration.

Sourcetype nonrec t = {
  1. applicationId : Id.t;
    (*

    The application ID.

    *)
  2. name : Name.t;
    (*

    A name for the environment.

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

    A description of the environment.

    *)
  4. monitors : MonitorList.t option;
    (*

    Amazon CloudWatch alarms to monitor during the deployment process.

    *)
  5. tags : TagMap.t option;
    (*

    Metadata to assign to the environment. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.

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