/** * 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 Backup { namespace Model { class StartReportJobResult { public: AWS_BACKUP_API StartReportJobResult(); AWS_BACKUP_API StartReportJobResult(const Aws::AmazonWebServiceResult& result); AWS_BACKUP_API StartReportJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The identifier of the report job. A unique, randomly generated, Unicode, * UTF-8 encoded string that is at most 1,024 bytes long. The report job ID cannot * be edited.

*/ inline const Aws::String& GetReportJobId() const{ return m_reportJobId; } /** *

The identifier of the report job. A unique, randomly generated, Unicode, * UTF-8 encoded string that is at most 1,024 bytes long. The report job ID cannot * be edited.

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

The identifier of the report job. A unique, randomly generated, Unicode, * UTF-8 encoded string that is at most 1,024 bytes long. The report job ID cannot * be edited.

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

The identifier of the report job. A unique, randomly generated, Unicode, * UTF-8 encoded string that is at most 1,024 bytes long. The report job ID cannot * be edited.

*/ inline void SetReportJobId(const char* value) { m_reportJobId.assign(value); } /** *

The identifier of the report job. A unique, randomly generated, Unicode, * UTF-8 encoded string that is at most 1,024 bytes long. The report job ID cannot * be edited.

*/ inline StartReportJobResult& WithReportJobId(const Aws::String& value) { SetReportJobId(value); return *this;} /** *

The identifier of the report job. A unique, randomly generated, Unicode, * UTF-8 encoded string that is at most 1,024 bytes long. The report job ID cannot * be edited.

*/ inline StartReportJobResult& WithReportJobId(Aws::String&& value) { SetReportJobId(std::move(value)); return *this;} /** *

The identifier of the report job. A unique, randomly generated, Unicode, * UTF-8 encoded string that is at most 1,024 bytes long. The report job ID cannot * be edited.

*/ inline StartReportJobResult& WithReportJobId(const char* value) { SetReportJobId(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 StartReportJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline StartReportJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline StartReportJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_reportJobId; Aws::String m_requestId; }; } // namespace Model } // namespace Backup } // namespace Aws