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

ID of the report that was deleted.

*/ inline const Aws::String& GetReportId() const{ return m_reportId; } /** *

ID of the report that was deleted.

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

ID of the report that was deleted.

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

ID of the report that was deleted.

*/ inline void SetReportId(const char* value) { m_reportId.assign(value); } /** *

ID of the report that was deleted.

*/ inline DeleteReportDefinitionResult& WithReportId(const Aws::String& value) { SetReportId(value); return *this;} /** *

ID of the report that was deleted.

*/ inline DeleteReportDefinitionResult& WithReportId(Aws::String&& value) { SetReportId(std::move(value)); return *this;} /** *

ID of the report that was deleted.

*/ inline DeleteReportDefinitionResult& WithReportId(const char* value) { SetReportId(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 DeleteReportDefinitionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteReportDefinitionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteReportDefinitionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_reportId; Aws::String m_requestId; }; } // namespace Model } // namespace ApplicationCostProfiler } // namespace Aws