AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
S3TablesDestination.h
1
6#pragma once
7#include <aws/s3/S3_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Xml
16{
17 class XmlNode;
18} // namespace Xml
19} // namespace Utils
20namespace S3
21{
22namespace Model
23{
24
40 {
41 public:
42 AWS_S3_API S3TablesDestination() = default;
45
46 AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
47
48
50
56 inline const Aws::String& GetTableBucketArn() const { return m_tableBucketArn; }
57 inline bool TableBucketArnHasBeenSet() const { return m_tableBucketArnHasBeenSet; }
58 template<typename TableBucketArnT = Aws::String>
59 void SetTableBucketArn(TableBucketArnT&& value) { m_tableBucketArnHasBeenSet = true; m_tableBucketArn = std::forward<TableBucketArnT>(value); }
60 template<typename TableBucketArnT = Aws::String>
61 S3TablesDestination& WithTableBucketArn(TableBucketArnT&& value) { SetTableBucketArn(std::forward<TableBucketArnT>(value)); return *this;}
63
65
70 inline const Aws::String& GetTableName() const { return m_tableName; }
71 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
72 template<typename TableNameT = Aws::String>
73 void SetTableName(TableNameT&& value) { m_tableNameHasBeenSet = true; m_tableName = std::forward<TableNameT>(value); }
74 template<typename TableNameT = Aws::String>
75 S3TablesDestination& WithTableName(TableNameT&& value) { SetTableName(std::forward<TableNameT>(value)); return *this;}
77 private:
78
79 Aws::String m_tableBucketArn;
80 bool m_tableBucketArnHasBeenSet = false;
81
82 Aws::String m_tableName;
83 bool m_tableNameHasBeenSet = false;
84 };
85
86} // namespace Model
87} // namespace S3
88} // namespace Aws
S3TablesDestination & WithTableBucketArn(TableBucketArnT &&value)
AWS_S3_API S3TablesDestination & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_S3_API S3TablesDestination()=default
const Aws::String & GetTableBucketArn() const
void SetTableBucketArn(TableBucketArnT &&value)
AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
AWS_S3_API S3TablesDestination(const Aws::Utils::Xml::XmlNode &xmlNode)
const Aws::String & GetTableName() const
S3TablesDestination & WithTableName(TableNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String