AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; }
42 inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); }
43 inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); }
44 inline UpdateResourceRequest& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
45 inline UpdateResourceRequest& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
46 inline UpdateResourceRequest& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
48
50
53 inline const Aws::String& GetResourceArn() const{ return m_resourceArn; }
54 inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
55 inline void SetResourceArn(const Aws::String& value) { m_resourceArnHasBeenSet = true; m_resourceArn = value; }
56 inline void SetResourceArn(Aws::String&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::move(value); }
57 inline void SetResourceArn(const char* value) { m_resourceArnHasBeenSet = true; m_resourceArn.assign(value); }
58 inline UpdateResourceRequest& WithResourceArn(const Aws::String& value) { SetResourceArn(value); return *this;}
59 inline UpdateResourceRequest& WithResourceArn(Aws::String&& value) { SetResourceArn(std::move(value)); return *this;}
60 inline UpdateResourceRequest& WithResourceArn(const char* value) { SetResourceArn(value); return *this;}
62
64
67 inline bool GetWithFederation() const{ return m_withFederation; }
68 inline bool WithFederationHasBeenSet() const { return m_withFederationHasBeenSet; }
69 inline void SetWithFederation(bool value) { m_withFederationHasBeenSet = true; m_withFederation = value; }
70 inline UpdateResourceRequest& WithWithFederation(bool value) { SetWithFederation(value); return *this;}
72
74
79 inline bool GetHybridAccessEnabled() const{ return m_hybridAccessEnabled; }
80 inline bool HybridAccessEnabledHasBeenSet() const { return m_hybridAccessEnabledHasBeenSet; }
81 inline void SetHybridAccessEnabled(bool value) { m_hybridAccessEnabledHasBeenSet = true; m_hybridAccessEnabled = value; }
82 inline UpdateResourceRequest& WithHybridAccessEnabled(bool value) { SetHybridAccessEnabled(value); return *this;}
84 private:
85
86 Aws::String m_roleArn;
87 bool m_roleArnHasBeenSet = false;
88
89 Aws::String m_resourceArn;
90 bool m_resourceArnHasBeenSet = false;
91
92 bool m_withFederation;
93 bool m_withFederationHasBeenSet = false;
94
95 bool m_hybridAccessEnabled;
96 bool m_hybridAccessEnabledHasBeenSet = false;
97 };
98
99} // namespace Model
100} // namespace LakeFormation
101} // namespace Aws
UpdateResourceRequest & WithResourceArn(const Aws::String &value)
UpdateResourceRequest & WithRoleArn(const char *value)
UpdateResourceRequest & WithHybridAccessEnabled(bool value)
UpdateResourceRequest & WithRoleArn(Aws::String &&value)
UpdateResourceRequest & WithResourceArn(const char *value)
UpdateResourceRequest & WithResourceArn(Aws::String &&value)
UpdateResourceRequest & WithRoleArn(const Aws::String &value)
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