AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetConfigurations(const Aws::Vector<DataLakeConfiguration>& value) { m_configurationsHasBeenSet = true; m_configurations = value; }
45 inline void SetConfigurations(Aws::Vector<DataLakeConfiguration>&& value) { m_configurationsHasBeenSet = true; m_configurations = std::move(value); }
48 inline UpdateDataLakeRequest& AddConfigurations(const DataLakeConfiguration& value) { m_configurationsHasBeenSet = true; m_configurations.push_back(value); return *this; }
49 inline UpdateDataLakeRequest& AddConfigurations(DataLakeConfiguration&& value) { m_configurationsHasBeenSet = true; m_configurations.push_back(std::move(value)); return *this; }
51
53
58 inline const Aws::String& GetMetaStoreManagerRoleArn() const{ return m_metaStoreManagerRoleArn; }
59 inline bool MetaStoreManagerRoleArnHasBeenSet() const { return m_metaStoreManagerRoleArnHasBeenSet; }
60 inline void SetMetaStoreManagerRoleArn(const Aws::String& value) { m_metaStoreManagerRoleArnHasBeenSet = true; m_metaStoreManagerRoleArn = value; }
61 inline void SetMetaStoreManagerRoleArn(Aws::String&& value) { m_metaStoreManagerRoleArnHasBeenSet = true; m_metaStoreManagerRoleArn = std::move(value); }
62 inline void SetMetaStoreManagerRoleArn(const char* value) { m_metaStoreManagerRoleArnHasBeenSet = true; m_metaStoreManagerRoleArn.assign(value); }
65 inline UpdateDataLakeRequest& WithMetaStoreManagerRoleArn(const char* value) { SetMetaStoreManagerRoleArn(value); return *this;}
67 private:
68
70 bool m_configurationsHasBeenSet = false;
71
72 Aws::String m_metaStoreManagerRoleArn;
73 bool m_metaStoreManagerRoleArnHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace SecurityLake
78} // namespace Aws
UpdateDataLakeRequest & WithConfigurations(const Aws::Vector< DataLakeConfiguration > &value)
UpdateDataLakeRequest & WithMetaStoreManagerRoleArn(Aws::String &&value)
void SetConfigurations(const Aws::Vector< DataLakeConfiguration > &value)
void SetMetaStoreManagerRoleArn(const Aws::String &value)
UpdateDataLakeRequest & WithConfigurations(Aws::Vector< DataLakeConfiguration > &&value)
UpdateDataLakeRequest & WithMetaStoreManagerRoleArn(const Aws::String &value)
const Aws::Vector< DataLakeConfiguration > & GetConfigurations() const
UpdateDataLakeRequest & AddConfigurations(DataLakeConfiguration &&value)
UpdateDataLakeRequest & AddConfigurations(const DataLakeConfiguration &value)
void SetConfigurations(Aws::Vector< DataLakeConfiguration > &&value)
UpdateDataLakeRequest & WithMetaStoreManagerRoleArn(const char *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