Module Values.DescribeConfigurationSettingsMessageSource

Result message containing all of the configuration settings for a specified solution stack or configuration template.

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

    The application for the environment or configuration template.

    *)
  2. templateName : ConfigurationTemplateName.t option;
    (*

    The name of the configuration template to describe. Conditional: You must specify either this parameter or an EnvironmentName, but not both. If you specify both, AWS Elastic Beanstalk returns an InvalidParameterCombination error. If you do not specify either, AWS Elastic Beanstalk returns a MissingRequiredParameter error.

    *)
  3. environmentName : EnvironmentName.t option;
    (*

    The name of the environment to describe. Condition: You must specify either this or a TemplateName, but not both. If you specify both, AWS Elastic Beanstalk returns an InvalidParameterCombination error. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter error.

    *)
}
Sourceval context_ : string
Sourceval make : ?templateName:??? -> ?environmentName:??? -> applicationName:ApplicationName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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