AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
S3TablesDestination.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/s3/S3_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Xml {
15class XmlNode;
16} // namespace Xml
17} // namespace Utils
18namespace S3 {
19namespace Model {
20
36 public:
37 AWS_S3_API S3TablesDestination() = default;
40
41 AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
42
44
50 inline const Aws::String& GetTableBucketArn() const { return m_tableBucketArn; }
51 inline bool TableBucketArnHasBeenSet() const { return m_tableBucketArnHasBeenSet; }
52 template <typename TableBucketArnT = Aws::String>
53 void SetTableBucketArn(TableBucketArnT&& value) {
54 m_tableBucketArnHasBeenSet = true;
55 m_tableBucketArn = std::forward<TableBucketArnT>(value);
56 }
57 template <typename TableBucketArnT = Aws::String>
58 S3TablesDestination& WithTableBucketArn(TableBucketArnT&& value) {
59 SetTableBucketArn(std::forward<TableBucketArnT>(value));
60 return *this;
61 }
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) {
74 m_tableNameHasBeenSet = true;
75 m_tableName = std::forward<TableNameT>(value);
76 }
77 template <typename TableNameT = Aws::String>
78 S3TablesDestination& WithTableName(TableNameT&& value) {
79 SetTableName(std::forward<TableNameT>(value));
80 return *this;
81 }
83 private:
84 Aws::String m_tableBucketArn;
85
86 Aws::String m_tableName;
87 bool m_tableBucketArnHasBeenSet = false;
88 bool m_tableNameHasBeenSet = false;
89};
90
91} // namespace Model
92} // namespace S3
93} // 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