91 lines
2.4 KiB
C++
91 lines
2.4 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/ec2/EC2_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Xml
|
|
{
|
|
class XmlNode;
|
|
} // namespace Xml
|
|
} // namespace Utils
|
|
namespace EC2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Describes an IPv6 address.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceIpv6Address">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_EC2_API InstanceIpv6Address
|
|
{
|
|
public:
|
|
InstanceIpv6Address();
|
|
InstanceIpv6Address(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
InstanceIpv6Address& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
|
|
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
|
|
void OutputToStream(Aws::OStream& oStream, const char* location) const;
|
|
|
|
|
|
/**
|
|
* <p>The IPv6 address.</p>
|
|
*/
|
|
inline const Aws::String& GetIpv6Address() const{ return m_ipv6Address; }
|
|
|
|
/**
|
|
* <p>The IPv6 address.</p>
|
|
*/
|
|
inline bool Ipv6AddressHasBeenSet() const { return m_ipv6AddressHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The IPv6 address.</p>
|
|
*/
|
|
inline void SetIpv6Address(const Aws::String& value) { m_ipv6AddressHasBeenSet = true; m_ipv6Address = value; }
|
|
|
|
/**
|
|
* <p>The IPv6 address.</p>
|
|
*/
|
|
inline void SetIpv6Address(Aws::String&& value) { m_ipv6AddressHasBeenSet = true; m_ipv6Address = std::move(value); }
|
|
|
|
/**
|
|
* <p>The IPv6 address.</p>
|
|
*/
|
|
inline void SetIpv6Address(const char* value) { m_ipv6AddressHasBeenSet = true; m_ipv6Address.assign(value); }
|
|
|
|
/**
|
|
* <p>The IPv6 address.</p>
|
|
*/
|
|
inline InstanceIpv6Address& WithIpv6Address(const Aws::String& value) { SetIpv6Address(value); return *this;}
|
|
|
|
/**
|
|
* <p>The IPv6 address.</p>
|
|
*/
|
|
inline InstanceIpv6Address& WithIpv6Address(Aws::String&& value) { SetIpv6Address(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The IPv6 address.</p>
|
|
*/
|
|
inline InstanceIpv6Address& WithIpv6Address(const char* value) { SetIpv6Address(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_ipv6Address;
|
|
bool m_ipv6AddressHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|