AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeregisterOrganizationDelegatedAdminRequest.h
1
6#pragma once
7#include <aws/cloudtrail/CloudTrail_EXPORTS.h>
8#include <aws/cloudtrail/CloudTrailRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace CloudTrail
15{
16namespace Model
17{
18
27 {
28 public:
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "DeregisterOrganizationDelegatedAdmin"; }
36
37 AWS_CLOUDTRAIL_API Aws::String SerializePayload() const override;
38
40
41
43
47 inline const Aws::String& GetDelegatedAdminAccountId() const{ return m_delegatedAdminAccountId; }
48 inline bool DelegatedAdminAccountIdHasBeenSet() const { return m_delegatedAdminAccountIdHasBeenSet; }
49 inline void SetDelegatedAdminAccountId(const Aws::String& value) { m_delegatedAdminAccountIdHasBeenSet = true; m_delegatedAdminAccountId = value; }
50 inline void SetDelegatedAdminAccountId(Aws::String&& value) { m_delegatedAdminAccountIdHasBeenSet = true; m_delegatedAdminAccountId = std::move(value); }
51 inline void SetDelegatedAdminAccountId(const char* value) { m_delegatedAdminAccountIdHasBeenSet = true; m_delegatedAdminAccountId.assign(value); }
56 private:
57
58 Aws::String m_delegatedAdminAccountId;
59 bool m_delegatedAdminAccountIdHasBeenSet = false;
60 };
61
62} // namespace Model
63} // namespace CloudTrail
64} // namespace Aws
AWS_CLOUDTRAIL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeregisterOrganizationDelegatedAdminRequest & WithDelegatedAdminAccountId(const char *value)
DeregisterOrganizationDelegatedAdminRequest & WithDelegatedAdminAccountId(Aws::String &&value)
DeregisterOrganizationDelegatedAdminRequest & WithDelegatedAdminAccountId(const Aws::String &value)
AWS_CLOUDTRAIL_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String