AWS SDK for C++

AWS SDK for C++ Version 1.11.866

Loading...
Searching...
No Matches
AgentSkillsDefinitionDescriptor.h
1
6#pragma once
7#include <aws/agent-registry-control/AgentRegistryControl_EXPORTS.h>
8#include <aws/agent-registry-control/model/AgentSkillsAdditionalData.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace AgentRegistryControl {
21namespace Model {
22
30 public:
31 AWS_AGENTREGISTRYCONTROL_API AgentSkillsDefinitionDescriptor() = default;
32 AWS_AGENTREGISTRYCONTROL_API AgentSkillsDefinitionDescriptor(Aws::Utils::Json::JsonView jsonValue);
34 AWS_AGENTREGISTRYCONTROL_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
41 inline const Aws::String& GetData() const { return m_data; }
42 inline bool DataHasBeenSet() const { return m_dataHasBeenSet; }
43 template <typename DataT = Aws::String>
44 void SetData(DataT&& value) {
45 m_dataHasBeenSet = true;
46 m_data = std::forward<DataT>(value);
47 }
48 template <typename DataT = Aws::String>
50 SetData(std::forward<DataT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::String& GetDataSchemaVersion() const { return m_dataSchemaVersion; }
60 inline bool DataSchemaVersionHasBeenSet() const { return m_dataSchemaVersionHasBeenSet; }
61 template <typename DataSchemaVersionT = Aws::String>
62 void SetDataSchemaVersion(DataSchemaVersionT&& value) {
63 m_dataSchemaVersionHasBeenSet = true;
64 m_dataSchemaVersion = std::forward<DataSchemaVersionT>(value);
65 }
66 template <typename DataSchemaVersionT = Aws::String>
68 SetDataSchemaVersion(std::forward<DataSchemaVersionT>(value));
69 return *this;
70 }
72
74
77 inline const AgentSkillsAdditionalData& GetAdditionalData() const { return m_additionalData; }
78 inline bool AdditionalDataHasBeenSet() const { return m_additionalDataHasBeenSet; }
79 template <typename AdditionalDataT = AgentSkillsAdditionalData>
80 void SetAdditionalData(AdditionalDataT&& value) {
81 m_additionalDataHasBeenSet = true;
82 m_additionalData = std::forward<AdditionalDataT>(value);
83 }
84 template <typename AdditionalDataT = AgentSkillsAdditionalData>
86 SetAdditionalData(std::forward<AdditionalDataT>(value));
87 return *this;
88 }
90 private:
91 Aws::String m_data;
92
93 Aws::String m_dataSchemaVersion;
94
95 AgentSkillsAdditionalData m_additionalData;
96 bool m_dataHasBeenSet = false;
97 bool m_dataSchemaVersionHasBeenSet = false;
98 bool m_additionalDataHasBeenSet = false;
99};
100
101} // namespace Model
102} // namespace AgentRegistryControl
103} // namespace Aws
AWS_AGENTREGISTRYCONTROL_API AgentSkillsDefinitionDescriptor()=default
AWS_AGENTREGISTRYCONTROL_API AgentSkillsDefinitionDescriptor(Aws::Utils::Json::JsonView jsonValue)
AgentSkillsDefinitionDescriptor & WithDataSchemaVersion(DataSchemaVersionT &&value)
AWS_AGENTREGISTRYCONTROL_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_AGENTREGISTRYCONTROL_API AgentSkillsDefinitionDescriptor & operator=(Aws::Utils::Json::JsonView jsonValue)
AgentSkillsDefinitionDescriptor & WithAdditionalData(AdditionalDataT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue