/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A request to add specific VDM settings to a configuration set.See
* Also:
AWS
* API Reference
The name of the configuration set.
*/ inline const Aws::String& GetConfigurationSetName() const{ return m_configurationSetName; } /** *The name of the configuration set.
*/ inline bool ConfigurationSetNameHasBeenSet() const { return m_configurationSetNameHasBeenSet; } /** *The name of the configuration set.
*/ inline void SetConfigurationSetName(const Aws::String& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = value; } /** *The name of the configuration set.
*/ inline void SetConfigurationSetName(Aws::String&& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = std::move(value); } /** *The name of the configuration set.
*/ inline void SetConfigurationSetName(const char* value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName.assign(value); } /** *The name of the configuration set.
*/ inline PutConfigurationSetVdmOptionsRequest& WithConfigurationSetName(const Aws::String& value) { SetConfigurationSetName(value); return *this;} /** *The name of the configuration set.
*/ inline PutConfigurationSetVdmOptionsRequest& WithConfigurationSetName(Aws::String&& value) { SetConfigurationSetName(std::move(value)); return *this;} /** *The name of the configuration set.
*/ inline PutConfigurationSetVdmOptionsRequest& WithConfigurationSetName(const char* value) { SetConfigurationSetName(value); return *this;} /** *The VDM options to apply to the configuration set.
*/ inline const VdmOptions& GetVdmOptions() const{ return m_vdmOptions; } /** *The VDM options to apply to the configuration set.
*/ inline bool VdmOptionsHasBeenSet() const { return m_vdmOptionsHasBeenSet; } /** *The VDM options to apply to the configuration set.
*/ inline void SetVdmOptions(const VdmOptions& value) { m_vdmOptionsHasBeenSet = true; m_vdmOptions = value; } /** *The VDM options to apply to the configuration set.
*/ inline void SetVdmOptions(VdmOptions&& value) { m_vdmOptionsHasBeenSet = true; m_vdmOptions = std::move(value); } /** *The VDM options to apply to the configuration set.
*/ inline PutConfigurationSetVdmOptionsRequest& WithVdmOptions(const VdmOptions& value) { SetVdmOptions(value); return *this;} /** *The VDM options to apply to the configuration set.
*/ inline PutConfigurationSetVdmOptionsRequest& WithVdmOptions(VdmOptions&& value) { SetVdmOptions(std::move(value)); return *this;} private: Aws::String m_configurationSetName; bool m_configurationSetNameHasBeenSet = false; VdmOptions m_vdmOptions; bool m_vdmOptionsHasBeenSet = false; }; } // namespace Model } // namespace SESV2 } // namespace Aws