AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
PropagatingVgw.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:
35 AWS_EC2_API PropagatingVgw();
36 AWS_EC2_API PropagatingVgw(const Aws::Utils::Xml::XmlNode& xmlNode);
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
47 inline const Aws::String& GetGatewayId() const{ return m_gatewayId; }
48 inline bool GatewayIdHasBeenSet() const { return m_gatewayIdHasBeenSet; }
49 inline void SetGatewayId(const Aws::String& value) { m_gatewayIdHasBeenSet = true; m_gatewayId = value; }
50 inline void SetGatewayId(Aws::String&& value) { m_gatewayIdHasBeenSet = true; m_gatewayId = std::move(value); }
51 inline void SetGatewayId(const char* value) { m_gatewayIdHasBeenSet = true; m_gatewayId.assign(value); }
52 inline PropagatingVgw& WithGatewayId(const Aws::String& value) { SetGatewayId(value); return *this;}
53 inline PropagatingVgw& WithGatewayId(Aws::String&& value) { SetGatewayId(std::move(value)); return *this;}
54 inline PropagatingVgw& WithGatewayId(const char* value) { SetGatewayId(value); return *this;}
56 private:
57
58 Aws::String m_gatewayId;
59 bool m_gatewayIdHasBeenSet = false;
60 };
61
62} // namespace Model
63} // namespace EC2
64} // namespace Aws
PropagatingVgw & WithGatewayId(Aws::String &&value)
PropagatingVgw & WithGatewayId(const Aws::String &value)
PropagatingVgw & WithGatewayId(const char *value)
AWS_EC2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
void SetGatewayId(const Aws::String &value)
void SetGatewayId(const char *value)
const Aws::String & GetGatewayId() const
AWS_EC2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_EC2_API PropagatingVgw(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_EC2_API PropagatingVgw & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetGatewayId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream