AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
InviteMembersRequest.h
1
6#pragma once
7#include <aws/guardduty/GuardDuty_EXPORTS.h>
8#include <aws/guardduty/GuardDutyRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <utility>
12
13namespace Aws
14{
15namespace GuardDuty
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_GUARDDUTY_API InviteMembersRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "InviteMembers"; }
32
33 AWS_GUARDDUTY_API Aws::String SerializePayload() const override;
34
35
37
44 inline const Aws::String& GetDetectorId() const { return m_detectorId; }
45 inline bool DetectorIdHasBeenSet() const { return m_detectorIdHasBeenSet; }
46 template<typename DetectorIdT = Aws::String>
47 void SetDetectorId(DetectorIdT&& value) { m_detectorIdHasBeenSet = true; m_detectorId = std::forward<DetectorIdT>(value); }
48 template<typename DetectorIdT = Aws::String>
49 InviteMembersRequest& WithDetectorId(DetectorIdT&& value) { SetDetectorId(std::forward<DetectorIdT>(value)); return *this;}
51
53
57 inline const Aws::Vector<Aws::String>& GetAccountIds() const { return m_accountIds; }
58 inline bool AccountIdsHasBeenSet() const { return m_accountIdsHasBeenSet; }
59 template<typename AccountIdsT = Aws::Vector<Aws::String>>
60 void SetAccountIds(AccountIdsT&& value) { m_accountIdsHasBeenSet = true; m_accountIds = std::forward<AccountIdsT>(value); }
61 template<typename AccountIdsT = Aws::Vector<Aws::String>>
62 InviteMembersRequest& WithAccountIds(AccountIdsT&& value) { SetAccountIds(std::forward<AccountIdsT>(value)); return *this;}
63 template<typename AccountIdsT = Aws::String>
64 InviteMembersRequest& AddAccountIds(AccountIdsT&& value) { m_accountIdsHasBeenSet = true; m_accountIds.emplace_back(std::forward<AccountIdsT>(value)); return *this; }
66
68
72 inline bool GetDisableEmailNotification() const { return m_disableEmailNotification; }
73 inline bool DisableEmailNotificationHasBeenSet() const { return m_disableEmailNotificationHasBeenSet; }
74 inline void SetDisableEmailNotification(bool value) { m_disableEmailNotificationHasBeenSet = true; m_disableEmailNotification = value; }
77
79
83 inline const Aws::String& GetMessage() const { return m_message; }
84 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
85 template<typename MessageT = Aws::String>
86 void SetMessage(MessageT&& value) { m_messageHasBeenSet = true; m_message = std::forward<MessageT>(value); }
87 template<typename MessageT = Aws::String>
88 InviteMembersRequest& WithMessage(MessageT&& value) { SetMessage(std::forward<MessageT>(value)); return *this;}
90 private:
91
92 Aws::String m_detectorId;
93 bool m_detectorIdHasBeenSet = false;
94
95 Aws::Vector<Aws::String> m_accountIds;
96 bool m_accountIdsHasBeenSet = false;
97
98 bool m_disableEmailNotification{false};
99 bool m_disableEmailNotificationHasBeenSet = false;
100
101 Aws::String m_message;
102 bool m_messageHasBeenSet = false;
103 };
104
105} // namespace Model
106} // namespace GuardDuty
107} // namespace Aws
InviteMembersRequest & AddAccountIds(AccountIdsT &&value)
AWS_GUARDDUTY_API Aws::String SerializePayload() const override
InviteMembersRequest & WithDetectorId(DetectorIdT &&value)
InviteMembersRequest & WithAccountIds(AccountIdsT &&value)
InviteMembersRequest & WithMessage(MessageT &&value)
AWS_GUARDDUTY_API InviteMembersRequest()=default
const Aws::Vector< Aws::String > & GetAccountIds() const
virtual const char * GetServiceRequestName() const override
InviteMembersRequest & WithDisableEmailNotification(bool value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector