AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DetachPolicyRequest.h
1
6#pragma once
7#include <aws/organizations/Organizations_EXPORTS.h>
8#include <aws/organizations/OrganizationsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Organizations
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_ORGANIZATIONS_API DetachPolicyRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DetachPolicy"; }
31
32 AWS_ORGANIZATIONS_API Aws::String SerializePayload() const override;
33
34 AWS_ORGANIZATIONS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
35
36
38
45 inline const Aws::String& GetPolicyId() const{ return m_policyId; }
46 inline bool PolicyIdHasBeenSet() const { return m_policyIdHasBeenSet; }
47 inline void SetPolicyId(const Aws::String& value) { m_policyIdHasBeenSet = true; m_policyId = value; }
48 inline void SetPolicyId(Aws::String&& value) { m_policyIdHasBeenSet = true; m_policyId = std::move(value); }
49 inline void SetPolicyId(const char* value) { m_policyIdHasBeenSet = true; m_policyId.assign(value); }
50 inline DetachPolicyRequest& WithPolicyId(const Aws::String& value) { SetPolicyId(value); return *this;}
51 inline DetachPolicyRequest& WithPolicyId(Aws::String&& value) { SetPolicyId(std::move(value)); return *this;}
52 inline DetachPolicyRequest& WithPolicyId(const char* value) { SetPolicyId(value); return *this;}
54
56
69 inline const Aws::String& GetTargetId() const{ return m_targetId; }
70 inline bool TargetIdHasBeenSet() const { return m_targetIdHasBeenSet; }
71 inline void SetTargetId(const Aws::String& value) { m_targetIdHasBeenSet = true; m_targetId = value; }
72 inline void SetTargetId(Aws::String&& value) { m_targetIdHasBeenSet = true; m_targetId = std::move(value); }
73 inline void SetTargetId(const char* value) { m_targetIdHasBeenSet = true; m_targetId.assign(value); }
74 inline DetachPolicyRequest& WithTargetId(const Aws::String& value) { SetTargetId(value); return *this;}
75 inline DetachPolicyRequest& WithTargetId(Aws::String&& value) { SetTargetId(std::move(value)); return *this;}
76 inline DetachPolicyRequest& WithTargetId(const char* value) { SetTargetId(value); return *this;}
78 private:
79
80 Aws::String m_policyId;
81 bool m_policyIdHasBeenSet = false;
82
83 Aws::String m_targetId;
84 bool m_targetIdHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace Organizations
89} // namespace Aws
DetachPolicyRequest & WithPolicyId(const Aws::String &value)
DetachPolicyRequest & WithTargetId(Aws::String &&value)
AWS_ORGANIZATIONS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DetachPolicyRequest & WithPolicyId(const char *value)
DetachPolicyRequest & WithPolicyId(Aws::String &&value)
AWS_ORGANIZATIONS_API Aws::String SerializePayload() const override
DetachPolicyRequest & WithTargetId(const char *value)
DetachPolicyRequest & WithTargetId(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String