Module Values.EnvironmentConfigurationParametersDetailsSource

The details of the environment configuration parameter.

Sourcetype nonrec t = {
  1. ssmPath : ParameterStorePath.t option;
    (*

    Ssm path environment configuration parameters.

    *)
  2. parameterOverrides : EnvironmentConfigurationParametersList.t option;
    (*

    The parameter overrides.

    *)
  3. resolvedParameters : EnvironmentConfigurationParametersList.t option;
    (*

    The resolved environment configuration parameters.

    *)
}
Sourceval make : ?ssmPath:??? -> ?parameterOverrides:??? -> ?resolvedParameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of EnvironmentConfigurationParameterName.t ]) list ] list | `String of ParameterStorePath.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