AWS SDK for C++

AWS SDK for C++ Version 1.11.683

Loading...
Searching...
No Matches
LabelsInputConfiguration.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/lookoutequipment/LookoutEquipment_EXPORTS.h>
9#include <aws/lookoutequipment/model/LabelsS3InputConfiguration.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace LookoutEquipment {
21namespace Model {
22
30 public:
31 AWS_LOOKOUTEQUIPMENT_API LabelsInputConfiguration() = default;
32 AWS_LOOKOUTEQUIPMENT_API LabelsInputConfiguration(Aws::Utils::Json::JsonView jsonValue);
34 AWS_LOOKOUTEQUIPMENT_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
41 inline const LabelsS3InputConfiguration& GetS3InputConfiguration() const { return m_s3InputConfiguration; }
42 inline bool S3InputConfigurationHasBeenSet() const { return m_s3InputConfigurationHasBeenSet; }
43 template <typename S3InputConfigurationT = LabelsS3InputConfiguration>
44 void SetS3InputConfiguration(S3InputConfigurationT&& value) {
45 m_s3InputConfigurationHasBeenSet = true;
46 m_s3InputConfiguration = std::forward<S3InputConfigurationT>(value);
47 }
48 template <typename S3InputConfigurationT = LabelsS3InputConfiguration>
49 LabelsInputConfiguration& WithS3InputConfiguration(S3InputConfigurationT&& value) {
50 SetS3InputConfiguration(std::forward<S3InputConfigurationT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::String& GetLabelGroupName() const { return m_labelGroupName; }
60 inline bool LabelGroupNameHasBeenSet() const { return m_labelGroupNameHasBeenSet; }
61 template <typename LabelGroupNameT = Aws::String>
62 void SetLabelGroupName(LabelGroupNameT&& value) {
63 m_labelGroupNameHasBeenSet = true;
64 m_labelGroupName = std::forward<LabelGroupNameT>(value);
65 }
66 template <typename LabelGroupNameT = Aws::String>
67 LabelsInputConfiguration& WithLabelGroupName(LabelGroupNameT&& value) {
68 SetLabelGroupName(std::forward<LabelGroupNameT>(value));
69 return *this;
70 }
72 private:
73 LabelsS3InputConfiguration m_s3InputConfiguration;
74 bool m_s3InputConfigurationHasBeenSet = false;
75
76 Aws::String m_labelGroupName;
77 bool m_labelGroupNameHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace LookoutEquipment
82} // namespace Aws
AWS_LOOKOUTEQUIPMENT_API LabelsInputConfiguration()=default
AWS_LOOKOUTEQUIPMENT_API LabelsInputConfiguration(Aws::Utils::Json::JsonView jsonValue)
LabelsInputConfiguration & WithS3InputConfiguration(S3InputConfigurationT &&value)
LabelsInputConfiguration & WithLabelGroupName(LabelGroupNameT &&value)
const LabelsS3InputConfiguration & GetS3InputConfiguration() const
AWS_LOOKOUTEQUIPMENT_API LabelsInputConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_LOOKOUTEQUIPMENT_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue