AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetTempDirectory(const S3Location& value) { m_tempDirectoryHasBeenSet = true; m_tempDirectory = value; }
50 inline void SetTempDirectory(S3Location&& value) { m_tempDirectoryHasBeenSet = true; m_tempDirectory = std::move(value); }
51 inline DatabaseTableOutputOptions& WithTempDirectory(const S3Location& value) { SetTempDirectory(value); return *this;}
52 inline DatabaseTableOutputOptions& WithTempDirectory(S3Location&& value) { SetTempDirectory(std::move(value)); return *this;}
54
56
59 inline const Aws::String& GetTableName() const{ return m_tableName; }
60 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
61 inline void SetTableName(const Aws::String& value) { m_tableNameHasBeenSet = true; m_tableName = value; }
62 inline void SetTableName(Aws::String&& value) { m_tableNameHasBeenSet = true; m_tableName = std::move(value); }
63 inline void SetTableName(const char* value) { m_tableNameHasBeenSet = true; m_tableName.assign(value); }
64 inline DatabaseTableOutputOptions& WithTableName(const Aws::String& value) { SetTableName(value); return *this;}
65 inline DatabaseTableOutputOptions& WithTableName(Aws::String&& value) { SetTableName(std::move(value)); return *this;}
66 inline DatabaseTableOutputOptions& WithTableName(const char* value) { SetTableName(value); return *this;}
68 private:
69
70 S3Location m_tempDirectory;
71 bool m_tempDirectoryHasBeenSet = false;
72
73 Aws::String m_tableName;
74 bool m_tableNameHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace GlueDataBrew
79} // namespace Aws
DatabaseTableOutputOptions & WithTableName(const Aws::String &value)
AWS_GLUEDATABREW_API Aws::Utils::Json::JsonValue Jsonize() const
DatabaseTableOutputOptions & WithTableName(Aws::String &&value)
DatabaseTableOutputOptions & WithTempDirectory(const S3Location &value)
DatabaseTableOutputOptions & WithTableName(const char *value)
AWS_GLUEDATABREW_API DatabaseTableOutputOptions(Aws::Utils::Json::JsonView jsonValue)
AWS_GLUEDATABREW_API DatabaseTableOutputOptions & operator=(Aws::Utils::Json::JsonView jsonValue)
DatabaseTableOutputOptions & WithTempDirectory(S3Location &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue