/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents information about an action configuration.See
* Also:
AWS
* API Reference
The configuration data for the action.
*/ inline const Aws::MapThe configuration data for the action.
*/ inline bool ConfigurationHasBeenSet() const { return m_configurationHasBeenSet; } /** *The configuration data for the action.
*/ inline void SetConfiguration(const Aws::MapThe configuration data for the action.
*/ inline void SetConfiguration(Aws::MapThe configuration data for the action.
*/ inline ActionConfiguration& WithConfiguration(const Aws::MapThe configuration data for the action.
*/ inline ActionConfiguration& WithConfiguration(Aws::MapThe configuration data for the action.
*/ inline ActionConfiguration& AddConfiguration(const Aws::String& key, const Aws::String& value) { m_configurationHasBeenSet = true; m_configuration.emplace(key, value); return *this; } /** *The configuration data for the action.
*/ inline ActionConfiguration& AddConfiguration(Aws::String&& key, const Aws::String& value) { m_configurationHasBeenSet = true; m_configuration.emplace(std::move(key), value); return *this; } /** *The configuration data for the action.
*/ inline ActionConfiguration& AddConfiguration(const Aws::String& key, Aws::String&& value) { m_configurationHasBeenSet = true; m_configuration.emplace(key, std::move(value)); return *this; } /** *The configuration data for the action.
*/ inline ActionConfiguration& AddConfiguration(Aws::String&& key, Aws::String&& value) { m_configurationHasBeenSet = true; m_configuration.emplace(std::move(key), std::move(value)); return *this; } /** *The configuration data for the action.
*/ inline ActionConfiguration& AddConfiguration(const char* key, Aws::String&& value) { m_configurationHasBeenSet = true; m_configuration.emplace(key, std::move(value)); return *this; } /** *The configuration data for the action.
*/ inline ActionConfiguration& AddConfiguration(Aws::String&& key, const char* value) { m_configurationHasBeenSet = true; m_configuration.emplace(std::move(key), value); return *this; } /** *The configuration data for the action.
*/ inline ActionConfiguration& AddConfiguration(const char* key, const char* value) { m_configurationHasBeenSet = true; m_configuration.emplace(key, value); return *this; } private: Aws::Map