AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
PutResourcePolicyRequest.h
1
6#pragma once
7#include <aws/ssm/SSM_EXPORTS.h>
8#include <aws/ssm/SSMRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace SSM
15{
16namespace Model
17{
18
22 {
23 public:
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 "PutResourcePolicy"; }
31
32 AWS_SSM_API Aws::String SerializePayload() const override;
33
35
36
38
42 inline const Aws::String& GetResourceArn() const{ return m_resourceArn; }
43 inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
44 inline void SetResourceArn(const Aws::String& value) { m_resourceArnHasBeenSet = true; m_resourceArn = value; }
45 inline void SetResourceArn(Aws::String&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::move(value); }
46 inline void SetResourceArn(const char* value) { m_resourceArnHasBeenSet = true; m_resourceArn.assign(value); }
47 inline PutResourcePolicyRequest& WithResourceArn(const Aws::String& value) { SetResourceArn(value); return *this;}
48 inline PutResourcePolicyRequest& WithResourceArn(Aws::String&& value) { SetResourceArn(std::move(value)); return *this;}
49 inline PutResourcePolicyRequest& WithResourceArn(const char* value) { SetResourceArn(value); return *this;}
51
53
56 inline const Aws::String& GetPolicy() const{ return m_policy; }
57 inline bool PolicyHasBeenSet() const { return m_policyHasBeenSet; }
58 inline void SetPolicy(const Aws::String& value) { m_policyHasBeenSet = true; m_policy = value; }
59 inline void SetPolicy(Aws::String&& value) { m_policyHasBeenSet = true; m_policy = std::move(value); }
60 inline void SetPolicy(const char* value) { m_policyHasBeenSet = true; m_policy.assign(value); }
61 inline PutResourcePolicyRequest& WithPolicy(const Aws::String& value) { SetPolicy(value); return *this;}
62 inline PutResourcePolicyRequest& WithPolicy(Aws::String&& value) { SetPolicy(std::move(value)); return *this;}
63 inline PutResourcePolicyRequest& WithPolicy(const char* value) { SetPolicy(value); return *this;}
65
67
70 inline const Aws::String& GetPolicyId() const{ return m_policyId; }
71 inline bool PolicyIdHasBeenSet() const { return m_policyIdHasBeenSet; }
72 inline void SetPolicyId(const Aws::String& value) { m_policyIdHasBeenSet = true; m_policyId = value; }
73 inline void SetPolicyId(Aws::String&& value) { m_policyIdHasBeenSet = true; m_policyId = std::move(value); }
74 inline void SetPolicyId(const char* value) { m_policyIdHasBeenSet = true; m_policyId.assign(value); }
75 inline PutResourcePolicyRequest& WithPolicyId(const Aws::String& value) { SetPolicyId(value); return *this;}
76 inline PutResourcePolicyRequest& WithPolicyId(Aws::String&& value) { SetPolicyId(std::move(value)); return *this;}
77 inline PutResourcePolicyRequest& WithPolicyId(const char* value) { SetPolicyId(value); return *this;}
79
81
86 inline const Aws::String& GetPolicyHash() const{ return m_policyHash; }
87 inline bool PolicyHashHasBeenSet() const { return m_policyHashHasBeenSet; }
88 inline void SetPolicyHash(const Aws::String& value) { m_policyHashHasBeenSet = true; m_policyHash = value; }
89 inline void SetPolicyHash(Aws::String&& value) { m_policyHashHasBeenSet = true; m_policyHash = std::move(value); }
90 inline void SetPolicyHash(const char* value) { m_policyHashHasBeenSet = true; m_policyHash.assign(value); }
91 inline PutResourcePolicyRequest& WithPolicyHash(const Aws::String& value) { SetPolicyHash(value); return *this;}
92 inline PutResourcePolicyRequest& WithPolicyHash(Aws::String&& value) { SetPolicyHash(std::move(value)); return *this;}
93 inline PutResourcePolicyRequest& WithPolicyHash(const char* value) { SetPolicyHash(value); return *this;}
95 private:
96
97 Aws::String m_resourceArn;
98 bool m_resourceArnHasBeenSet = false;
99
100 Aws::String m_policy;
101 bool m_policyHasBeenSet = false;
102
103 Aws::String m_policyId;
104 bool m_policyIdHasBeenSet = false;
105
106 Aws::String m_policyHash;
107 bool m_policyHashHasBeenSet = false;
108 };
109
110} // namespace Model
111} // namespace SSM
112} // namespace Aws
AWS_SSM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
PutResourcePolicyRequest & WithPolicy(Aws::String &&value)
PutResourcePolicyRequest & WithPolicy(const char *value)
PutResourcePolicyRequest & WithResourceArn(Aws::String &&value)
PutResourcePolicyRequest & WithPolicyHash(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
PutResourcePolicyRequest & WithPolicyId(Aws::String &&value)
PutResourcePolicyRequest & WithResourceArn(const Aws::String &value)
PutResourcePolicyRequest & WithPolicyId(const Aws::String &value)
PutResourcePolicyRequest & WithPolicyHash(const Aws::String &value)
PutResourcePolicyRequest & WithPolicyId(const char *value)
PutResourcePolicyRequest & WithPolicyHash(const char *value)
PutResourcePolicyRequest & WithPolicy(const Aws::String &value)
AWS_SSM_API Aws::String SerializePayload() const override
PutResourcePolicyRequest & WithResourceArn(const char *value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String