/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace DynamoDB { namespace Model { class UpdateContinuousBackupsResult { public: AWS_DYNAMODB_API UpdateContinuousBackupsResult(); AWS_DYNAMODB_API UpdateContinuousBackupsResult(const Aws::AmazonWebServiceResult& result); AWS_DYNAMODB_API UpdateContinuousBackupsResult& 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 UpdateContinuousBackupsResult& WithContinuousBackupsDescription(const ContinuousBackupsDescription& value) { SetContinuousBackupsDescription(value); return *this;} /** *

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

*/ inline UpdateContinuousBackupsResult& WithContinuousBackupsDescription(ContinuousBackupsDescription&& value) { SetContinuousBackupsDescription(std::move(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 UpdateContinuousBackupsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateContinuousBackupsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateContinuousBackupsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ContinuousBackupsDescription m_continuousBackupsDescription; Aws::String m_requestId; }; } // namespace Model } // namespace DynamoDB } // namespace Aws