AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetMembersRequest.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 GetMembersRequest() = 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 "GetMembers"; }
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 GetMembersRequest& 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 GetMembersRequest& WithAccountIds(AccountIdsT&& value) { SetAccountIds(std::forward<AccountIdsT>(value)); return *this;}
63 template<typename AccountIdsT = Aws::String>
64 GetMembersRequest& AddAccountIds(AccountIdsT&& value) { m_accountIdsHasBeenSet = true; m_accountIds.emplace_back(std::forward<AccountIdsT>(value)); return *this; }
66 private:
67
68 Aws::String m_detectorId;
69 bool m_detectorIdHasBeenSet = false;
70
71 Aws::Vector<Aws::String> m_accountIds;
72 bool m_accountIdsHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace GuardDuty
77} // namespace Aws
GetMembersRequest & AddAccountIds(AccountIdsT &&value)
AWS_GUARDDUTY_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
const Aws::String & GetDetectorId() const
AWS_GUARDDUTY_API GetMembersRequest()=default
GetMembersRequest & WithDetectorId(DetectorIdT &&value)
const Aws::Vector< Aws::String > & GetAccountIds() const
GetMembersRequest & WithAccountIds(AccountIdsT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector