AWS SDK for C++

AWS SDK for C++ Version 1.11.743

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
85 inline ExportViewType GetExportViewType() const { return m_exportViewType; }
86 inline bool ExportViewTypeHasBeenSet() const { return m_exportViewTypeHasBeenSet; }
87 inline void SetExportViewType(ExportViewType value) {
88 m_exportViewTypeHasBeenSet = true;
89 m_exportViewType = value;
90 }
92 SetExportViewType(value);
93 return *this;
94 }
96 private:
97 Aws::Utils::DateTime m_exportFromTime{};
98
99 Aws::Utils::DateTime m_exportToTime{};
100
101 ExportViewType m_exportViewType{ExportViewType::NOT_SET};
102 bool m_exportFromTimeHasBeenSet = false;
103 bool m_exportToTimeHasBeenSet = false;
104 bool m_exportViewTypeHasBeenSet = false;
105};
106
107} // namespace Model
108} // namespace DynamoDB
109} // 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