AWS SDK for C++

AWS SDK for C++ Version 1.11.873

Loading...
Searching...
No Matches
IncrementalExportSpecification.h
1
6#pragma once
7#include <aws/core/utils/DateTime.h>
8#include <aws/dynamodb/DynamoDB_EXPORTS.h>
9#include <aws/dynamodb/model/ExportViewType.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace DynamoDB {
21namespace Model {
22
30 public:
31 AWS_DYNAMODB_API IncrementalExportSpecification() = default;
34 AWS_DYNAMODB_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
43 inline const Aws::Utils::DateTime& GetExportFromTime() const { return m_exportFromTime; }
44 inline bool ExportFromTimeHasBeenSet() const { return m_exportFromTimeHasBeenSet; }
45 template <typename ExportFromTimeT = Aws::Utils::DateTime>
46 void SetExportFromTime(ExportFromTimeT&& value) {
47 m_exportFromTimeHasBeenSet = true;
48 m_exportFromTime = std::forward<ExportFromTimeT>(value);
49 }
50 template <typename ExportFromTimeT = Aws::Utils::DateTime>
52 SetExportFromTime(std::forward<ExportFromTimeT>(value));
53 return *this;
54 }
56
58
65 inline const Aws::Utils::DateTime& GetExportToTime() const { return m_exportToTime; }
66 inline bool ExportToTimeHasBeenSet() const { return m_exportToTimeHasBeenSet; }
67 template <typename ExportToTimeT = Aws::Utils::DateTime>
68 void SetExportToTime(ExportToTimeT&& value) {
69 m_exportToTimeHasBeenSet = true;
70 m_exportToTime = std::forward<ExportToTimeT>(value);
71 }
72 template <typename ExportToTimeT = Aws::Utils::DateTime>
74 SetExportToTime(std::forward<ExportToTimeT>(value));
75 return *this;
76 }
78
80
93 inline ExportViewType GetExportViewType() const { return m_exportViewType; }
94 inline bool ExportViewTypeHasBeenSet() const { return m_exportViewTypeHasBeenSet; }
95 inline void SetExportViewType(ExportViewType value) {
96 m_exportViewTypeHasBeenSet = true;
97 m_exportViewType = value;
98 }
100 SetExportViewType(value);
101 return *this;
102 }
104 private:
105 Aws::Utils::DateTime m_exportFromTime{};
106
107 Aws::Utils::DateTime m_exportToTime{};
108
109 ExportViewType m_exportViewType{ExportViewType::NOT_SET};
110 bool m_exportFromTimeHasBeenSet = false;
111 bool m_exportToTimeHasBeenSet = false;
112 bool m_exportViewTypeHasBeenSet = false;
113};
114
115} // namespace Model
116} // namespace DynamoDB
117} // namespace Aws
IncrementalExportSpecification & WithExportViewType(ExportViewType value)
IncrementalExportSpecification & WithExportFromTime(ExportFromTimeT &&value)
AWS_DYNAMODB_API IncrementalExportSpecification & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_DYNAMODB_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_DYNAMODB_API IncrementalExportSpecification()=default
IncrementalExportSpecification & WithExportToTime(ExportToTimeT &&value)
AWS_DYNAMODB_API IncrementalExportSpecification(Aws::Utils::Json::JsonView jsonValue)
Aws::Utils::Json::JsonValue JsonValue