AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateAutomatedDiscoveryConfigurationRequest.h
1
6#pragma once
7#include <aws/macie2/Macie2_EXPORTS.h>
8#include <aws/macie2/Macie2Request.h>
9#include <aws/macie2/model/AutoEnableMode.h>
10#include <aws/macie2/model/AutomatedDiscoveryStatus.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Macie2
16{
17namespace Model
18{
19
23 {
24 public:
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 "UpdateAutomatedDiscoveryConfiguration"; }
32
33 AWS_MACIE2_API Aws::String SerializePayload() const override;
34
35
37
48 inline AutoEnableMode GetAutoEnableOrganizationMembers() const { return m_autoEnableOrganizationMembers; }
49 inline bool AutoEnableOrganizationMembersHasBeenSet() const { return m_autoEnableOrganizationMembersHasBeenSet; }
50 inline void SetAutoEnableOrganizationMembers(AutoEnableMode value) { m_autoEnableOrganizationMembersHasBeenSet = true; m_autoEnableOrganizationMembers = value; }
53
55
63 inline AutomatedDiscoveryStatus GetStatus() const { return m_status; }
64 inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
65 inline void SetStatus(AutomatedDiscoveryStatus value) { m_statusHasBeenSet = true; m_status = value; }
68 private:
69
70 AutoEnableMode m_autoEnableOrganizationMembers{AutoEnableMode::NOT_SET};
71 bool m_autoEnableOrganizationMembersHasBeenSet = false;
72
74 bool m_statusHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace Macie2
79} // namespace Aws
UpdateAutomatedDiscoveryConfigurationRequest & WithAutoEnableOrganizationMembers(AutoEnableMode value)
AWS_MACIE2_API Aws::String SerializePayload() const override
UpdateAutomatedDiscoveryConfigurationRequest & WithStatus(AutomatedDiscoveryStatus value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String