/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace QLDB { namespace Model { class ExportJournalToS3Result { public: AWS_QLDB_API ExportJournalToS3Result(); AWS_QLDB_API ExportJournalToS3Result(const Aws::AmazonWebServiceResult& result); AWS_QLDB_API ExportJournalToS3Result& operator=(const Aws::AmazonWebServiceResult& result); /** *

The UUID (represented in Base62-encoded text) that QLDB assigns to each * journal export job.

To describe your export request and check the status * of the job, you can use ExportId to call * DescribeJournalS3Export.

*/ inline const Aws::String& GetExportId() const{ return m_exportId; } /** *

The UUID (represented in Base62-encoded text) that QLDB assigns to each * journal export job.

To describe your export request and check the status * of the job, you can use ExportId to call * DescribeJournalS3Export.

*/ inline void SetExportId(const Aws::String& value) { m_exportId = value; } /** *

The UUID (represented in Base62-encoded text) that QLDB assigns to each * journal export job.

To describe your export request and check the status * of the job, you can use ExportId to call * DescribeJournalS3Export.

*/ inline void SetExportId(Aws::String&& value) { m_exportId = std::move(value); } /** *

The UUID (represented in Base62-encoded text) that QLDB assigns to each * journal export job.

To describe your export request and check the status * of the job, you can use ExportId to call * DescribeJournalS3Export.

*/ inline void SetExportId(const char* value) { m_exportId.assign(value); } /** *

The UUID (represented in Base62-encoded text) that QLDB assigns to each * journal export job.

To describe your export request and check the status * of the job, you can use ExportId to call * DescribeJournalS3Export.

*/ inline ExportJournalToS3Result& WithExportId(const Aws::String& value) { SetExportId(value); return *this;} /** *

The UUID (represented in Base62-encoded text) that QLDB assigns to each * journal export job.

To describe your export request and check the status * of the job, you can use ExportId to call * DescribeJournalS3Export.

*/ inline ExportJournalToS3Result& WithExportId(Aws::String&& value) { SetExportId(std::move(value)); return *this;} /** *

The UUID (represented in Base62-encoded text) that QLDB assigns to each * journal export job.

To describe your export request and check the status * of the job, you can use ExportId to call * DescribeJournalS3Export.

*/ inline ExportJournalToS3Result& WithExportId(const char* value) { SetExportId(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline ExportJournalToS3Result& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ExportJournalToS3Result& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ExportJournalToS3Result& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_exportId; Aws::String m_requestId; }; } // namespace Model } // namespace QLDB } // namespace Aws