AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AutoMLCandidateGenerationConfig.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/sagemaker/model/AutoMLAlgorithmConfig.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace SageMaker
24{
25namespace Model
26{
27
35 {
36 public:
40 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
68 inline const Aws::String& GetFeatureSpecificationS3Uri() const{ return m_featureSpecificationS3Uri; }
69 inline bool FeatureSpecificationS3UriHasBeenSet() const { return m_featureSpecificationS3UriHasBeenSet; }
70 inline void SetFeatureSpecificationS3Uri(const Aws::String& value) { m_featureSpecificationS3UriHasBeenSet = true; m_featureSpecificationS3Uri = value; }
71 inline void SetFeatureSpecificationS3Uri(Aws::String&& value) { m_featureSpecificationS3UriHasBeenSet = true; m_featureSpecificationS3Uri = std::move(value); }
72 inline void SetFeatureSpecificationS3Uri(const char* value) { m_featureSpecificationS3UriHasBeenSet = true; m_featureSpecificationS3Uri.assign(value); }
77
79
101 inline const Aws::Vector<AutoMLAlgorithmConfig>& GetAlgorithmsConfig() const{ return m_algorithmsConfig; }
102 inline bool AlgorithmsConfigHasBeenSet() const { return m_algorithmsConfigHasBeenSet; }
103 inline void SetAlgorithmsConfig(const Aws::Vector<AutoMLAlgorithmConfig>& value) { m_algorithmsConfigHasBeenSet = true; m_algorithmsConfig = value; }
104 inline void SetAlgorithmsConfig(Aws::Vector<AutoMLAlgorithmConfig>&& value) { m_algorithmsConfigHasBeenSet = true; m_algorithmsConfig = std::move(value); }
107 inline AutoMLCandidateGenerationConfig& AddAlgorithmsConfig(const AutoMLAlgorithmConfig& value) { m_algorithmsConfigHasBeenSet = true; m_algorithmsConfig.push_back(value); return *this; }
108 inline AutoMLCandidateGenerationConfig& AddAlgorithmsConfig(AutoMLAlgorithmConfig&& value) { m_algorithmsConfigHasBeenSet = true; m_algorithmsConfig.push_back(std::move(value)); return *this; }
110 private:
111
112 Aws::String m_featureSpecificationS3Uri;
113 bool m_featureSpecificationS3UriHasBeenSet = false;
114
115 Aws::Vector<AutoMLAlgorithmConfig> m_algorithmsConfig;
116 bool m_algorithmsConfigHasBeenSet = false;
117 };
118
119} // namespace Model
120} // namespace SageMaker
121} // namespace Aws
void SetAlgorithmsConfig(const Aws::Vector< AutoMLAlgorithmConfig > &value)
AutoMLCandidateGenerationConfig & WithFeatureSpecificationS3Uri(Aws::String &&value)
const Aws::Vector< AutoMLAlgorithmConfig > & GetAlgorithmsConfig() const
AWS_SAGEMAKER_API AutoMLCandidateGenerationConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
AutoMLCandidateGenerationConfig & WithFeatureSpecificationS3Uri(const Aws::String &value)
AutoMLCandidateGenerationConfig & WithAlgorithmsConfig(const Aws::Vector< AutoMLAlgorithmConfig > &value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
AutoMLCandidateGenerationConfig & WithFeatureSpecificationS3Uri(const char *value)
void SetAlgorithmsConfig(Aws::Vector< AutoMLAlgorithmConfig > &&value)
AWS_SAGEMAKER_API AutoMLCandidateGenerationConfig(Aws::Utils::Json::JsonView jsonValue)
AutoMLCandidateGenerationConfig & AddAlgorithmsConfig(AutoMLAlgorithmConfig &&value)
AutoMLCandidateGenerationConfig & AddAlgorithmsConfig(const AutoMLAlgorithmConfig &value)
AutoMLCandidateGenerationConfig & WithAlgorithmsConfig(Aws::Vector< AutoMLAlgorithmConfig > &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue