AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteDataLakeRequest.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 <utility>
12
13namespace Aws
14{
15namespace SecurityLake
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_SECURITYLAKE_API DeleteDataLakeRequest();
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "DeleteDataLake"; }
32
33 AWS_SECURITYLAKE_API Aws::String SerializePayload() const override;
34
35
37
40 inline const Aws::Vector<Aws::String>& GetRegions() const{ return m_regions; }
41 inline bool RegionsHasBeenSet() const { return m_regionsHasBeenSet; }
42 inline void SetRegions(const Aws::Vector<Aws::String>& value) { m_regionsHasBeenSet = true; m_regions = value; }
43 inline void SetRegions(Aws::Vector<Aws::String>&& value) { m_regionsHasBeenSet = true; m_regions = std::move(value); }
44 inline DeleteDataLakeRequest& WithRegions(const Aws::Vector<Aws::String>& value) { SetRegions(value); return *this;}
45 inline DeleteDataLakeRequest& WithRegions(Aws::Vector<Aws::String>&& value) { SetRegions(std::move(value)); return *this;}
46 inline DeleteDataLakeRequest& AddRegions(const Aws::String& value) { m_regionsHasBeenSet = true; m_regions.push_back(value); return *this; }
47 inline DeleteDataLakeRequest& AddRegions(Aws::String&& value) { m_regionsHasBeenSet = true; m_regions.push_back(std::move(value)); return *this; }
48 inline DeleteDataLakeRequest& AddRegions(const char* value) { m_regionsHasBeenSet = true; m_regions.push_back(value); return *this; }
50 private:
51
53 bool m_regionsHasBeenSet = false;
54 };
55
56} // namespace Model
57} // namespace SecurityLake
58} // namespace Aws
const Aws::Vector< Aws::String > & GetRegions() const
DeleteDataLakeRequest & WithRegions(Aws::Vector< Aws::String > &&value)
DeleteDataLakeRequest & WithRegions(const Aws::Vector< Aws::String > &value)
AWS_SECURITYLAKE_API Aws::String SerializePayload() const override
DeleteDataLakeRequest & AddRegions(Aws::String &&value)
DeleteDataLakeRequest & AddRegions(const char *value)
void SetRegions(Aws::Vector< Aws::String > &&value)
virtual const char * GetServiceRequestName() const override
void SetRegions(const Aws::Vector< Aws::String > &value)
DeleteDataLakeRequest & AddRegions(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector