/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the inputs for the CreateHapgRequest action.See
* Also:
AWS
* API Reference
The label of the new high-availability partition group.
*/ inline const Aws::String& GetLabel() const{ return m_label; } /** *The label of the new high-availability partition group.
*/ inline bool LabelHasBeenSet() const { return m_labelHasBeenSet; } /** *The label of the new high-availability partition group.
*/ inline void SetLabel(const Aws::String& value) { m_labelHasBeenSet = true; m_label = value; } /** *The label of the new high-availability partition group.
*/ inline void SetLabel(Aws::String&& value) { m_labelHasBeenSet = true; m_label = std::move(value); } /** *The label of the new high-availability partition group.
*/ inline void SetLabel(const char* value) { m_labelHasBeenSet = true; m_label.assign(value); } /** *The label of the new high-availability partition group.
*/ inline CreateHapgRequest& WithLabel(const Aws::String& value) { SetLabel(value); return *this;} /** *The label of the new high-availability partition group.
*/ inline CreateHapgRequest& WithLabel(Aws::String&& value) { SetLabel(std::move(value)); return *this;} /** *The label of the new high-availability partition group.
*/ inline CreateHapgRequest& WithLabel(const char* value) { SetLabel(value); return *this;} private: Aws::String m_label; bool m_labelHasBeenSet = false; }; } // namespace Model } // namespace CloudHSM } // namespace Aws