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

Class: Aws::ElasticBeanstalk::Types::UpdateConfigurationTemplateMessage

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

Overview

Note:

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

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

The result message containing the options for the specified solution stack.

Instance Attribute Summary collapse

Instance Attribute Details

#application_nameString

The name of the application associated with the configuration template to update.

If no application is found with this name, UpdateConfigurationTemplate returns an InvalidParameterValue error.

Returns:

  • (String)

    The name of the application associated with the configuration template to update.

#descriptionString

A new description for the configuration.

Returns:

  • (String)

    A new description for the configuration.

#option_settingsArray<Types::ConfigurationOptionSetting>

A list of configuration option settings to update with the new specified option value.

Returns:

#options_to_removeArray<Types::OptionSpecification>

A list of configuration options to remove from the configuration set.

Constraint: You can remove only UserDefined configuration options.

Returns:

#template_nameString

The name of the configuration template to update.

If no configuration template is found with this name, UpdateConfigurationTemplate returns an InvalidParameterValue error.

Returns:

  • (String)

    The name of the configuration template to update.