AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
DatabaseTableOutputOptions.h
1
6#pragma once
7#include <aws/databrew/GlueDataBrew_EXPORTS.h>
8#include <aws/databrew/model/S3Location.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace GlueDataBrew
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_GLUEDATABREW_API DatabaseTableOutputOptions() = default;
39 AWS_GLUEDATABREW_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const S3Location& GetTempDirectory() const { return m_tempDirectory; }
48 inline bool TempDirectoryHasBeenSet() const { return m_tempDirectoryHasBeenSet; }
49 template<typename TempDirectoryT = S3Location>
50 void SetTempDirectory(TempDirectoryT&& value) { m_tempDirectoryHasBeenSet = true; m_tempDirectory = std::forward<TempDirectoryT>(value); }
51 template<typename TempDirectoryT = S3Location>
52 DatabaseTableOutputOptions& WithTempDirectory(TempDirectoryT&& value) { SetTempDirectory(std::forward<TempDirectoryT>(value)); return *this;}
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) { m_tableNameHasBeenSet = true; m_tableName = std::forward<TableNameT>(value); }
63 template<typename TableNameT = Aws::String>
64 DatabaseTableOutputOptions& WithTableName(TableNameT&& value) { SetTableName(std::forward<TableNameT>(value)); return *this;}
66 private:
67
68 S3Location m_tempDirectory;
69 bool m_tempDirectoryHasBeenSet = false;
70
71 Aws::String m_tableName;
72 bool m_tableNameHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace GlueDataBrew
77} // 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