AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ReplicationTimeValue.h
1
6#pragma once
7#include <aws/s3-crt/S3Crt_EXPORTS.h>
8
9namespace Aws
10{
11namespace Utils
12{
13namespace Xml
14{
15 class XmlNode;
16} // namespace Xml
17} // namespace Utils
18namespace S3Crt
19{
20namespace Model
21{
22
31 {
32 public:
33 AWS_S3CRT_API ReplicationTimeValue();
34 AWS_S3CRT_API ReplicationTimeValue(const Aws::Utils::Xml::XmlNode& xmlNode);
36
37 AWS_S3CRT_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
38
39
41
44 inline int GetMinutes() const{ return m_minutes; }
45 inline bool MinutesHasBeenSet() const { return m_minutesHasBeenSet; }
46 inline void SetMinutes(int value) { m_minutesHasBeenSet = true; m_minutes = value; }
47 inline ReplicationTimeValue& WithMinutes(int value) { SetMinutes(value); return *this;}
49 private:
50
51 int m_minutes;
52 bool m_minutesHasBeenSet = false;
53 };
54
55} // namespace Model
56} // namespace S3Crt
57} // namespace Aws
ReplicationTimeValue & WithMinutes(int value)
AWS_S3CRT_API ReplicationTimeValue(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_S3CRT_API ReplicationTimeValue & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_S3CRT_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const