/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the output of the DeleteHsm operation.See
* Also:
AWS
* API Reference
The status of the operation.
*/ inline const Aws::String& GetStatus() const{ return m_status; } /** *The status of the operation.
*/ inline void SetStatus(const Aws::String& value) { m_status = value; } /** *The status of the operation.
*/ inline void SetStatus(Aws::String&& value) { m_status = std::move(value); } /** *The status of the operation.
*/ inline void SetStatus(const char* value) { m_status.assign(value); } /** *The status of the operation.
*/ inline DeleteHsmResult& WithStatus(const Aws::String& value) { SetStatus(value); return *this;} /** *The status of the operation.
*/ inline DeleteHsmResult& WithStatus(Aws::String&& value) { SetStatus(std::move(value)); return *this;} /** *The status of the operation.
*/ inline DeleteHsmResult& WithStatus(const char* value) { SetStatus(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 DeleteHsmResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteHsmResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteHsmResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_status; Aws::String m_requestId; }; } // namespace Model } // namespace CloudHSM } // namespace Aws