AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
IndexDocument.h
1
6#pragma once
7#include <aws/s3/S3_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Xml
16{
17 class XmlNode;
18} // namespace Xml
19} // namespace Utils
20namespace S3
21{
22namespace Model
23{
24
31 {
32 public:
33 AWS_S3_API IndexDocument();
34 AWS_S3_API IndexDocument(const Aws::Utils::Xml::XmlNode& xmlNode);
36
37 AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
38
39
41
52 inline const Aws::String& GetSuffix() const{ return m_suffix; }
53 inline bool SuffixHasBeenSet() const { return m_suffixHasBeenSet; }
54 inline void SetSuffix(const Aws::String& value) { m_suffixHasBeenSet = true; m_suffix = value; }
55 inline void SetSuffix(Aws::String&& value) { m_suffixHasBeenSet = true; m_suffix = std::move(value); }
56 inline void SetSuffix(const char* value) { m_suffixHasBeenSet = true; m_suffix.assign(value); }
57 inline IndexDocument& WithSuffix(const Aws::String& value) { SetSuffix(value); return *this;}
58 inline IndexDocument& WithSuffix(Aws::String&& value) { SetSuffix(std::move(value)); return *this;}
59 inline IndexDocument& WithSuffix(const char* value) { SetSuffix(value); return *this;}
61 private:
62
63 Aws::String m_suffix;
64 bool m_suffixHasBeenSet = false;
65 };
66
67} // namespace Model
68} // namespace S3
69} // namespace Aws
void SetSuffix(Aws::String &&value)
AWS_S3_API IndexDocument & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetSuffix(const Aws::String &value)
void SetSuffix(const char *value)
IndexDocument & WithSuffix(const char *value)
IndexDocument & WithSuffix(Aws::String &&value)
const Aws::String & GetSuffix() const
IndexDocument & WithSuffix(const Aws::String &value)
AWS_S3_API IndexDocument(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String