AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
NotificationChannel.h
1
6#pragma once
7#include <aws/textract/Textract_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 Textract
22{
23namespace Model
24{
25
34 {
35 public:
36 AWS_TEXTRACT_API NotificationChannel();
39 AWS_TEXTRACT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetSNSTopicArn() const{ return m_sNSTopicArn; }
47 inline bool SNSTopicArnHasBeenSet() const { return m_sNSTopicArnHasBeenSet; }
48 inline void SetSNSTopicArn(const Aws::String& value) { m_sNSTopicArnHasBeenSet = true; m_sNSTopicArn = value; }
49 inline void SetSNSTopicArn(Aws::String&& value) { m_sNSTopicArnHasBeenSet = true; m_sNSTopicArn = std::move(value); }
50 inline void SetSNSTopicArn(const char* value) { m_sNSTopicArnHasBeenSet = true; m_sNSTopicArn.assign(value); }
51 inline NotificationChannel& WithSNSTopicArn(const Aws::String& value) { SetSNSTopicArn(value); return *this;}
52 inline NotificationChannel& WithSNSTopicArn(Aws::String&& value) { SetSNSTopicArn(std::move(value)); return *this;}
53 inline NotificationChannel& WithSNSTopicArn(const char* value) { SetSNSTopicArn(value); return *this;}
55
57
61 inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
62 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
63 inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; }
64 inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); }
65 inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); }
66 inline NotificationChannel& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
67 inline NotificationChannel& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
68 inline NotificationChannel& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
70 private:
71
72 Aws::String m_sNSTopicArn;
73 bool m_sNSTopicArnHasBeenSet = false;
74
75 Aws::String m_roleArn;
76 bool m_roleArnHasBeenSet = false;
77 };
78
79} // namespace Model
80} // namespace Textract
81} // namespace Aws
AWS_TEXTRACT_API Aws::Utils::Json::JsonValue Jsonize() const
NotificationChannel & WithRoleArn(Aws::String &&value)
AWS_TEXTRACT_API NotificationChannel & operator=(Aws::Utils::Json::JsonView jsonValue)
NotificationChannel & WithSNSTopicArn(const char *value)
NotificationChannel & WithRoleArn(const char *value)
NotificationChannel & WithSNSTopicArn(Aws::String &&value)
void SetSNSTopicArn(const Aws::String &value)
void SetRoleArn(const Aws::String &value)
NotificationChannel & WithRoleArn(const Aws::String &value)
AWS_TEXTRACT_API NotificationChannel(Aws::Utils::Json::JsonView jsonValue)
NotificationChannel & WithSNSTopicArn(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue