
validate-configuration-settings
*******************************


DESCRIPTION
===========

Takes a set of configuration settings and either a configuration
template or environment, and determines whether those values are
valid.

This action returns a list of messages indicating any errors or
warnings associated with the selection of option values.


SYNOPSIS
========

   aws elasticbeanstalk validate-configuration-settings
     --application-name <value>
     --option-settings <value>
     [--environment-name <value>]
     [--template-name <value>]


REQUIRED PARAMETERS
===================

"--application-name"  (string)
   The name of the application that the configuration template or
   environment belongs to.

"--option-settings"  (list)
   A list of the options and desired values to evaluate.

      (structure)
         A specification identifying an individual configuration
         option along with its current value.

         "option_name"  (string)
            The name of the configuration option.

         "namespace"  (string)
            A unique namespace identifying the option's associated AWS
            resource.

         "value"  (string)
            The current value for the configuration option.

   *Parameter Syntax*

      [
        {
          "option_name": "string",
          "namespace": "string",
          "value": "string"
        }
        ...
      ]


OPTIONAL PARAMETERS
===================

"--environment-name"  (string)
   The name of the environment to validate the settings against.

   Condition: You cannot specify both this and a configuration
   template name.

"--template-name"  (string)
   The name of the configuration template to validate the settings
   against.

   Condition: You cannot specify both this and an environment name.
