/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace CloudHSM { namespace Model { /** *

Contains the inputs for the CreateHapgRequest action.

See * Also:

AWS * API Reference

*/ class CreateHapgRequest : public CloudHSMRequest { public: AWS_CLOUDHSM_API CreateHapgRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CreateHapg"; } AWS_CLOUDHSM_API Aws::String SerializePayload() const override; AWS_CLOUDHSM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

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