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

Information about the resources and the policy that you specified in the * GetComplianceDetail request.

*/ inline const PolicyComplianceDetail& GetPolicyComplianceDetail() const{ return m_policyComplianceDetail; } /** *

Information about the resources and the policy that you specified in the * GetComplianceDetail request.

*/ inline void SetPolicyComplianceDetail(const PolicyComplianceDetail& value) { m_policyComplianceDetail = value; } /** *

Information about the resources and the policy that you specified in the * GetComplianceDetail request.

*/ inline void SetPolicyComplianceDetail(PolicyComplianceDetail&& value) { m_policyComplianceDetail = std::move(value); } /** *

Information about the resources and the policy that you specified in the * GetComplianceDetail request.

*/ inline GetComplianceDetailResult& WithPolicyComplianceDetail(const PolicyComplianceDetail& value) { SetPolicyComplianceDetail(value); return *this;} /** *

Information about the resources and the policy that you specified in the * GetComplianceDetail request.

*/ inline GetComplianceDetailResult& WithPolicyComplianceDetail(PolicyComplianceDetail&& value) { SetPolicyComplianceDetail(std::move(value)); return *this;} private: PolicyComplianceDetail m_policyComplianceDetail; }; } // namespace Model } // namespace FMS } // namespace Aws