/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the output of the CreateHAPartitionGroup
* action.See Also:
AWS
* API Reference
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 CreateHapgResult& WithHapgArn(const Aws::String& value) { SetHapgArn(value); return *this;} /** *The ARN of the high-availability partition group.
*/ inline CreateHapgResult& WithHapgArn(Aws::String&& value) { SetHapgArn(std::move(value)); return *this;} /** *The ARN of the high-availability partition group.
*/ inline CreateHapgResult& WithHapgArn(const char* value) { SetHapgArn(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 CreateHapgResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateHapgResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateHapgResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_hapgArn; Aws::String m_requestId; }; } // namespace Model } // namespace CloudHSM } // namespace Aws