AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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