AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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 const AutoEnableMode& GetAutoEnableOrganizationMembers() const{ return m_autoEnableOrganizationMembers; }
49 inline bool AutoEnableOrganizationMembersHasBeenSet() const { return m_autoEnableOrganizationMembersHasBeenSet; }
50 inline void SetAutoEnableOrganizationMembers(const AutoEnableMode& value) { m_autoEnableOrganizationMembersHasBeenSet = true; m_autoEnableOrganizationMembers = value; }
51 inline void SetAutoEnableOrganizationMembers(AutoEnableMode&& value) { m_autoEnableOrganizationMembersHasBeenSet = true; m_autoEnableOrganizationMembers = std::move(value); }
55
57
65 inline const AutomatedDiscoveryStatus& GetStatus() const{ return m_status; }
66 inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
67 inline void SetStatus(const AutomatedDiscoveryStatus& value) { m_statusHasBeenSet = true; m_status = value; }
68 inline void SetStatus(AutomatedDiscoveryStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); }
72 private:
73
74 AutoEnableMode m_autoEnableOrganizationMembers;
75 bool m_autoEnableOrganizationMembersHasBeenSet = false;
76
78 bool m_statusHasBeenSet = false;
79 };
80
81} // namespace Model
82} // namespace Macie2
83} // namespace Aws
UpdateAutomatedDiscoveryConfigurationRequest & WithAutoEnableOrganizationMembers(AutoEnableMode &&value)
UpdateAutomatedDiscoveryConfigurationRequest & WithStatus(AutomatedDiscoveryStatus &&value)
UpdateAutomatedDiscoveryConfigurationRequest & WithStatus(const AutomatedDiscoveryStatus &value)
AWS_MACIE2_API Aws::String SerializePayload() const override
UpdateAutomatedDiscoveryConfigurationRequest & WithAutoEnableOrganizationMembers(const AutoEnableMode &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String