AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DestinationResult.h
1
6#pragma once
7#include <aws/s3/S3_EXPORTS.h>
8#include <aws/s3/model/S3TablesBucketType.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Xml
17{
18 class XmlNode;
19} // namespace Xml
20} // namespace Utils
21namespace S3
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_S3_API DestinationResult() = default;
36 AWS_S3_API DestinationResult(const Aws::Utils::Xml::XmlNode& xmlNode);
38
39 AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
40
41
43
51 inline S3TablesBucketType GetTableBucketType() const { return m_tableBucketType; }
52 inline bool TableBucketTypeHasBeenSet() const { return m_tableBucketTypeHasBeenSet; }
53 inline void SetTableBucketType(S3TablesBucketType value) { m_tableBucketTypeHasBeenSet = true; m_tableBucketType = value; }
56
58
62 inline const Aws::String& GetTableBucketArn() const { return m_tableBucketArn; }
63 inline bool TableBucketArnHasBeenSet() const { return m_tableBucketArnHasBeenSet; }
64 template<typename TableBucketArnT = Aws::String>
65 void SetTableBucketArn(TableBucketArnT&& value) { m_tableBucketArnHasBeenSet = true; m_tableBucketArn = std::forward<TableBucketArnT>(value); }
66 template<typename TableBucketArnT = Aws::String>
67 DestinationResult& WithTableBucketArn(TableBucketArnT&& value) { SetTableBucketArn(std::forward<TableBucketArnT>(value)); return *this;}
69
71
75 inline const Aws::String& GetTableNamespace() const { return m_tableNamespace; }
76 inline bool TableNamespaceHasBeenSet() const { return m_tableNamespaceHasBeenSet; }
77 template<typename TableNamespaceT = Aws::String>
78 void SetTableNamespace(TableNamespaceT&& value) { m_tableNamespaceHasBeenSet = true; m_tableNamespace = std::forward<TableNamespaceT>(value); }
79 template<typename TableNamespaceT = Aws::String>
80 DestinationResult& WithTableNamespace(TableNamespaceT&& value) { SetTableNamespace(std::forward<TableNamespaceT>(value)); return *this;}
82 private:
83
85 bool m_tableBucketTypeHasBeenSet = false;
86
87 Aws::String m_tableBucketArn;
88 bool m_tableBucketArnHasBeenSet = false;
89
90 Aws::String m_tableNamespace;
91 bool m_tableNamespaceHasBeenSet = false;
92 };
93
94} // namespace Model
95} // namespace S3
96} // namespace Aws
S3TablesBucketType GetTableBucketType() const
void SetTableBucketArn(TableBucketArnT &&value)
const Aws::String & GetTableBucketArn() const
AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
void SetTableNamespace(TableNamespaceT &&value)
DestinationResult & WithTableBucketArn(TableBucketArnT &&value)
AWS_S3_API DestinationResult()=default
AWS_S3_API DestinationResult & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
const Aws::String & GetTableNamespace() const
AWS_S3_API DestinationResult(const Aws::Utils::Xml::XmlNode &xmlNode)
DestinationResult & WithTableBucketType(S3TablesBucketType value)
void SetTableBucketType(S3TablesBucketType value)
DestinationResult & WithTableNamespace(TableNamespaceT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String