/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Route53Resolver { namespace Model { /** *

In a CreateResolverRule * request, an array of the IPs that you want to forward DNS queries * to.

See Also:

AWS * API Reference

*/ class TargetAddress { public: AWS_ROUTE53RESOLVER_API TargetAddress(); AWS_ROUTE53RESOLVER_API TargetAddress(Aws::Utils::Json::JsonView jsonValue); AWS_ROUTE53RESOLVER_API TargetAddress& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_ROUTE53RESOLVER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

One IPv4 address that you want to forward DNS queries to.

*/ inline const Aws::String& GetIp() const{ return m_ip; } /** *

One IPv4 address that you want to forward DNS queries to.

*/ inline bool IpHasBeenSet() const { return m_ipHasBeenSet; } /** *

One IPv4 address that you want to forward DNS queries to.

*/ inline void SetIp(const Aws::String& value) { m_ipHasBeenSet = true; m_ip = value; } /** *

One IPv4 address that you want to forward DNS queries to.

*/ inline void SetIp(Aws::String&& value) { m_ipHasBeenSet = true; m_ip = std::move(value); } /** *

One IPv4 address that you want to forward DNS queries to.

*/ inline void SetIp(const char* value) { m_ipHasBeenSet = true; m_ip.assign(value); } /** *

One IPv4 address that you want to forward DNS queries to.

*/ inline TargetAddress& WithIp(const Aws::String& value) { SetIp(value); return *this;} /** *

One IPv4 address that you want to forward DNS queries to.

*/ inline TargetAddress& WithIp(Aws::String&& value) { SetIp(std::move(value)); return *this;} /** *

One IPv4 address that you want to forward DNS queries to.

*/ inline TargetAddress& WithIp(const char* value) { SetIp(value); return *this;} /** *

The port at Ip that you want to forward DNS queries to.

*/ inline int GetPort() const{ return m_port; } /** *

The port at Ip that you want to forward DNS queries to.

*/ inline bool PortHasBeenSet() const { return m_portHasBeenSet; } /** *

The port at Ip that you want to forward DNS queries to.

*/ inline void SetPort(int value) { m_portHasBeenSet = true; m_port = value; } /** *

The port at Ip that you want to forward DNS queries to.

*/ inline TargetAddress& WithPort(int value) { SetPort(value); return *this;} /** *

One IPv6 address that you want to forward DNS queries to.

*/ inline const Aws::String& GetIpv6() const{ return m_ipv6; } /** *

One IPv6 address that you want to forward DNS queries to.

*/ inline bool Ipv6HasBeenSet() const { return m_ipv6HasBeenSet; } /** *

One IPv6 address that you want to forward DNS queries to.

*/ inline void SetIpv6(const Aws::String& value) { m_ipv6HasBeenSet = true; m_ipv6 = value; } /** *

One IPv6 address that you want to forward DNS queries to.

*/ inline void SetIpv6(Aws::String&& value) { m_ipv6HasBeenSet = true; m_ipv6 = std::move(value); } /** *

One IPv6 address that you want to forward DNS queries to.

*/ inline void SetIpv6(const char* value) { m_ipv6HasBeenSet = true; m_ipv6.assign(value); } /** *

One IPv6 address that you want to forward DNS queries to.

*/ inline TargetAddress& WithIpv6(const Aws::String& value) { SetIpv6(value); return *this;} /** *

One IPv6 address that you want to forward DNS queries to.

*/ inline TargetAddress& WithIpv6(Aws::String&& value) { SetIpv6(std::move(value)); return *this;} /** *

One IPv6 address that you want to forward DNS queries to.

*/ inline TargetAddress& WithIpv6(const char* value) { SetIpv6(value); return *this;} private: Aws::String m_ip; bool m_ipHasBeenSet = false; int m_port; bool m_portHasBeenSet = false; Aws::String m_ipv6; bool m_ipv6HasBeenSet = false; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws