AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateDataLakeRequest.h
1
6#pragma once
7#include <aws/securitylake/SecurityLake_EXPORTS.h>
8#include <aws/securitylake/SecurityLakeRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/securitylake/model/DataLakeConfiguration.h>
12#include <utility>
13
14namespace Aws
15{
16namespace SecurityLake
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_SECURITYLAKE_API UpdateDataLakeRequest() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "UpdateDataLake"; }
33
34 AWS_SECURITYLAKE_API Aws::String SerializePayload() const override;
35
36
38
42 inline const Aws::Vector<DataLakeConfiguration>& GetConfigurations() const { return m_configurations; }
43 inline bool ConfigurationsHasBeenSet() const { return m_configurationsHasBeenSet; }
44 template<typename ConfigurationsT = Aws::Vector<DataLakeConfiguration>>
45 void SetConfigurations(ConfigurationsT&& value) { m_configurationsHasBeenSet = true; m_configurations = std::forward<ConfigurationsT>(value); }
46 template<typename ConfigurationsT = Aws::Vector<DataLakeConfiguration>>
47 UpdateDataLakeRequest& WithConfigurations(ConfigurationsT&& value) { SetConfigurations(std::forward<ConfigurationsT>(value)); return *this;}
48 template<typename ConfigurationsT = DataLakeConfiguration>
49 UpdateDataLakeRequest& AddConfigurations(ConfigurationsT&& value) { m_configurationsHasBeenSet = true; m_configurations.emplace_back(std::forward<ConfigurationsT>(value)); return *this; }
51
53
58 inline const Aws::String& GetMetaStoreManagerRoleArn() const { return m_metaStoreManagerRoleArn; }
59 inline bool MetaStoreManagerRoleArnHasBeenSet() const { return m_metaStoreManagerRoleArnHasBeenSet; }
60 template<typename MetaStoreManagerRoleArnT = Aws::String>
61 void SetMetaStoreManagerRoleArn(MetaStoreManagerRoleArnT&& value) { m_metaStoreManagerRoleArnHasBeenSet = true; m_metaStoreManagerRoleArn = std::forward<MetaStoreManagerRoleArnT>(value); }
62 template<typename MetaStoreManagerRoleArnT = Aws::String>
63 UpdateDataLakeRequest& WithMetaStoreManagerRoleArn(MetaStoreManagerRoleArnT&& value) { SetMetaStoreManagerRoleArn(std::forward<MetaStoreManagerRoleArnT>(value)); return *this;}
65 private:
66
68 bool m_configurationsHasBeenSet = false;
69
70 Aws::String m_metaStoreManagerRoleArn;
71 bool m_metaStoreManagerRoleArnHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace SecurityLake
76} // namespace Aws
UpdateDataLakeRequest & WithConfigurations(ConfigurationsT &&value)
UpdateDataLakeRequest & WithMetaStoreManagerRoleArn(MetaStoreManagerRoleArnT &&value)
const Aws::Vector< DataLakeConfiguration > & GetConfigurations() const
UpdateDataLakeRequest & AddConfigurations(ConfigurationsT &&value)
AWS_SECURITYLAKE_API UpdateDataLakeRequest()=default
void SetMetaStoreManagerRoleArn(MetaStoreManagerRoleArnT &&value)
AWS_SECURITYLAKE_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector