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

A report generator that creates periodic reports about your license * configurations.

*/ inline const ReportGenerator& GetReportGenerator() const{ return m_reportGenerator; } /** *

A report generator that creates periodic reports about your license * configurations.

*/ inline void SetReportGenerator(const ReportGenerator& value) { m_reportGenerator = value; } /** *

A report generator that creates periodic reports about your license * configurations.

*/ inline void SetReportGenerator(ReportGenerator&& value) { m_reportGenerator = std::move(value); } /** *

A report generator that creates periodic reports about your license * configurations.

*/ inline GetLicenseManagerReportGeneratorResult& WithReportGenerator(const ReportGenerator& value) { SetReportGenerator(value); return *this;} /** *

A report generator that creates periodic reports about your license * configurations.

*/ inline GetLicenseManagerReportGeneratorResult& WithReportGenerator(ReportGenerator&& value) { SetReportGenerator(std::move(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 GetLicenseManagerReportGeneratorResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetLicenseManagerReportGeneratorResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetLicenseManagerReportGeneratorResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ReportGenerator m_reportGenerator; Aws::String m_requestId; }; } // namespace Model } // namespace LicenseManager } // namespace Aws