You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ElasticBeanstalk::Types::ValidateConfigurationSettingsMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ValidateConfigurationSettingsMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  application_name: "ApplicationName", # required
  template_name: "ConfigurationTemplateName",
  environment_name: "EnvironmentName",
  option_settings: [ # required
    {
      resource_name: "ResourceName",
      namespace: "OptionNamespace",
      option_name: "ConfigurationOptionName",
      value: "ConfigurationOptionValue",
    },
  ],
}

A list of validation messages for a specified configuration template.

Instance Attribute Summary collapse

Instance Attribute Details

#application_nameString

The name of the application that the configuration template or environment belongs to.

Returns:

  • (String)

    The name of the application that the configuration template or environment belongs to.

#environment_nameString

The name of the environment to validate the settings against.

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

Returns:

  • (String)

    The name of the environment to validate the settings against.

#option_settingsArray<Types::ConfigurationOptionSetting>

A list of the options and desired values to evaluate.

Returns:

#template_nameString

The name of the configuration template to validate the settings against.

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

Returns:

  • (String)

    The name of the configuration template to validate the settings against.