AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AutoMLAlgorithmConfig.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/sagemaker/model/AutoMLAlgorithm.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace SageMaker
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_SAGEMAKER_API AutoMLAlgorithmConfig();
39 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
63 inline const Aws::Vector<AutoMLAlgorithm>& GetAutoMLAlgorithms() const{ return m_autoMLAlgorithms; }
64 inline bool AutoMLAlgorithmsHasBeenSet() const { return m_autoMLAlgorithmsHasBeenSet; }
65 inline void SetAutoMLAlgorithms(const Aws::Vector<AutoMLAlgorithm>& value) { m_autoMLAlgorithmsHasBeenSet = true; m_autoMLAlgorithms = value; }
66 inline void SetAutoMLAlgorithms(Aws::Vector<AutoMLAlgorithm>&& value) { m_autoMLAlgorithmsHasBeenSet = true; m_autoMLAlgorithms = std::move(value); }
69 inline AutoMLAlgorithmConfig& AddAutoMLAlgorithms(const AutoMLAlgorithm& value) { m_autoMLAlgorithmsHasBeenSet = true; m_autoMLAlgorithms.push_back(value); return *this; }
70 inline AutoMLAlgorithmConfig& AddAutoMLAlgorithms(AutoMLAlgorithm&& value) { m_autoMLAlgorithmsHasBeenSet = true; m_autoMLAlgorithms.push_back(std::move(value)); return *this; }
72 private:
73
74 Aws::Vector<AutoMLAlgorithm> m_autoMLAlgorithms;
75 bool m_autoMLAlgorithmsHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace SageMaker
80} // namespace Aws
AutoMLAlgorithmConfig & AddAutoMLAlgorithms(const AutoMLAlgorithm &value)
AutoMLAlgorithmConfig & WithAutoMLAlgorithms(Aws::Vector< AutoMLAlgorithm > &&value)
void SetAutoMLAlgorithms(Aws::Vector< AutoMLAlgorithm > &&value)
AWS_SAGEMAKER_API AutoMLAlgorithmConfig(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKER_API AutoMLAlgorithmConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetAutoMLAlgorithms(const Aws::Vector< AutoMLAlgorithm > &value)
const Aws::Vector< AutoMLAlgorithm > & GetAutoMLAlgorithms() const
AutoMLAlgorithmConfig & WithAutoMLAlgorithms(const Aws::Vector< AutoMLAlgorithm > &value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
AutoMLAlgorithmConfig & AddAutoMLAlgorithms(AutoMLAlgorithm &&value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue