AWS SDK for C++

AWS SDK for C++ Version 1.11.767

Loading...
Searching...
No Matches
InvalidS3ConfigurationException.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/email/SES_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Xml {
16class XmlNode;
17} // namespace Xml
18} // namespace Utils
19namespace SES {
20namespace Model {
21
33 public:
34 AWS_SES_API InvalidS3ConfigurationException() = default;
37
38 AWS_SES_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
39 AWS_SES_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
40
42
45 inline const Aws::String& GetBucket() const { return m_bucket; }
46 inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; }
47 template <typename BucketT = Aws::String>
48 void SetBucket(BucketT&& value) {
49 m_bucketHasBeenSet = true;
50 m_bucket = std::forward<BucketT>(value);
51 }
52 template <typename BucketT = Aws::String>
54 SetBucket(std::forward<BucketT>(value));
55 return *this;
56 }
58 private:
59 Aws::String m_bucket;
60 bool m_bucketHasBeenSet = false;
61};
62
63} // namespace Model
64} // namespace SES
65} // namespace Aws
AWS_SES_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_SES_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_SES_API InvalidS3ConfigurationException & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
InvalidS3ConfigurationException & WithBucket(BucketT &&value)
AWS_SES_API InvalidS3ConfigurationException(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream