/** * 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 CloudHSMV2 { namespace Model { class AWS_CLOUDHSMV2_API DeleteBackupResult { public: DeleteBackupResult(); DeleteBackupResult(const Aws::AmazonWebServiceResult& result); DeleteBackupResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information on the Backup object deleted.

*/ inline const Backup& GetBackup() const{ return m_backup; } /** *

Information on the Backup object deleted.

*/ inline void SetBackup(const Backup& value) { m_backup = value; } /** *

Information on the Backup object deleted.

*/ inline void SetBackup(Backup&& value) { m_backup = std::move(value); } /** *

Information on the Backup object deleted.

*/ inline DeleteBackupResult& WithBackup(const Backup& value) { SetBackup(value); return *this;} /** *

Information on the Backup object deleted.

*/ inline DeleteBackupResult& WithBackup(Backup&& value) { SetBackup(std::move(value)); return *this;} private: Backup m_backup; }; } // namespace Model } // namespace CloudHSMV2 } // namespace Aws