AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateResourcePolicyRequest.h
1
6#pragma once
7#include <aws/lexv2-models/LexModelsV2_EXPORTS.h>
8#include <aws/lexv2-models/LexModelsV2Request.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace LexModelsV2
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_LEXMODELSV2_API UpdateResourcePolicyRequest() = default;
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "UpdateResourcePolicy"; }
35
36 AWS_LEXMODELSV2_API Aws::String SerializePayload() const override;
37
38 AWS_LEXMODELSV2_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
46 inline const Aws::String& GetResourceArn() const { return m_resourceArn; }
47 inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
48 template<typename ResourceArnT = Aws::String>
49 void SetResourceArn(ResourceArnT&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::forward<ResourceArnT>(value); }
50 template<typename ResourceArnT = Aws::String>
51 UpdateResourcePolicyRequest& WithResourceArn(ResourceArnT&& value) { SetResourceArn(std::forward<ResourceArnT>(value)); return *this;}
53
55
64 inline const Aws::String& GetPolicy() const { return m_policy; }
65 inline bool PolicyHasBeenSet() const { return m_policyHasBeenSet; }
66 template<typename PolicyT = Aws::String>
67 void SetPolicy(PolicyT&& value) { m_policyHasBeenSet = true; m_policy = std::forward<PolicyT>(value); }
68 template<typename PolicyT = Aws::String>
69 UpdateResourcePolicyRequest& WithPolicy(PolicyT&& value) { SetPolicy(std::forward<PolicyT>(value)); return *this;}
71
73
79 inline const Aws::String& GetExpectedRevisionId() const { return m_expectedRevisionId; }
80 inline bool ExpectedRevisionIdHasBeenSet() const { return m_expectedRevisionIdHasBeenSet; }
81 template<typename ExpectedRevisionIdT = Aws::String>
82 void SetExpectedRevisionId(ExpectedRevisionIdT&& value) { m_expectedRevisionIdHasBeenSet = true; m_expectedRevisionId = std::forward<ExpectedRevisionIdT>(value); }
83 template<typename ExpectedRevisionIdT = Aws::String>
84 UpdateResourcePolicyRequest& WithExpectedRevisionId(ExpectedRevisionIdT&& value) { SetExpectedRevisionId(std::forward<ExpectedRevisionIdT>(value)); return *this;}
86 private:
87
88 Aws::String m_resourceArn;
89 bool m_resourceArnHasBeenSet = false;
90
91 Aws::String m_policy;
92 bool m_policyHasBeenSet = false;
93
94 Aws::String m_expectedRevisionId;
95 bool m_expectedRevisionIdHasBeenSet = false;
96 };
97
98} // namespace Model
99} // namespace LexModelsV2
100} // namespace Aws
AWS_LEXMODELSV2_API UpdateResourcePolicyRequest()=default
UpdateResourcePolicyRequest & WithPolicy(PolicyT &&value)
UpdateResourcePolicyRequest & WithResourceArn(ResourceArnT &&value)
AWS_LEXMODELSV2_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
UpdateResourcePolicyRequest & WithExpectedRevisionId(ExpectedRevisionIdT &&value)
AWS_LEXMODELSV2_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String