/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the inputs for the DeleteHsm operation.See
* Also:
AWS
* API Reference
The ARN of the HSM to delete.
*/ inline const Aws::String& GetHsmArn() const{ return m_hsmArn; } /** *The ARN of the HSM to delete.
*/ inline bool HsmArnHasBeenSet() const { return m_hsmArnHasBeenSet; } /** *The ARN of the HSM to delete.
*/ inline void SetHsmArn(const Aws::String& value) { m_hsmArnHasBeenSet = true; m_hsmArn = value; } /** *The ARN of the HSM to delete.
*/ inline void SetHsmArn(Aws::String&& value) { m_hsmArnHasBeenSet = true; m_hsmArn = std::move(value); } /** *The ARN of the HSM to delete.
*/ inline void SetHsmArn(const char* value) { m_hsmArnHasBeenSet = true; m_hsmArn.assign(value); } /** *The ARN of the HSM to delete.
*/ inline DeleteHsmRequest& WithHsmArn(const Aws::String& value) { SetHsmArn(value); return *this;} /** *The ARN of the HSM to delete.
*/ inline DeleteHsmRequest& WithHsmArn(Aws::String&& value) { SetHsmArn(std::move(value)); return *this;} /** *The ARN of the HSM to delete.
*/ inline DeleteHsmRequest& WithHsmArn(const char* value) { SetHsmArn(value); return *this;} private: Aws::String m_hsmArn; bool m_hsmArnHasBeenSet = false; }; } // namespace Model } // namespace CloudHSM } // namespace Aws