Module Values.EnvironmentConfigurationSource

The configuration of an environment.

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

    The environment name.

    *)
  2. id : EnvironmentConfigurationId.t option;
    (*

    The environment ID.

    *)
  3. environmentBlueprintId : EnvironmentBlueprintId.t;
    (*

    The environment blueprint ID.

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

    The environment description.

    *)
  5. deploymentMode : DeploymentMode.t option;
    (*

    The deployment mode of the environment.

    *)
  6. configurationParameters : EnvironmentConfigurationParametersDetails.t option;
    (*

    The configuration parameters of the environment.

    *)
  7. awsAccount : AwsAccount.t option;
    (*

    The Amazon Web Services account of the environment.

    *)
  8. accountPools : AccountPoolList.t option;
    (*

    The account pools used by a custom project profile.

    *)
  9. awsRegion : Region.t option;
    (*

    The Amazon Web Services Region of the environment.

    *)
  10. deploymentOrder : DeploymentOrder.t option;
    (*

    The deployment order of the environment.

    *)
}
Sourceval context_ : string
Sourceval make : ?id:??? -> ?description:??? -> ?deploymentMode:??? -> ?configurationParameters:??? -> ?awsAccount:??? -> ?accountPools:??? -> ?awsRegion:??? -> ?deploymentOrder:??? -> name:EnvironmentConfigurationName.t -> environmentBlueprintId:EnvironmentBlueprintId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of DeploymentOrder.t | `List of [> `String of AccountPoolId.t ] list | `String of EnvironmentConfigurationName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of EnvironmentConfigurationParameterName.t ]) list ] list | `String of ParameterStorePath.t ]) 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