AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
Ipv4PrefixSpecification.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:
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
49 inline const Aws::String& GetIpv4Prefix() const{ return m_ipv4Prefix; }
50 inline bool Ipv4PrefixHasBeenSet() const { return m_ipv4PrefixHasBeenSet; }
51 inline void SetIpv4Prefix(const Aws::String& value) { m_ipv4PrefixHasBeenSet = true; m_ipv4Prefix = value; }
52 inline void SetIpv4Prefix(Aws::String&& value) { m_ipv4PrefixHasBeenSet = true; m_ipv4Prefix = std::move(value); }
53 inline void SetIpv4Prefix(const char* value) { m_ipv4PrefixHasBeenSet = true; m_ipv4Prefix.assign(value); }
54 inline Ipv4PrefixSpecification& WithIpv4Prefix(const Aws::String& value) { SetIpv4Prefix(value); return *this;}
55 inline Ipv4PrefixSpecification& WithIpv4Prefix(Aws::String&& value) { SetIpv4Prefix(std::move(value)); return *this;}
56 inline Ipv4PrefixSpecification& WithIpv4Prefix(const char* value) { SetIpv4Prefix(value); return *this;}
58 private:
59
60 Aws::String m_ipv4Prefix;
61 bool m_ipv4PrefixHasBeenSet = false;
62 };
63
64} // namespace Model
65} // namespace EC2
66} // namespace Aws
AWS_EC2_API Ipv4PrefixSpecification(const Aws::Utils::Xml::XmlNode &xmlNode)
Ipv4PrefixSpecification & WithIpv4Prefix(const char *value)
Ipv4PrefixSpecification & WithIpv4Prefix(const Aws::String &value)
AWS_EC2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_EC2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
Ipv4PrefixSpecification & WithIpv4Prefix(Aws::String &&value)
AWS_EC2_API Ipv4PrefixSpecification & operator=(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