AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
DatabaseTableOutputOptions.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/databrew/GlueDataBrew_EXPORTS.h>
9#include <aws/databrew/model/S3Location.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace GlueDataBrew {
21namespace Model {
22
30 public:
31 AWS_GLUEDATABREW_API DatabaseTableOutputOptions() = default;
34 AWS_GLUEDATABREW_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
41 inline const S3Location& GetTempDirectory() const { return m_tempDirectory; }
42 inline bool TempDirectoryHasBeenSet() const { return m_tempDirectoryHasBeenSet; }
43 template <typename TempDirectoryT = S3Location>
44 void SetTempDirectory(TempDirectoryT&& value) {
45 m_tempDirectoryHasBeenSet = true;
46 m_tempDirectory = std::forward<TempDirectoryT>(value);
47 }
48 template <typename TempDirectoryT = S3Location>
50 SetTempDirectory(std::forward<TempDirectoryT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::String& GetTableName() const { return m_tableName; }
60 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
61 template <typename TableNameT = Aws::String>
62 void SetTableName(TableNameT&& value) {
63 m_tableNameHasBeenSet = true;
64 m_tableName = std::forward<TableNameT>(value);
65 }
66 template <typename TableNameT = Aws::String>
68 SetTableName(std::forward<TableNameT>(value));
69 return *this;
70 }
72 private:
73 S3Location m_tempDirectory;
74
75 Aws::String m_tableName;
76 bool m_tempDirectoryHasBeenSet = false;
77 bool m_tableNameHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace GlueDataBrew
82} // namespace Aws
AWS_GLUEDATABREW_API Aws::Utils::Json::JsonValue Jsonize() const
DatabaseTableOutputOptions & WithTempDirectory(TempDirectoryT &&value)
AWS_GLUEDATABREW_API DatabaseTableOutputOptions()=default
AWS_GLUEDATABREW_API DatabaseTableOutputOptions(Aws::Utils::Json::JsonView jsonValue)
DatabaseTableOutputOptions & WithTableName(TableNameT &&value)
AWS_GLUEDATABREW_API DatabaseTableOutputOptions & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue