AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
IntelligentTieringAndOperator.h
1
6#pragma once
7#include <aws/s3/S3_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/s3/model/Tag.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Xml
18{
19 class XmlNode;
20} // namespace Xml
21} // namespace Utils
22namespace S3
23{
24namespace Model
25{
26
35 {
36 public:
40
41 AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
42
43
45
49 inline const Aws::String& GetPrefix() const{ return m_prefix; }
50 inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; }
51 inline void SetPrefix(const Aws::String& value) { m_prefixHasBeenSet = true; m_prefix = value; }
52 inline void SetPrefix(Aws::String&& value) { m_prefixHasBeenSet = true; m_prefix = std::move(value); }
53 inline void SetPrefix(const char* value) { m_prefixHasBeenSet = true; m_prefix.assign(value); }
54 inline IntelligentTieringAndOperator& WithPrefix(const Aws::String& value) { SetPrefix(value); return *this;}
55 inline IntelligentTieringAndOperator& WithPrefix(Aws::String&& value) { SetPrefix(std::move(value)); return *this;}
56 inline IntelligentTieringAndOperator& WithPrefix(const char* value) { SetPrefix(value); return *this;}
58
60
64 inline const Aws::Vector<Tag>& GetTags() const{ return m_tags; }
65 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
66 inline void SetTags(const Aws::Vector<Tag>& value) { m_tagsHasBeenSet = true; m_tags = value; }
67 inline void SetTags(Aws::Vector<Tag>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
68 inline IntelligentTieringAndOperator& WithTags(const Aws::Vector<Tag>& value) { SetTags(value); return *this;}
69 inline IntelligentTieringAndOperator& WithTags(Aws::Vector<Tag>&& value) { SetTags(std::move(value)); return *this;}
70 inline IntelligentTieringAndOperator& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; }
71 inline IntelligentTieringAndOperator& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; }
73 private:
74
75 Aws::String m_prefix;
76 bool m_prefixHasBeenSet = false;
77
78 Aws::Vector<Tag> m_tags;
79 bool m_tagsHasBeenSet = false;
80 };
81
82} // namespace Model
83} // namespace S3
84} // namespace Aws
IntelligentTieringAndOperator & WithTags(Aws::Vector< Tag > &&value)
IntelligentTieringAndOperator & WithPrefix(const Aws::String &value)
AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
IntelligentTieringAndOperator & WithPrefix(const char *value)
IntelligentTieringAndOperator & AddTags(Tag &&value)
IntelligentTieringAndOperator & WithTags(const Aws::Vector< Tag > &value)
IntelligentTieringAndOperator & WithPrefix(Aws::String &&value)
AWS_S3_API IntelligentTieringAndOperator(const Aws::Utils::Xml::XmlNode &xmlNode)
IntelligentTieringAndOperator & AddTags(const Tag &value)
AWS_S3_API IntelligentTieringAndOperator & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector