This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-personalize/include/aws/personalize/model/CampaignConfig.h

141 lines
5.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/personalize/Personalize_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSMap.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace Personalize
{
namespace Model
{
/**
* <p>The configuration details of a campaign.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/CampaignConfig">AWS
* API Reference</a></p>
*/
class AWS_PERSONALIZE_API CampaignConfig
{
public:
CampaignConfig();
CampaignConfig(Aws::Utils::Json::JsonView jsonValue);
CampaignConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>A string to string map specifying the inference hyperparameters you wish to
* use for hyperparameter optimization. See
* <a>customizing-solution-config-hpo</a>.</p>
*/
inline const Aws::Map<Aws::String, Aws::String>& GetItemExplorationConfig() const{ return m_itemExplorationConfig; }
/**
* <p>A string to string map specifying the inference hyperparameters you wish to
* use for hyperparameter optimization. See
* <a>customizing-solution-config-hpo</a>.</p>
*/
inline bool ItemExplorationConfigHasBeenSet() const { return m_itemExplorationConfigHasBeenSet; }
/**
* <p>A string to string map specifying the inference hyperparameters you wish to
* use for hyperparameter optimization. See
* <a>customizing-solution-config-hpo</a>.</p>
*/
inline void SetItemExplorationConfig(const Aws::Map<Aws::String, Aws::String>& value) { m_itemExplorationConfigHasBeenSet = true; m_itemExplorationConfig = value; }
/**
* <p>A string to string map specifying the inference hyperparameters you wish to
* use for hyperparameter optimization. See
* <a>customizing-solution-config-hpo</a>.</p>
*/
inline void SetItemExplorationConfig(Aws::Map<Aws::String, Aws::String>&& value) { m_itemExplorationConfigHasBeenSet = true; m_itemExplorationConfig = std::move(value); }
/**
* <p>A string to string map specifying the inference hyperparameters you wish to
* use for hyperparameter optimization. See
* <a>customizing-solution-config-hpo</a>.</p>
*/
inline CampaignConfig& WithItemExplorationConfig(const Aws::Map<Aws::String, Aws::String>& value) { SetItemExplorationConfig(value); return *this;}
/**
* <p>A string to string map specifying the inference hyperparameters you wish to
* use for hyperparameter optimization. See
* <a>customizing-solution-config-hpo</a>.</p>
*/
inline CampaignConfig& WithItemExplorationConfig(Aws::Map<Aws::String, Aws::String>&& value) { SetItemExplorationConfig(std::move(value)); return *this;}
/**
* <p>A string to string map specifying the inference hyperparameters you wish to
* use for hyperparameter optimization. See
* <a>customizing-solution-config-hpo</a>.</p>
*/
inline CampaignConfig& AddItemExplorationConfig(const Aws::String& key, const Aws::String& value) { m_itemExplorationConfigHasBeenSet = true; m_itemExplorationConfig.emplace(key, value); return *this; }
/**
* <p>A string to string map specifying the inference hyperparameters you wish to
* use for hyperparameter optimization. See
* <a>customizing-solution-config-hpo</a>.</p>
*/
inline CampaignConfig& AddItemExplorationConfig(Aws::String&& key, const Aws::String& value) { m_itemExplorationConfigHasBeenSet = true; m_itemExplorationConfig.emplace(std::move(key), value); return *this; }
/**
* <p>A string to string map specifying the inference hyperparameters you wish to
* use for hyperparameter optimization. See
* <a>customizing-solution-config-hpo</a>.</p>
*/
inline CampaignConfig& AddItemExplorationConfig(const Aws::String& key, Aws::String&& value) { m_itemExplorationConfigHasBeenSet = true; m_itemExplorationConfig.emplace(key, std::move(value)); return *this; }
/**
* <p>A string to string map specifying the inference hyperparameters you wish to
* use for hyperparameter optimization. See
* <a>customizing-solution-config-hpo</a>.</p>
*/
inline CampaignConfig& AddItemExplorationConfig(Aws::String&& key, Aws::String&& value) { m_itemExplorationConfigHasBeenSet = true; m_itemExplorationConfig.emplace(std::move(key), std::move(value)); return *this; }
/**
* <p>A string to string map specifying the inference hyperparameters you wish to
* use for hyperparameter optimization. See
* <a>customizing-solution-config-hpo</a>.</p>
*/
inline CampaignConfig& AddItemExplorationConfig(const char* key, Aws::String&& value) { m_itemExplorationConfigHasBeenSet = true; m_itemExplorationConfig.emplace(key, std::move(value)); return *this; }
/**
* <p>A string to string map specifying the inference hyperparameters you wish to
* use for hyperparameter optimization. See
* <a>customizing-solution-config-hpo</a>.</p>
*/
inline CampaignConfig& AddItemExplorationConfig(Aws::String&& key, const char* value) { m_itemExplorationConfigHasBeenSet = true; m_itemExplorationConfig.emplace(std::move(key), value); return *this; }
/**
* <p>A string to string map specifying the inference hyperparameters you wish to
* use for hyperparameter optimization. See
* <a>customizing-solution-config-hpo</a>.</p>
*/
inline CampaignConfig& AddItemExplorationConfig(const char* key, const char* value) { m_itemExplorationConfigHasBeenSet = true; m_itemExplorationConfig.emplace(key, value); return *this; }
private:
Aws::Map<Aws::String, Aws::String> m_itemExplorationConfig;
bool m_itemExplorationConfigHasBeenSet;
};
} // namespace Model
} // namespace Personalize
} // namespace Aws