/** * 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 DescribeContinuousBackupsResult { public: DescribeContinuousBackupsResult(); DescribeContinuousBackupsResult(const Aws::AmazonWebServiceResult& result); DescribeContinuousBackupsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Represents the continuous backups and point in time recovery settings on the * table.

*/ inline const ContinuousBackupsDescription& GetContinuousBackupsDescription() const{ return m_continuousBackupsDescription; } /** *

Represents the continuous backups and point in time recovery settings on the * table.

*/ inline void SetContinuousBackupsDescription(const ContinuousBackupsDescription& value) { m_continuousBackupsDescription = value; } /** *

Represents the continuous backups and point in time recovery settings on the * table.

*/ inline void SetContinuousBackupsDescription(ContinuousBackupsDescription&& value) { m_continuousBackupsDescription = std::move(value); } /** *

Represents the continuous backups and point in time recovery settings on the * table.

*/ inline DescribeContinuousBackupsResult& WithContinuousBackupsDescription(const ContinuousBackupsDescription& value) { SetContinuousBackupsDescription(value); return *this;} /** *

Represents the continuous backups and point in time recovery settings on the * table.

*/ inline DescribeContinuousBackupsResult& WithContinuousBackupsDescription(ContinuousBackupsDescription&& value) { SetContinuousBackupsDescription(std::move(value)); return *this;} private: ContinuousBackupsDescription m_continuousBackupsDescription; }; } // namespace Model } // namespace DynamoDB } // namespace Aws