AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StorageLocation.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Xml
17{
18 class XmlNode;
19} // namespace Xml
20} // namespace Utils
21namespace EC2
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_EC2_API StorageLocation();
35 AWS_EC2_API StorageLocation(const Aws::Utils::Xml::XmlNode& xmlNode);
37
38 AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
39 AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
40
41
43
46 inline const Aws::String& GetBucket() const{ return m_bucket; }
47 inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; }
48 inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; }
49 inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); }
50 inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); }
51 inline StorageLocation& WithBucket(const Aws::String& value) { SetBucket(value); return *this;}
52 inline StorageLocation& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;}
53 inline StorageLocation& WithBucket(const char* value) { SetBucket(value); return *this;}
55
57
60 inline const Aws::String& GetKey() const{ return m_key; }
61 inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
62 inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; }
63 inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); }
64 inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); }
65 inline StorageLocation& WithKey(const Aws::String& value) { SetKey(value); return *this;}
66 inline StorageLocation& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;}
67 inline StorageLocation& WithKey(const char* value) { SetKey(value); return *this;}
69 private:
70
71 Aws::String m_bucket;
72 bool m_bucketHasBeenSet = false;
73
74 Aws::String m_key;
75 bool m_keyHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace EC2
80} // namespace Aws
void SetBucket(const char *value)
void SetKey(const Aws::String &value)
void SetKey(Aws::String &&value)
AWS_EC2_API StorageLocation & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_EC2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
StorageLocation & WithKey(Aws::String &&value)
AWS_EC2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
StorageLocation & WithKey(const char *value)
StorageLocation & WithBucket(const char *value)
void SetKey(const char *value)
const Aws::String & GetKey() const
const Aws::String & GetBucket() const
void SetBucket(const Aws::String &value)
AWS_EC2_API StorageLocation(const Aws::Utils::Xml::XmlNode &xmlNode)
StorageLocation & WithKey(const Aws::String &value)
StorageLocation & WithBucket(Aws::String &&value)
void SetBucket(Aws::String &&value)
StorageLocation & WithBucket(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream