AWS SDK for C++

AWS SDK for C++ Version 1.11.607

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() = default;
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 template<typename S3ObjectKeyT = Aws::String>
49 void SetS3ObjectKey(S3ObjectKeyT&& value) { m_s3ObjectKeyHasBeenSet = true; m_s3ObjectKey = std::forward<S3ObjectKeyT>(value); }
50 template<typename S3ObjectKeyT = Aws::String>
51 ExportSqlDetails& WithS3ObjectKey(S3ObjectKeyT&& value) { SetS3ObjectKey(std::forward<S3ObjectKeyT>(value)); return *this;}
53
55
58 inline const Aws::String& GetObjectURL() const { return m_objectURL; }
59 inline bool ObjectURLHasBeenSet() const { return m_objectURLHasBeenSet; }
60 template<typename ObjectURLT = Aws::String>
61 void SetObjectURL(ObjectURLT&& value) { m_objectURLHasBeenSet = true; m_objectURL = std::forward<ObjectURLT>(value); }
62 template<typename ObjectURLT = Aws::String>
63 ExportSqlDetails& WithObjectURL(ObjectURLT&& value) { SetObjectURL(std::forward<ObjectURLT>(value)); return *this;}
65 private:
66
67 Aws::String m_s3ObjectKey;
68 bool m_s3ObjectKeyHasBeenSet = false;
69
70 Aws::String m_objectURL;
71 bool m_objectURLHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace DatabaseMigrationService
76} // namespace Aws
AWS_DATABASEMIGRATIONSERVICE_API ExportSqlDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_DATABASEMIGRATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_DATABASEMIGRATIONSERVICE_API ExportSqlDetails()=default
AWS_DATABASEMIGRATIONSERVICE_API ExportSqlDetails(Aws::Utils::Json::JsonView jsonValue)
ExportSqlDetails & WithS3ObjectKey(S3ObjectKeyT &&value)
ExportSqlDetails & WithObjectURL(ObjectURLT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue