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

The ARN of the high-availability partition group.

*/ inline const Aws::String& GetHapgArn() const{ return m_hapgArn; } /** *

The ARN of the high-availability partition group.

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

The ARN of the high-availability partition group.

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

The ARN of the high-availability partition group.

*/ inline void SetHapgArn(const char* value) { m_hapgArn.assign(value); } /** *

The ARN of the high-availability partition group.

*/ inline ModifyHapgResult& WithHapgArn(const Aws::String& value) { SetHapgArn(value); return *this;} /** *

The ARN of the high-availability partition group.

*/ inline ModifyHapgResult& WithHapgArn(Aws::String&& value) { SetHapgArn(std::move(value)); return *this;} /** *

The ARN of the high-availability partition group.

*/ inline ModifyHapgResult& WithHapgArn(const char* value) { SetHapgArn(value); return *this;} private: Aws::String m_hapgArn; }; } // namespace Model } // namespace CloudHSM } // namespace Aws