/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The response object for the CreateBackup
* operation.See Also:
AWS
* API Reference
A description of the backup.
*/ inline const Backup& GetBackup() const{ return m_backup; } /** *A description of the backup.
*/ inline void SetBackup(const Backup& value) { m_backup = value; } /** *A description of the backup.
*/ inline void SetBackup(Backup&& value) { m_backup = std::move(value); } /** *A description of the backup.
*/ inline CreateBackupResult& WithBackup(const Backup& value) { SetBackup(value); return *this;} /** *A description of the backup.
*/ inline CreateBackupResult& WithBackup(Backup&& value) { SetBackup(std::move(value)); return *this;} private: Backup m_backup; }; } // namespace Model } // namespace FSx } // namespace Aws