AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
LabelingJobInputConfig.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/sagemaker/model/LabelingJobDataSource.h>
9#include <aws/sagemaker/model/LabelingJobDataAttributes.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 LabelingJobInputConfig();
39 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const LabelingJobDataSource& GetDataSource() const{ return m_dataSource; }
47 inline bool DataSourceHasBeenSet() const { return m_dataSourceHasBeenSet; }
48 inline void SetDataSource(const LabelingJobDataSource& value) { m_dataSourceHasBeenSet = true; m_dataSource = value; }
49 inline void SetDataSource(LabelingJobDataSource&& value) { m_dataSourceHasBeenSet = true; m_dataSource = std::move(value); }
50 inline LabelingJobInputConfig& WithDataSource(const LabelingJobDataSource& value) { SetDataSource(value); return *this;}
51 inline LabelingJobInputConfig& WithDataSource(LabelingJobDataSource&& value) { SetDataSource(std::move(value)); return *this;}
53
55
58 inline const LabelingJobDataAttributes& GetDataAttributes() const{ return m_dataAttributes; }
59 inline bool DataAttributesHasBeenSet() const { return m_dataAttributesHasBeenSet; }
60 inline void SetDataAttributes(const LabelingJobDataAttributes& value) { m_dataAttributesHasBeenSet = true; m_dataAttributes = value; }
61 inline void SetDataAttributes(LabelingJobDataAttributes&& value) { m_dataAttributesHasBeenSet = true; m_dataAttributes = std::move(value); }
63 inline LabelingJobInputConfig& WithDataAttributes(LabelingJobDataAttributes&& value) { SetDataAttributes(std::move(value)); return *this;}
65 private:
66
67 LabelingJobDataSource m_dataSource;
68 bool m_dataSourceHasBeenSet = false;
69
70 LabelingJobDataAttributes m_dataAttributes;
71 bool m_dataAttributesHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace SageMaker
76} // namespace Aws
LabelingJobInputConfig & WithDataSource(const LabelingJobDataSource &value)
LabelingJobInputConfig & WithDataAttributes(const LabelingJobDataAttributes &value)
AWS_SAGEMAKER_API LabelingJobInputConfig(Aws::Utils::Json::JsonView jsonValue)
const LabelingJobDataAttributes & GetDataAttributes() const
LabelingJobInputConfig & WithDataAttributes(LabelingJobDataAttributes &&value)
AWS_SAGEMAKER_API LabelingJobInputConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetDataAttributes(const LabelingJobDataAttributes &value)
LabelingJobInputConfig & WithDataSource(LabelingJobDataSource &&value)
void SetDataSource(const LabelingJobDataSource &value)
void SetDataAttributes(LabelingJobDataAttributes &&value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
void SetDataSource(LabelingJobDataSource &&value)
const LabelingJobDataSource & GetDataSource() const
Aws::Utils::Json::JsonValue JsonValue