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

ARN of the organization conformance pack.

*/ inline const Aws::String& GetOrganizationConformancePackArn() const{ return m_organizationConformancePackArn; } /** *

ARN of the organization conformance pack.

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

ARN of the organization conformance pack.

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

ARN of the organization conformance pack.

*/ inline void SetOrganizationConformancePackArn(const char* value) { m_organizationConformancePackArn.assign(value); } /** *

ARN of the organization conformance pack.

*/ inline PutOrganizationConformancePackResult& WithOrganizationConformancePackArn(const Aws::String& value) { SetOrganizationConformancePackArn(value); return *this;} /** *

ARN of the organization conformance pack.

*/ inline PutOrganizationConformancePackResult& WithOrganizationConformancePackArn(Aws::String&& value) { SetOrganizationConformancePackArn(std::move(value)); return *this;} /** *

ARN of the organization conformance pack.

*/ inline PutOrganizationConformancePackResult& WithOrganizationConformancePackArn(const char* value) { SetOrganizationConformancePackArn(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 PutOrganizationConformancePackResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline PutOrganizationConformancePackResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline PutOrganizationConformancePackResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_organizationConformancePackArn; Aws::String m_requestId; }; } // namespace Model } // namespace ConfigService } // namespace Aws