AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
IngestedEventsTimeWindow.h
1
6#pragma once
7#include <aws/frauddetector/FraudDetector_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace FraudDetector
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_FRAUDDETECTOR_API IngestedEventsTimeWindow();
35 AWS_FRAUDDETECTOR_API IngestedEventsTimeWindow(Aws::Utils::Json::JsonView jsonValue);
37 AWS_FRAUDDETECTOR_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const Aws::String& GetStartTime() const{ return m_startTime; }
45 inline bool StartTimeHasBeenSet() const { return m_startTimeHasBeenSet; }
46 inline void SetStartTime(const Aws::String& value) { m_startTimeHasBeenSet = true; m_startTime = value; }
47 inline void SetStartTime(Aws::String&& value) { m_startTimeHasBeenSet = true; m_startTime = std::move(value); }
48 inline void SetStartTime(const char* value) { m_startTimeHasBeenSet = true; m_startTime.assign(value); }
49 inline IngestedEventsTimeWindow& WithStartTime(const Aws::String& value) { SetStartTime(value); return *this;}
50 inline IngestedEventsTimeWindow& WithStartTime(Aws::String&& value) { SetStartTime(std::move(value)); return *this;}
51 inline IngestedEventsTimeWindow& WithStartTime(const char* value) { SetStartTime(value); return *this;}
53
55
58 inline const Aws::String& GetEndTime() const{ return m_endTime; }
59 inline bool EndTimeHasBeenSet() const { return m_endTimeHasBeenSet; }
60 inline void SetEndTime(const Aws::String& value) { m_endTimeHasBeenSet = true; m_endTime = value; }
61 inline void SetEndTime(Aws::String&& value) { m_endTimeHasBeenSet = true; m_endTime = std::move(value); }
62 inline void SetEndTime(const char* value) { m_endTimeHasBeenSet = true; m_endTime.assign(value); }
63 inline IngestedEventsTimeWindow& WithEndTime(const Aws::String& value) { SetEndTime(value); return *this;}
64 inline IngestedEventsTimeWindow& WithEndTime(Aws::String&& value) { SetEndTime(std::move(value)); return *this;}
65 inline IngestedEventsTimeWindow& WithEndTime(const char* value) { SetEndTime(value); return *this;}
67 private:
68
69 Aws::String m_startTime;
70 bool m_startTimeHasBeenSet = false;
71
72 Aws::String m_endTime;
73 bool m_endTimeHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace FraudDetector
78} // namespace Aws
IngestedEventsTimeWindow & WithStartTime(const char *value)
IngestedEventsTimeWindow & WithEndTime(const Aws::String &value)
AWS_FRAUDDETECTOR_API IngestedEventsTimeWindow(Aws::Utils::Json::JsonView jsonValue)
IngestedEventsTimeWindow & WithStartTime(Aws::String &&value)
IngestedEventsTimeWindow & WithEndTime(Aws::String &&value)
AWS_FRAUDDETECTOR_API IngestedEventsTimeWindow & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_FRAUDDETECTOR_API Aws::Utils::Json::JsonValue Jsonize() const
IngestedEventsTimeWindow & WithStartTime(const Aws::String &value)
IngestedEventsTimeWindow & WithEndTime(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue