/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace ElasticBeanstalk { namespace Model { /** *

A list of validation messages for a specified configuration * template.

See Also:

AWS * API Reference

*/ class ValidateConfigurationSettingsRequest : public ElasticBeanstalkRequest { public: AWS_ELASTICBEANSTALK_API ValidateConfigurationSettingsRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "ValidateConfigurationSettings"; } AWS_ELASTICBEANSTALK_API Aws::String SerializePayload() const override; protected: AWS_ELASTICBEANSTALK_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

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

*/ inline const Aws::String& GetApplicationName() const{ return m_applicationName; } /** *

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

*/ inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; } /** *

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

*/ inline void SetApplicationName(const Aws::String& value) { m_applicationNameHasBeenSet = true; m_applicationName = value; } /** *

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

*/ inline void SetApplicationName(Aws::String&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::move(value); } /** *

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

*/ inline void SetApplicationName(const char* value) { m_applicationNameHasBeenSet = true; m_applicationName.assign(value); } /** *

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

*/ inline ValidateConfigurationSettingsRequest& WithApplicationName(const Aws::String& value) { SetApplicationName(value); return *this;} /** *

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

*/ inline ValidateConfigurationSettingsRequest& WithApplicationName(Aws::String&& value) { SetApplicationName(std::move(value)); return *this;} /** *

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

*/ inline ValidateConfigurationSettingsRequest& WithApplicationName(const char* value) { SetApplicationName(value); return *this;} /** *

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

*

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

*/ inline const Aws::String& GetTemplateName() const{ return m_templateName; } /** *

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

*

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

*/ inline bool TemplateNameHasBeenSet() const { return m_templateNameHasBeenSet; } /** *

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

*

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

*/ inline void SetTemplateName(const Aws::String& value) { m_templateNameHasBeenSet = true; m_templateName = value; } /** *

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

*

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

*/ inline void SetTemplateName(Aws::String&& value) { m_templateNameHasBeenSet = true; m_templateName = std::move(value); } /** *

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

*

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

*/ inline void SetTemplateName(const char* value) { m_templateNameHasBeenSet = true; m_templateName.assign(value); } /** *

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

*

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

*/ inline ValidateConfigurationSettingsRequest& WithTemplateName(const Aws::String& value) { SetTemplateName(value); return *this;} /** *

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

*

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

*/ inline ValidateConfigurationSettingsRequest& WithTemplateName(Aws::String&& value) { SetTemplateName(std::move(value)); return *this;} /** *

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

*

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

*/ inline ValidateConfigurationSettingsRequest& WithTemplateName(const char* value) { SetTemplateName(value); return *this;} /** *

The name of the environment to validate the settings against.

*

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

*/ inline const Aws::String& GetEnvironmentName() const{ return m_environmentName; } /** *

The name of the environment to validate the settings against.

*

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

*/ inline bool EnvironmentNameHasBeenSet() const { return m_environmentNameHasBeenSet; } /** *

The name of the environment to validate the settings against.

*

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

*/ inline void SetEnvironmentName(const Aws::String& value) { m_environmentNameHasBeenSet = true; m_environmentName = value; } /** *

The name of the environment to validate the settings against.

*

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

*/ inline void SetEnvironmentName(Aws::String&& value) { m_environmentNameHasBeenSet = true; m_environmentName = std::move(value); } /** *

The name of the environment to validate the settings against.

*

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

*/ inline void SetEnvironmentName(const char* value) { m_environmentNameHasBeenSet = true; m_environmentName.assign(value); } /** *

The name of the environment to validate the settings against.

*

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

*/ inline ValidateConfigurationSettingsRequest& WithEnvironmentName(const Aws::String& value) { SetEnvironmentName(value); return *this;} /** *

The name of the environment to validate the settings against.

*

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

*/ inline ValidateConfigurationSettingsRequest& WithEnvironmentName(Aws::String&& value) { SetEnvironmentName(std::move(value)); return *this;} /** *

The name of the environment to validate the settings against.

*

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

*/ inline ValidateConfigurationSettingsRequest& WithEnvironmentName(const char* value) { SetEnvironmentName(value); return *this;} /** *

A list of the options and desired values to evaluate.

*/ inline const Aws::Vector& GetOptionSettings() const{ return m_optionSettings; } /** *

A list of the options and desired values to evaluate.

*/ inline bool OptionSettingsHasBeenSet() const { return m_optionSettingsHasBeenSet; } /** *

A list of the options and desired values to evaluate.

*/ inline void SetOptionSettings(const Aws::Vector& value) { m_optionSettingsHasBeenSet = true; m_optionSettings = value; } /** *

A list of the options and desired values to evaluate.

*/ inline void SetOptionSettings(Aws::Vector&& value) { m_optionSettingsHasBeenSet = true; m_optionSettings = std::move(value); } /** *

A list of the options and desired values to evaluate.

*/ inline ValidateConfigurationSettingsRequest& WithOptionSettings(const Aws::Vector& value) { SetOptionSettings(value); return *this;} /** *

A list of the options and desired values to evaluate.

*/ inline ValidateConfigurationSettingsRequest& WithOptionSettings(Aws::Vector&& value) { SetOptionSettings(std::move(value)); return *this;} /** *

A list of the options and desired values to evaluate.

*/ inline ValidateConfigurationSettingsRequest& AddOptionSettings(const ConfigurationOptionSetting& value) { m_optionSettingsHasBeenSet = true; m_optionSettings.push_back(value); return *this; } /** *

A list of the options and desired values to evaluate.

*/ inline ValidateConfigurationSettingsRequest& AddOptionSettings(ConfigurationOptionSetting&& value) { m_optionSettingsHasBeenSet = true; m_optionSettings.push_back(std::move(value)); return *this; } private: Aws::String m_applicationName; bool m_applicationNameHasBeenSet = false; Aws::String m_templateName; bool m_templateNameHasBeenSet = false; Aws::String m_environmentName; bool m_environmentNameHasBeenSet = false; Aws::Vector m_optionSettings; bool m_optionSettingsHasBeenSet = false; }; } // namespace Model } // namespace ElasticBeanstalk } // namespace Aws