1 /** 2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 * SPDX-License-Identifier: Apache-2.0. 4 */ 5 6 #pragma once 7 #include <aws/config/ConfigService_EXPORTS.h> 8 #include <aws/core/utils/memory/stl/AWSString.h> 9 #include <utility> 10 11 namespace Aws 12 { 13 template<typename RESULT_TYPE> 14 class AmazonWebServiceResult; 15 16 namespace Utils 17 { 18 namespace Json 19 { 20 class JsonValue; 21 } // namespace Json 22 } // namespace Utils 23 namespace ConfigService 24 { 25 namespace Model 26 { 27 class AWS_CONFIGSERVICE_API PutOrganizationConformancePackResult 28 { 29 public: 30 PutOrganizationConformancePackResult(); 31 PutOrganizationConformancePackResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); 32 PutOrganizationConformancePackResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); 33 34 35 /** 36 * <p>ARN of the organization conformance pack.</p> 37 */ GetOrganizationConformancePackArn()38 inline const Aws::String& GetOrganizationConformancePackArn() const{ return m_organizationConformancePackArn; } 39 40 /** 41 * <p>ARN of the organization conformance pack.</p> 42 */ SetOrganizationConformancePackArn(const Aws::String & value)43 inline void SetOrganizationConformancePackArn(const Aws::String& value) { m_organizationConformancePackArn = value; } 44 45 /** 46 * <p>ARN of the organization conformance pack.</p> 47 */ SetOrganizationConformancePackArn(Aws::String && value)48 inline void SetOrganizationConformancePackArn(Aws::String&& value) { m_organizationConformancePackArn = std::move(value); } 49 50 /** 51 * <p>ARN of the organization conformance pack.</p> 52 */ SetOrganizationConformancePackArn(const char * value)53 inline void SetOrganizationConformancePackArn(const char* value) { m_organizationConformancePackArn.assign(value); } 54 55 /** 56 * <p>ARN of the organization conformance pack.</p> 57 */ WithOrganizationConformancePackArn(const Aws::String & value)58 inline PutOrganizationConformancePackResult& WithOrganizationConformancePackArn(const Aws::String& value) { SetOrganizationConformancePackArn(value); return *this;} 59 60 /** 61 * <p>ARN of the organization conformance pack.</p> 62 */ WithOrganizationConformancePackArn(Aws::String && value)63 inline PutOrganizationConformancePackResult& WithOrganizationConformancePackArn(Aws::String&& value) { SetOrganizationConformancePackArn(std::move(value)); return *this;} 64 65 /** 66 * <p>ARN of the organization conformance pack.</p> 67 */ WithOrganizationConformancePackArn(const char * value)68 inline PutOrganizationConformancePackResult& WithOrganizationConformancePackArn(const char* value) { SetOrganizationConformancePackArn(value); return *this;} 69 70 private: 71 72 Aws::String m_organizationConformancePackArn; 73 }; 74 75 } // namespace Model 76 } // namespace ConfigService 77 } // namespace Aws 78