AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AuditNotificationTarget.h
1
6#pragma once
7#include <aws/iot/IoT_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 IoT
22{
23namespace Model
24{
25
33 {
34 public:
39
40
42
45 inline const Aws::String& GetTargetArn() const{ return m_targetArn; }
46 inline bool TargetArnHasBeenSet() const { return m_targetArnHasBeenSet; }
47 inline void SetTargetArn(const Aws::String& value) { m_targetArnHasBeenSet = true; m_targetArn = value; }
48 inline void SetTargetArn(Aws::String&& value) { m_targetArnHasBeenSet = true; m_targetArn = std::move(value); }
49 inline void SetTargetArn(const char* value) { m_targetArnHasBeenSet = true; m_targetArn.assign(value); }
50 inline AuditNotificationTarget& WithTargetArn(const Aws::String& value) { SetTargetArn(value); return *this;}
51 inline AuditNotificationTarget& WithTargetArn(Aws::String&& value) { SetTargetArn(std::move(value)); return *this;}
52 inline AuditNotificationTarget& WithTargetArn(const char* value) { SetTargetArn(value); return *this;}
54
56
60 inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
61 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
62 inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; }
63 inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); }
64 inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); }
65 inline AuditNotificationTarget& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
66 inline AuditNotificationTarget& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
67 inline AuditNotificationTarget& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
69
71
74 inline bool GetEnabled() const{ return m_enabled; }
75 inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; }
76 inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; }
77 inline AuditNotificationTarget& WithEnabled(bool value) { SetEnabled(value); return *this;}
79 private:
80
81 Aws::String m_targetArn;
82 bool m_targetArnHasBeenSet = false;
83
84 Aws::String m_roleArn;
85 bool m_roleArnHasBeenSet = false;
86
87 bool m_enabled;
88 bool m_enabledHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace IoT
93} // namespace Aws
AuditNotificationTarget & WithRoleArn(Aws::String &&value)
AWS_IOT_API AuditNotificationTarget & operator=(Aws::Utils::Json::JsonView jsonValue)
AuditNotificationTarget & WithEnabled(bool value)
AuditNotificationTarget & WithTargetArn(const Aws::String &value)
AuditNotificationTarget & WithRoleArn(const Aws::String &value)
AuditNotificationTarget & WithTargetArn(Aws::String &&value)
AWS_IOT_API AuditNotificationTarget(Aws::Utils::Json::JsonView jsonValue)
AWS_IOT_API Aws::Utils::Json::JsonValue Jsonize() const
AuditNotificationTarget & WithRoleArn(const char *value)
AuditNotificationTarget & WithTargetArn(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue