AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
RegisterResourceRequest.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 RegisterResourceRequest();
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 "RegisterResource"; }
31
32 AWS_LAKEFORMATION_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetResourceArn() const{ return m_resourceArn; }
40 inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
41 inline void SetResourceArn(const Aws::String& value) { m_resourceArnHasBeenSet = true; m_resourceArn = value; }
42 inline void SetResourceArn(Aws::String&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::move(value); }
43 inline void SetResourceArn(const char* value) { m_resourceArnHasBeenSet = true; m_resourceArn.assign(value); }
44 inline RegisterResourceRequest& WithResourceArn(const Aws::String& value) { SetResourceArn(value); return *this;}
45 inline RegisterResourceRequest& WithResourceArn(Aws::String&& value) { SetResourceArn(std::move(value)); return *this;}
46 inline RegisterResourceRequest& WithResourceArn(const char* value) { SetResourceArn(value); return *this;}
48
50
58 inline bool GetUseServiceLinkedRole() const{ return m_useServiceLinkedRole; }
59 inline bool UseServiceLinkedRoleHasBeenSet() const { return m_useServiceLinkedRoleHasBeenSet; }
60 inline void SetUseServiceLinkedRole(bool value) { m_useServiceLinkedRoleHasBeenSet = true; m_useServiceLinkedRole = value; }
63
65
68 inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
69 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
70 inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; }
71 inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); }
72 inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); }
73 inline RegisterResourceRequest& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
74 inline RegisterResourceRequest& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
75 inline RegisterResourceRequest& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
77
79
82 inline bool GetWithFederation() const{ return m_withFederation; }
83 inline bool WithFederationHasBeenSet() const { return m_withFederationHasBeenSet; }
84 inline void SetWithFederation(bool value) { m_withFederationHasBeenSet = true; m_withFederation = value; }
85 inline RegisterResourceRequest& WithWithFederation(bool value) { SetWithFederation(value); return *this;}
87
89
94 inline bool GetHybridAccessEnabled() const{ return m_hybridAccessEnabled; }
95 inline bool HybridAccessEnabledHasBeenSet() const { return m_hybridAccessEnabledHasBeenSet; }
96 inline void SetHybridAccessEnabled(bool value) { m_hybridAccessEnabledHasBeenSet = true; m_hybridAccessEnabled = value; }
97 inline RegisterResourceRequest& WithHybridAccessEnabled(bool value) { SetHybridAccessEnabled(value); return *this;}
99 private:
100
101 Aws::String m_resourceArn;
102 bool m_resourceArnHasBeenSet = false;
103
104 bool m_useServiceLinkedRole;
105 bool m_useServiceLinkedRoleHasBeenSet = false;
106
107 Aws::String m_roleArn;
108 bool m_roleArnHasBeenSet = false;
109
110 bool m_withFederation;
111 bool m_withFederationHasBeenSet = false;
112
113 bool m_hybridAccessEnabled;
114 bool m_hybridAccessEnabledHasBeenSet = false;
115 };
116
117} // namespace Model
118} // namespace LakeFormation
119} // namespace Aws
RegisterResourceRequest & WithResourceArn(Aws::String &&value)
RegisterResourceRequest & WithRoleArn(const char *value)
RegisterResourceRequest & WithResourceArn(const Aws::String &value)
AWS_LAKEFORMATION_API Aws::String SerializePayload() const override
RegisterResourceRequest & WithUseServiceLinkedRole(bool value)
RegisterResourceRequest & WithHybridAccessEnabled(bool value)
RegisterResourceRequest & WithWithFederation(bool value)
RegisterResourceRequest & WithRoleArn(const Aws::String &value)
RegisterResourceRequest & WithRoleArn(Aws::String &&value)
RegisterResourceRequest & WithResourceArn(const char *value)
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String