AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
TableToReload.h
1
6#pragma once
7#include <aws/dms/DatabaseMigrationService_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace DatabaseMigrationService
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_DATABASEMIGRATIONSERVICE_API TableToReload();
36 AWS_DATABASEMIGRATIONSERVICE_API TableToReload(Aws::Utils::Json::JsonView jsonValue);
37 AWS_DATABASEMIGRATIONSERVICE_API TableToReload& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_DATABASEMIGRATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetSchemaName() const{ return m_schemaName; }
46 inline bool SchemaNameHasBeenSet() const { return m_schemaNameHasBeenSet; }
47 inline void SetSchemaName(const Aws::String& value) { m_schemaNameHasBeenSet = true; m_schemaName = value; }
48 inline void SetSchemaName(Aws::String&& value) { m_schemaNameHasBeenSet = true; m_schemaName = std::move(value); }
49 inline void SetSchemaName(const char* value) { m_schemaNameHasBeenSet = true; m_schemaName.assign(value); }
50 inline TableToReload& WithSchemaName(const Aws::String& value) { SetSchemaName(value); return *this;}
51 inline TableToReload& WithSchemaName(Aws::String&& value) { SetSchemaName(std::move(value)); return *this;}
52 inline TableToReload& WithSchemaName(const char* value) { SetSchemaName(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 TableToReload& WithTableName(const Aws::String& value) { SetTableName(value); return *this;}
65 inline TableToReload& WithTableName(Aws::String&& value) { SetTableName(std::move(value)); return *this;}
66 inline TableToReload& WithTableName(const char* value) { SetTableName(value); return *this;}
68 private:
69
70 Aws::String m_schemaName;
71 bool m_schemaNameHasBeenSet = false;
72
73 Aws::String m_tableName;
74 bool m_tableNameHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace DatabaseMigrationService
79} // namespace Aws
AWS_DATABASEMIGRATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
TableToReload & WithTableName(Aws::String &&value)
TableToReload & WithSchemaName(Aws::String &&value)
TableToReload & WithSchemaName(const Aws::String &value)
TableToReload & WithSchemaName(const char *value)
AWS_DATABASEMIGRATIONSERVICE_API TableToReload()
AWS_DATABASEMIGRATIONSERVICE_API TableToReload(Aws::Utils::Json::JsonView jsonValue)
AWS_DATABASEMIGRATIONSERVICE_API TableToReload & operator=(Aws::Utils::Json::JsonView jsonValue)
TableToReload & WithTableName(const Aws::String &value)
TableToReload & WithTableName(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue