AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ReplicationRuleAndOperator.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
39 {
40 public:
41 AWS_S3_API ReplicationRuleAndOperator() = default;
44
45 AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
46
47
49
53 inline const Aws::String& GetPrefix() const { return m_prefix; }
54 inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; }
55 template<typename PrefixT = Aws::String>
56 void SetPrefix(PrefixT&& value) { m_prefixHasBeenSet = true; m_prefix = std::forward<PrefixT>(value); }
57 template<typename PrefixT = Aws::String>
58 ReplicationRuleAndOperator& WithPrefix(PrefixT&& value) { SetPrefix(std::forward<PrefixT>(value)); return *this;}
60
62
65 inline const Aws::Vector<Tag>& GetTags() const { return m_tags; }
66 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
67 template<typename TagsT = Aws::Vector<Tag>>
68 void SetTags(TagsT&& value) { m_tagsHasBeenSet = true; m_tags = std::forward<TagsT>(value); }
69 template<typename TagsT = Aws::Vector<Tag>>
70 ReplicationRuleAndOperator& WithTags(TagsT&& value) { SetTags(std::forward<TagsT>(value)); return *this;}
71 template<typename TagsT = Tag>
72 ReplicationRuleAndOperator& AddTags(TagsT&& value) { m_tagsHasBeenSet = true; m_tags.emplace_back(std::forward<TagsT>(value)); return *this; }
74 private:
75
76 Aws::String m_prefix;
77 bool m_prefixHasBeenSet = false;
78
79 Aws::Vector<Tag> m_tags;
80 bool m_tagsHasBeenSet = false;
81 };
82
83} // namespace Model
84} // namespace S3
85} // namespace Aws
AWS_S3_API ReplicationRuleAndOperator()=default
AWS_S3_API ReplicationRuleAndOperator(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_S3_API ReplicationRuleAndOperator & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
ReplicationRuleAndOperator & WithPrefix(PrefixT &&value)
ReplicationRuleAndOperator & WithTags(TagsT &&value)
AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
ReplicationRuleAndOperator & AddTags(TagsT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector