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

Represents the properties of the export.

*/ inline const ExportDescription& GetExportDescription() const{ return m_exportDescription; } /** *

Represents the properties of the export.

*/ inline void SetExportDescription(const ExportDescription& value) { m_exportDescription = value; } /** *

Represents the properties of the export.

*/ inline void SetExportDescription(ExportDescription&& value) { m_exportDescription = std::move(value); } /** *

Represents the properties of the export.

*/ inline DescribeExportResult& WithExportDescription(const ExportDescription& value) { SetExportDescription(value); return *this;} /** *

Represents the properties of the export.

*/ inline DescribeExportResult& WithExportDescription(ExportDescription&& value) { SetExportDescription(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 DescribeExportResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeExportResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeExportResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ExportDescription m_exportDescription; Aws::String m_requestId; }; } // namespace Model } // namespace DynamoDB } // namespace Aws