/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides information about the IP address type in response to UpdateResolverEndpoint.
* See Also:
AWS
* API Reference
The ID of the IP address, specified by the ResolverEndpointId
.
*
The ID of the IP address, specified by the ResolverEndpointId
.
*
The ID of the IP address, specified by the ResolverEndpointId
.
*
The ID of the IP address, specified by the ResolverEndpointId
.
*
The ID of the IP address, specified by the ResolverEndpointId
.
*
The ID of the IP address, specified by the ResolverEndpointId
.
*
The ID of the IP address, specified by the ResolverEndpointId
.
*
The ID of the IP address, specified by the ResolverEndpointId
.
*
The IPv6 address that you want to use for DNS queries.
*/ inline const Aws::String& GetIpv6() const{ return m_ipv6; } /** *The IPv6 address that you want to use for DNS queries.
*/ inline bool Ipv6HasBeenSet() const { return m_ipv6HasBeenSet; } /** *The IPv6 address that you want to use for DNS queries.
*/ inline void SetIpv6(const Aws::String& value) { m_ipv6HasBeenSet = true; m_ipv6 = value; } /** *The IPv6 address that you want to use for DNS queries.
*/ inline void SetIpv6(Aws::String&& value) { m_ipv6HasBeenSet = true; m_ipv6 = std::move(value); } /** *The IPv6 address that you want to use for DNS queries.
*/ inline void SetIpv6(const char* value) { m_ipv6HasBeenSet = true; m_ipv6.assign(value); } /** *The IPv6 address that you want to use for DNS queries.
*/ inline UpdateIpAddress& WithIpv6(const Aws::String& value) { SetIpv6(value); return *this;} /** *The IPv6 address that you want to use for DNS queries.
*/ inline UpdateIpAddress& WithIpv6(Aws::String&& value) { SetIpv6(std::move(value)); return *this;} /** *The IPv6 address that you want to use for DNS queries.
*/ inline UpdateIpAddress& WithIpv6(const char* value) { SetIpv6(value); return *this;} private: Aws::String m_ipId; bool m_ipIdHasBeenSet = false; Aws::String m_ipv6; bool m_ipv6HasBeenSet = false; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws