AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
TransitGatewayMulticastDomainOptions.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/ec2/model/Igmpv2SupportValue.h>
10#include <aws/ec2/model/StaticSourcesSupportValue.h>
11#include <aws/ec2/model/AutoAcceptSharedAssociationsValue.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Xml
19{
20 class XmlNode;
21} // namespace Xml
22} // namespace Utils
23namespace EC2
24{
25namespace Model
26{
27
35 {
36 public:
37 AWS_EC2_API TransitGatewayMulticastDomainOptions() = default;
40
41 AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
42 AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
43
44
46
50 inline Igmpv2SupportValue GetIgmpv2Support() const { return m_igmpv2Support; }
51 inline bool Igmpv2SupportHasBeenSet() const { return m_igmpv2SupportHasBeenSet; }
52 inline void SetIgmpv2Support(Igmpv2SupportValue value) { m_igmpv2SupportHasBeenSet = true; m_igmpv2Support = value; }
55
57
61 inline StaticSourcesSupportValue GetStaticSourcesSupport() const { return m_staticSourcesSupport; }
62 inline bool StaticSourcesSupportHasBeenSet() const { return m_staticSourcesSupportHasBeenSet; }
63 inline void SetStaticSourcesSupport(StaticSourcesSupportValue value) { m_staticSourcesSupportHasBeenSet = true; m_staticSourcesSupport = value; }
66
68
72 inline AutoAcceptSharedAssociationsValue GetAutoAcceptSharedAssociations() const { return m_autoAcceptSharedAssociations; }
73 inline bool AutoAcceptSharedAssociationsHasBeenSet() const { return m_autoAcceptSharedAssociationsHasBeenSet; }
74 inline void SetAutoAcceptSharedAssociations(AutoAcceptSharedAssociationsValue value) { m_autoAcceptSharedAssociationsHasBeenSet = true; m_autoAcceptSharedAssociations = value; }
77 private:
78
80 bool m_igmpv2SupportHasBeenSet = false;
81
83 bool m_staticSourcesSupportHasBeenSet = false;
84
86 bool m_autoAcceptSharedAssociationsHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace EC2
91} // namespace Aws
TransitGatewayMulticastDomainOptions & WithAutoAcceptSharedAssociations(AutoAcceptSharedAssociationsValue value)
void SetAutoAcceptSharedAssociations(AutoAcceptSharedAssociationsValue value)
AWS_EC2_API TransitGatewayMulticastDomainOptions(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_EC2_API TransitGatewayMulticastDomainOptions & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
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
TransitGatewayMulticastDomainOptions & WithStaticSourcesSupport(StaticSourcesSupportValue value)
TransitGatewayMulticastDomainOptions & WithIgmpv2Support(Igmpv2SupportValue value)
std::basic_ostream< char, std::char_traits< char > > OStream