AWS SDK for C++

AWS SDK for C++ Version 1.11.612

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:
37 AWS_SAGEMAKER_API AutoMLCandidateGenerationConfig() = default;
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 template<typename FeatureSpecificationS3UriT = Aws::String>
71 void SetFeatureSpecificationS3Uri(FeatureSpecificationS3UriT&& value) { m_featureSpecificationS3UriHasBeenSet = true; m_featureSpecificationS3Uri = std::forward<FeatureSpecificationS3UriT>(value); }
72 template<typename FeatureSpecificationS3UriT = Aws::String>
73 AutoMLCandidateGenerationConfig& WithFeatureSpecificationS3Uri(FeatureSpecificationS3UriT&& value) { SetFeatureSpecificationS3Uri(std::forward<FeatureSpecificationS3UriT>(value)); return *this;}
75
77
99 inline const Aws::Vector<AutoMLAlgorithmConfig>& GetAlgorithmsConfig() const { return m_algorithmsConfig; }
100 inline bool AlgorithmsConfigHasBeenSet() const { return m_algorithmsConfigHasBeenSet; }
101 template<typename AlgorithmsConfigT = Aws::Vector<AutoMLAlgorithmConfig>>
102 void SetAlgorithmsConfig(AlgorithmsConfigT&& value) { m_algorithmsConfigHasBeenSet = true; m_algorithmsConfig = std::forward<AlgorithmsConfigT>(value); }
103 template<typename AlgorithmsConfigT = Aws::Vector<AutoMLAlgorithmConfig>>
104 AutoMLCandidateGenerationConfig& WithAlgorithmsConfig(AlgorithmsConfigT&& value) { SetAlgorithmsConfig(std::forward<AlgorithmsConfigT>(value)); return *this;}
105 template<typename AlgorithmsConfigT = AutoMLAlgorithmConfig>
106 AutoMLCandidateGenerationConfig& AddAlgorithmsConfig(AlgorithmsConfigT&& value) { m_algorithmsConfigHasBeenSet = true; m_algorithmsConfig.emplace_back(std::forward<AlgorithmsConfigT>(value)); return *this; }
108 private:
109
110 Aws::String m_featureSpecificationS3Uri;
111 bool m_featureSpecificationS3UriHasBeenSet = false;
112
113 Aws::Vector<AutoMLAlgorithmConfig> m_algorithmsConfig;
114 bool m_algorithmsConfigHasBeenSet = false;
115 };
116
117} // namespace Model
118} // namespace SageMaker
119} // namespace Aws
void SetFeatureSpecificationS3Uri(FeatureSpecificationS3UriT &&value)
const Aws::Vector< AutoMLAlgorithmConfig > & GetAlgorithmsConfig() const
AWS_SAGEMAKER_API AutoMLCandidateGenerationConfig()=default
AWS_SAGEMAKER_API AutoMLCandidateGenerationConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
AutoMLCandidateGenerationConfig & WithFeatureSpecificationS3Uri(FeatureSpecificationS3UriT &&value)
AutoMLCandidateGenerationConfig & AddAlgorithmsConfig(AlgorithmsConfigT &&value)
AWS_SAGEMAKER_API AutoMLCandidateGenerationConfig(Aws::Utils::Json::JsonView jsonValue)
AutoMLCandidateGenerationConfig & WithAlgorithmsConfig(AlgorithmsConfigT &&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