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

The Amazon Resource Name (ARN) of an organization config rule.

*/ inline const Aws::String& GetOrganizationConfigRuleArn() const{ return m_organizationConfigRuleArn; } /** *

The Amazon Resource Name (ARN) of an organization config rule.

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

The Amazon Resource Name (ARN) of an organization config rule.

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

The Amazon Resource Name (ARN) of an organization config rule.

*/ inline void SetOrganizationConfigRuleArn(const char* value) { m_organizationConfigRuleArn.assign(value); } /** *

The Amazon Resource Name (ARN) of an organization config rule.

*/ inline PutOrganizationConfigRuleResult& WithOrganizationConfigRuleArn(const Aws::String& value) { SetOrganizationConfigRuleArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of an organization config rule.

*/ inline PutOrganizationConfigRuleResult& WithOrganizationConfigRuleArn(Aws::String&& value) { SetOrganizationConfigRuleArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of an organization config rule.

*/ inline PutOrganizationConfigRuleResult& WithOrganizationConfigRuleArn(const char* value) { SetOrganizationConfigRuleArn(value); return *this;} private: Aws::String m_organizationConfigRuleArn; }; } // namespace Model } // namespace ConfigService } // namespace Aws