AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
SlotStartTimeRangeRequest.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/core/utils/DateTime.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Xml
17{
18 class XmlNode;
19} // namespace Xml
20} // namespace Utils
21namespace EC2
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_EC2_API SlotStartTimeRangeRequest() = default;
38
39 AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
40 AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
41
42
44
47 inline const Aws::Utils::DateTime& GetEarliestTime() const { return m_earliestTime; }
48 inline bool EarliestTimeHasBeenSet() const { return m_earliestTimeHasBeenSet; }
49 template<typename EarliestTimeT = Aws::Utils::DateTime>
50 void SetEarliestTime(EarliestTimeT&& value) { m_earliestTimeHasBeenSet = true; m_earliestTime = std::forward<EarliestTimeT>(value); }
51 template<typename EarliestTimeT = Aws::Utils::DateTime>
52 SlotStartTimeRangeRequest& WithEarliestTime(EarliestTimeT&& value) { SetEarliestTime(std::forward<EarliestTimeT>(value)); return *this;}
54
56
59 inline const Aws::Utils::DateTime& GetLatestTime() const { return m_latestTime; }
60 inline bool LatestTimeHasBeenSet() const { return m_latestTimeHasBeenSet; }
61 template<typename LatestTimeT = Aws::Utils::DateTime>
62 void SetLatestTime(LatestTimeT&& value) { m_latestTimeHasBeenSet = true; m_latestTime = std::forward<LatestTimeT>(value); }
63 template<typename LatestTimeT = Aws::Utils::DateTime>
64 SlotStartTimeRangeRequest& WithLatestTime(LatestTimeT&& value) { SetLatestTime(std::forward<LatestTimeT>(value)); return *this;}
66 private:
67
68 Aws::Utils::DateTime m_earliestTime{};
69 bool m_earliestTimeHasBeenSet = false;
70
71 Aws::Utils::DateTime m_latestTime{};
72 bool m_latestTimeHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace EC2
77} // namespace Aws
AWS_EC2_API SlotStartTimeRangeRequest()=default
AWS_EC2_API SlotStartTimeRangeRequest(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_EC2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
SlotStartTimeRangeRequest & WithLatestTime(LatestTimeT &&value)
AWS_EC2_API SlotStartTimeRangeRequest & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
const Aws::Utils::DateTime & GetLatestTime() const
AWS_EC2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
const Aws::Utils::DateTime & GetEarliestTime() const
SlotStartTimeRangeRequest & WithEarliestTime(EarliestTimeT &&value)
std::basic_ostream< char, std::char_traits< char > > OStream