AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
MatchObjectSize.h
1
6#pragma once
7#include <aws/s3control/S3Control_EXPORTS.h>
8
9namespace Aws
10{
11namespace Utils
12{
13namespace Xml
14{
15 class XmlNode;
16} // namespace Xml
17} // namespace Utils
18namespace S3Control
19{
20namespace Model
21{
22
30 {
31 public:
32 AWS_S3CONTROL_API MatchObjectSize();
33 AWS_S3CONTROL_API MatchObjectSize(const Aws::Utils::Xml::XmlNode& xmlNode);
34 AWS_S3CONTROL_API MatchObjectSize& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
35
36 AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
37
38
40
44 inline long long GetBytesGreaterThan() const{ return m_bytesGreaterThan; }
45 inline bool BytesGreaterThanHasBeenSet() const { return m_bytesGreaterThanHasBeenSet; }
46 inline void SetBytesGreaterThan(long long value) { m_bytesGreaterThanHasBeenSet = true; m_bytesGreaterThan = value; }
47 inline MatchObjectSize& WithBytesGreaterThan(long long value) { SetBytesGreaterThan(value); return *this;}
49
51
55 inline long long GetBytesLessThan() const{ return m_bytesLessThan; }
56 inline bool BytesLessThanHasBeenSet() const { return m_bytesLessThanHasBeenSet; }
57 inline void SetBytesLessThan(long long value) { m_bytesLessThanHasBeenSet = true; m_bytesLessThan = value; }
58 inline MatchObjectSize& WithBytesLessThan(long long value) { SetBytesLessThan(value); return *this;}
60 private:
61
62 long long m_bytesGreaterThan;
63 bool m_bytesGreaterThanHasBeenSet = false;
64
65 long long m_bytesLessThan;
66 bool m_bytesLessThanHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace S3Control
71} // namespace Aws
AWS_S3CONTROL_API MatchObjectSize & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
MatchObjectSize & WithBytesLessThan(long long value)
AWS_S3CONTROL_API MatchObjectSize(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
MatchObjectSize & WithBytesGreaterThan(long long value)