AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
CustomPluginDescription.h
1
6#pragma once
7#include <aws/kafkaconnect/KafkaConnect_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace KafkaConnect
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_KAFKACONNECT_API CustomPluginDescription() = default;
35 AWS_KAFKACONNECT_API CustomPluginDescription(Aws::Utils::Json::JsonView jsonValue);
37 AWS_KAFKACONNECT_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const Aws::String& GetCustomPluginArn() const { return m_customPluginArn; }
45 inline bool CustomPluginArnHasBeenSet() const { return m_customPluginArnHasBeenSet; }
46 template<typename CustomPluginArnT = Aws::String>
47 void SetCustomPluginArn(CustomPluginArnT&& value) { m_customPluginArnHasBeenSet = true; m_customPluginArn = std::forward<CustomPluginArnT>(value); }
48 template<typename CustomPluginArnT = Aws::String>
49 CustomPluginDescription& WithCustomPluginArn(CustomPluginArnT&& value) { SetCustomPluginArn(std::forward<CustomPluginArnT>(value)); return *this;}
51
53
56 inline long long GetRevision() const { return m_revision; }
57 inline bool RevisionHasBeenSet() const { return m_revisionHasBeenSet; }
58 inline void SetRevision(long long value) { m_revisionHasBeenSet = true; m_revision = value; }
59 inline CustomPluginDescription& WithRevision(long long value) { SetRevision(value); return *this;}
61 private:
62
63 Aws::String m_customPluginArn;
64 bool m_customPluginArnHasBeenSet = false;
65
66 long long m_revision{0};
67 bool m_revisionHasBeenSet = false;
68 };
69
70} // namespace Model
71} // namespace KafkaConnect
72} // namespace Aws
AWS_KAFKACONNECT_API CustomPluginDescription()=default
AWS_KAFKACONNECT_API CustomPluginDescription & operator=(Aws::Utils::Json::JsonView jsonValue)
CustomPluginDescription & WithRevision(long long value)
AWS_KAFKACONNECT_API CustomPluginDescription(Aws::Utils::Json::JsonView jsonValue)
AWS_KAFKACONNECT_API Aws::Utils::Json::JsonValue Jsonize() const
CustomPluginDescription & WithCustomPluginArn(CustomPluginArnT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue