AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AccessGrantsLocationConfiguration.h
1
6#pragma once
7#include <aws/s3control/S3Control_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 S3Control
21{
22namespace Model
23{
24
34 {
35 public:
39
40 AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
41
42
44
59 inline const Aws::String& GetS3SubPrefix() const{ return m_s3SubPrefix; }
60 inline bool S3SubPrefixHasBeenSet() const { return m_s3SubPrefixHasBeenSet; }
61 inline void SetS3SubPrefix(const Aws::String& value) { m_s3SubPrefixHasBeenSet = true; m_s3SubPrefix = value; }
62 inline void SetS3SubPrefix(Aws::String&& value) { m_s3SubPrefixHasBeenSet = true; m_s3SubPrefix = std::move(value); }
63 inline void SetS3SubPrefix(const char* value) { m_s3SubPrefixHasBeenSet = true; m_s3SubPrefix.assign(value); }
64 inline AccessGrantsLocationConfiguration& WithS3SubPrefix(const Aws::String& value) { SetS3SubPrefix(value); return *this;}
65 inline AccessGrantsLocationConfiguration& WithS3SubPrefix(Aws::String&& value) { SetS3SubPrefix(std::move(value)); return *this;}
66 inline AccessGrantsLocationConfiguration& WithS3SubPrefix(const char* value) { SetS3SubPrefix(value); return *this;}
68 private:
69
70 Aws::String m_s3SubPrefix;
71 bool m_s3SubPrefixHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace S3Control
76} // namespace Aws
AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
AccessGrantsLocationConfiguration & WithS3SubPrefix(const Aws::String &value)
AWS_S3CONTROL_API AccessGrantsLocationConfiguration(const Aws::Utils::Xml::XmlNode &xmlNode)
AccessGrantsLocationConfiguration & WithS3SubPrefix(Aws::String &&value)
AccessGrantsLocationConfiguration & WithS3SubPrefix(const char *value)
AWS_S3CONTROL_API AccessGrantsLocationConfiguration & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String