/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace BackupGateway { namespace Model { class DeleteHypervisorResult { public: AWS_BACKUPGATEWAY_API DeleteHypervisorResult(); AWS_BACKUPGATEWAY_API DeleteHypervisorResult(const Aws::AmazonWebServiceResult& result); AWS_BACKUPGATEWAY_API DeleteHypervisorResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the hypervisor you deleted.

*/ inline const Aws::String& GetHypervisorArn() const{ return m_hypervisorArn; } /** *

The Amazon Resource Name (ARN) of the hypervisor you deleted.

*/ inline void SetHypervisorArn(const Aws::String& value) { m_hypervisorArn = value; } /** *

The Amazon Resource Name (ARN) of the hypervisor you deleted.

*/ inline void SetHypervisorArn(Aws::String&& value) { m_hypervisorArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the hypervisor you deleted.

*/ inline void SetHypervisorArn(const char* value) { m_hypervisorArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the hypervisor you deleted.

*/ inline DeleteHypervisorResult& WithHypervisorArn(const Aws::String& value) { SetHypervisorArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the hypervisor you deleted.

*/ inline DeleteHypervisorResult& WithHypervisorArn(Aws::String&& value) { SetHypervisorArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the hypervisor you deleted.

*/ inline DeleteHypervisorResult& WithHypervisorArn(const char* value) { SetHypervisorArn(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 DeleteHypervisorResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteHypervisorResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteHypervisorResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_hypervisorArn; Aws::String m_requestId; }; } // namespace Model } // namespace BackupGateway } // namespace Aws