AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
UpdateResourceRequest.h
1
6#pragma once
7#include <aws/lakeformation/LakeFormation_EXPORTS.h>
8#include <aws/lakeformation/LakeFormationRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace LakeFormation
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_LAKEFORMATION_API UpdateResourceRequest() = default;
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 "UpdateResource"; }
31
32 AWS_LAKEFORMATION_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
40 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
41 template<typename RoleArnT = Aws::String>
42 void SetRoleArn(RoleArnT&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::forward<RoleArnT>(value); }
43 template<typename RoleArnT = Aws::String>
44 UpdateResourceRequest& WithRoleArn(RoleArnT&& value) { SetRoleArn(std::forward<RoleArnT>(value)); return *this;}
46
48
51 inline const Aws::String& GetResourceArn() const { return m_resourceArn; }
52 inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
53 template<typename ResourceArnT = Aws::String>
54 void SetResourceArn(ResourceArnT&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::forward<ResourceArnT>(value); }
55 template<typename ResourceArnT = Aws::String>
56 UpdateResourceRequest& WithResourceArn(ResourceArnT&& value) { SetResourceArn(std::forward<ResourceArnT>(value)); return *this;}
58
60
63 inline bool GetWithFederation() const { return m_withFederation; }
64 inline bool WithFederationHasBeenSet() const { return m_withFederationHasBeenSet; }
65 inline void SetWithFederation(bool value) { m_withFederationHasBeenSet = true; m_withFederation = value; }
66 inline UpdateResourceRequest& WithWithFederation(bool value) { SetWithFederation(value); return *this;}
68
70
75 inline bool GetHybridAccessEnabled() const { return m_hybridAccessEnabled; }
76 inline bool HybridAccessEnabledHasBeenSet() const { return m_hybridAccessEnabledHasBeenSet; }
77 inline void SetHybridAccessEnabled(bool value) { m_hybridAccessEnabledHasBeenSet = true; m_hybridAccessEnabled = value; }
78 inline UpdateResourceRequest& WithHybridAccessEnabled(bool value) { SetHybridAccessEnabled(value); return *this;}
80 private:
81
82 Aws::String m_roleArn;
83 bool m_roleArnHasBeenSet = false;
84
85 Aws::String m_resourceArn;
86 bool m_resourceArnHasBeenSet = false;
87
88 bool m_withFederation{false};
89 bool m_withFederationHasBeenSet = false;
90
91 bool m_hybridAccessEnabled{false};
92 bool m_hybridAccessEnabledHasBeenSet = false;
93 };
94
95} // namespace Model
96} // namespace LakeFormation
97} // namespace Aws
UpdateResourceRequest & WithResourceArn(ResourceArnT &&value)
UpdateResourceRequest & WithRoleArn(RoleArnT &&value)
UpdateResourceRequest & WithHybridAccessEnabled(bool value)
AWS_LAKEFORMATION_API UpdateResourceRequest()=default
virtual const char * GetServiceRequestName() const override
UpdateResourceRequest & WithWithFederation(bool value)
AWS_LAKEFORMATION_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String