AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ExportSqlDetails.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 ExportSqlDetails();
36 AWS_DATABASEMIGRATIONSERVICE_API ExportSqlDetails(Aws::Utils::Json::JsonView jsonValue);
37 AWS_DATABASEMIGRATIONSERVICE_API ExportSqlDetails& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_DATABASEMIGRATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const Aws::String& GetS3ObjectKey() const{ return m_s3ObjectKey; }
47 inline bool S3ObjectKeyHasBeenSet() const { return m_s3ObjectKeyHasBeenSet; }
48 inline void SetS3ObjectKey(const Aws::String& value) { m_s3ObjectKeyHasBeenSet = true; m_s3ObjectKey = value; }
49 inline void SetS3ObjectKey(Aws::String&& value) { m_s3ObjectKeyHasBeenSet = true; m_s3ObjectKey = std::move(value); }
50 inline void SetS3ObjectKey(const char* value) { m_s3ObjectKeyHasBeenSet = true; m_s3ObjectKey.assign(value); }
51 inline ExportSqlDetails& WithS3ObjectKey(const Aws::String& value) { SetS3ObjectKey(value); return *this;}
52 inline ExportSqlDetails& WithS3ObjectKey(Aws::String&& value) { SetS3ObjectKey(std::move(value)); return *this;}
53 inline ExportSqlDetails& WithS3ObjectKey(const char* value) { SetS3ObjectKey(value); return *this;}
55
57
60 inline const Aws::String& GetObjectURL() const{ return m_objectURL; }
61 inline bool ObjectURLHasBeenSet() const { return m_objectURLHasBeenSet; }
62 inline void SetObjectURL(const Aws::String& value) { m_objectURLHasBeenSet = true; m_objectURL = value; }
63 inline void SetObjectURL(Aws::String&& value) { m_objectURLHasBeenSet = true; m_objectURL = std::move(value); }
64 inline void SetObjectURL(const char* value) { m_objectURLHasBeenSet = true; m_objectURL.assign(value); }
65 inline ExportSqlDetails& WithObjectURL(const Aws::String& value) { SetObjectURL(value); return *this;}
66 inline ExportSqlDetails& WithObjectURL(Aws::String&& value) { SetObjectURL(std::move(value)); return *this;}
67 inline ExportSqlDetails& WithObjectURL(const char* value) { SetObjectURL(value); return *this;}
69 private:
70
71 Aws::String m_s3ObjectKey;
72 bool m_s3ObjectKeyHasBeenSet = false;
73
74 Aws::String m_objectURL;
75 bool m_objectURLHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace DatabaseMigrationService
80} // namespace Aws
AWS_DATABASEMIGRATIONSERVICE_API ExportSqlDetails()
AWS_DATABASEMIGRATIONSERVICE_API ExportSqlDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_DATABASEMIGRATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
ExportSqlDetails & WithObjectURL(const char *value)
ExportSqlDetails & WithObjectURL(Aws::String &&value)
AWS_DATABASEMIGRATIONSERVICE_API ExportSqlDetails(Aws::Utils::Json::JsonView jsonValue)
ExportSqlDetails & WithS3ObjectKey(const Aws::String &value)
ExportSqlDetails & WithObjectURL(const Aws::String &value)
ExportSqlDetails & WithS3ObjectKey(const char *value)
ExportSqlDetails & WithS3ObjectKey(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue