AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
PrefixListEntry.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 PrefixListEntry();
35 AWS_EC2_API PrefixListEntry(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& GetCidr() const{ return m_cidr; }
47 inline bool CidrHasBeenSet() const { return m_cidrHasBeenSet; }
48 inline void SetCidr(const Aws::String& value) { m_cidrHasBeenSet = true; m_cidr = value; }
49 inline void SetCidr(Aws::String&& value) { m_cidrHasBeenSet = true; m_cidr = std::move(value); }
50 inline void SetCidr(const char* value) { m_cidrHasBeenSet = true; m_cidr.assign(value); }
51 inline PrefixListEntry& WithCidr(const Aws::String& value) { SetCidr(value); return *this;}
52 inline PrefixListEntry& WithCidr(Aws::String&& value) { SetCidr(std::move(value)); return *this;}
53 inline PrefixListEntry& WithCidr(const char* value) { SetCidr(value); return *this;}
55
57
60 inline const Aws::String& GetDescription() const{ return m_description; }
61 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
62 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
63 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
64 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
65 inline PrefixListEntry& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
66 inline PrefixListEntry& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
67 inline PrefixListEntry& WithDescription(const char* value) { SetDescription(value); return *this;}
69 private:
70
71 Aws::String m_cidr;
72 bool m_cidrHasBeenSet = false;
73
74 Aws::String m_description;
75 bool m_descriptionHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace EC2
80} // namespace Aws
void SetDescription(const char *value)
void SetCidr(const Aws::String &value)
void SetCidr(Aws::String &&value)
AWS_EC2_API PrefixListEntry & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetDescription(const Aws::String &value)
bool DescriptionHasBeenSet() const
void SetDescription(Aws::String &&value)
const Aws::String & GetCidr() const
AWS_EC2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
PrefixListEntry & WithCidr(const Aws::String &value)
AWS_EC2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
const Aws::String & GetDescription() const
AWS_EC2_API PrefixListEntry(const Aws::Utils::Xml::XmlNode &xmlNode)
PrefixListEntry & WithDescription(const Aws::String &value)
PrefixListEntry & WithDescription(const char *value)
void SetCidr(const char *value)
PrefixListEntry & WithCidr(const char *value)
bool CidrHasBeenSet() const
PrefixListEntry & WithDescription(Aws::String &&value)
AWS_EC2_API PrefixListEntry()
PrefixListEntry & WithCidr(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream