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

Contains the description of the backup created for the table.

*/ inline const BackupDescription& GetBackupDescription() const{ return m_backupDescription; } /** *

Contains the description of the backup created for the table.

*/ inline void SetBackupDescription(const BackupDescription& value) { m_backupDescription = value; } /** *

Contains the description of the backup created for the table.

*/ inline void SetBackupDescription(BackupDescription&& value) { m_backupDescription = std::move(value); } /** *

Contains the description of the backup created for the table.

*/ inline DeleteBackupResult& WithBackupDescription(const BackupDescription& value) { SetBackupDescription(value); return *this;} /** *

Contains the description of the backup created for the table.

*/ inline DeleteBackupResult& WithBackupDescription(BackupDescription&& value) { SetBackupDescription(std::move(value)); return *this;} private: BackupDescription m_backupDescription; }; } // namespace Model } // namespace DynamoDB } // namespace Aws