AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
LakeFormationConfiguration.h
1
6#pragma once
7#include <aws/emr-containers/EMRContainers_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/emr-containers/model/SecureNamespaceInfo.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace EMRContainers
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_EMRCONTAINERS_API LakeFormationConfiguration();
39 AWS_EMRCONTAINERS_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::String& GetAuthorizedSessionTagValue() const{ return m_authorizedSessionTagValue; }
48 inline bool AuthorizedSessionTagValueHasBeenSet() const { return m_authorizedSessionTagValueHasBeenSet; }
49 inline void SetAuthorizedSessionTagValue(const Aws::String& value) { m_authorizedSessionTagValueHasBeenSet = true; m_authorizedSessionTagValue = value; }
50 inline void SetAuthorizedSessionTagValue(Aws::String&& value) { m_authorizedSessionTagValueHasBeenSet = true; m_authorizedSessionTagValue = std::move(value); }
51 inline void SetAuthorizedSessionTagValue(const char* value) { m_authorizedSessionTagValueHasBeenSet = true; m_authorizedSessionTagValue.assign(value); }
56
58
61 inline const SecureNamespaceInfo& GetSecureNamespaceInfo() const{ return m_secureNamespaceInfo; }
62 inline bool SecureNamespaceInfoHasBeenSet() const { return m_secureNamespaceInfoHasBeenSet; }
63 inline void SetSecureNamespaceInfo(const SecureNamespaceInfo& value) { m_secureNamespaceInfoHasBeenSet = true; m_secureNamespaceInfo = value; }
64 inline void SetSecureNamespaceInfo(SecureNamespaceInfo&& value) { m_secureNamespaceInfoHasBeenSet = true; m_secureNamespaceInfo = std::move(value); }
68
70
75 inline const Aws::String& GetQueryEngineRoleArn() const{ return m_queryEngineRoleArn; }
76 inline bool QueryEngineRoleArnHasBeenSet() const { return m_queryEngineRoleArnHasBeenSet; }
77 inline void SetQueryEngineRoleArn(const Aws::String& value) { m_queryEngineRoleArnHasBeenSet = true; m_queryEngineRoleArn = value; }
78 inline void SetQueryEngineRoleArn(Aws::String&& value) { m_queryEngineRoleArnHasBeenSet = true; m_queryEngineRoleArn = std::move(value); }
79 inline void SetQueryEngineRoleArn(const char* value) { m_queryEngineRoleArnHasBeenSet = true; m_queryEngineRoleArn.assign(value); }
81 inline LakeFormationConfiguration& WithQueryEngineRoleArn(Aws::String&& value) { SetQueryEngineRoleArn(std::move(value)); return *this;}
82 inline LakeFormationConfiguration& WithQueryEngineRoleArn(const char* value) { SetQueryEngineRoleArn(value); return *this;}
84 private:
85
86 Aws::String m_authorizedSessionTagValue;
87 bool m_authorizedSessionTagValueHasBeenSet = false;
88
89 SecureNamespaceInfo m_secureNamespaceInfo;
90 bool m_secureNamespaceInfoHasBeenSet = false;
91
92 Aws::String m_queryEngineRoleArn;
93 bool m_queryEngineRoleArnHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace EMRContainers
98} // namespace Aws
LakeFormationConfiguration & WithQueryEngineRoleArn(const char *value)
LakeFormationConfiguration & WithQueryEngineRoleArn(const Aws::String &value)
LakeFormationConfiguration & WithSecureNamespaceInfo(const SecureNamespaceInfo &value)
AWS_EMRCONTAINERS_API LakeFormationConfiguration(Aws::Utils::Json::JsonView jsonValue)
LakeFormationConfiguration & WithAuthorizedSessionTagValue(const Aws::String &value)
AWS_EMRCONTAINERS_API LakeFormationConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
LakeFormationConfiguration & WithQueryEngineRoleArn(Aws::String &&value)
void SetSecureNamespaceInfo(const SecureNamespaceInfo &value)
LakeFormationConfiguration & WithSecureNamespaceInfo(SecureNamespaceInfo &&value)
LakeFormationConfiguration & WithAuthorizedSessionTagValue(Aws::String &&value)
AWS_EMRCONTAINERS_API Aws::Utils::Json::JsonValue Jsonize() const
LakeFormationConfiguration & WithAuthorizedSessionTagValue(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue