/** * 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 AWS_ROUTE53RESOLVER_API TargetAddress { public: TargetAddress(); TargetAddress(Aws::Utils::Json::JsonView jsonValue); TargetAddress& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** *

One IP address that you want to forward DNS queries to. You can specify only * IPv4 addresses.

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

One IP address that you want to forward DNS queries to. You can specify only * IPv4 addresses.

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

One IP address that you want to forward DNS queries to. You can specify only * IPv4 addresses.

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

One IP address that you want to forward DNS queries to. You can specify only * IPv4 addresses.

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

One IP address that you want to forward DNS queries to. You can specify only * IPv4 addresses.

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

One IP address that you want to forward DNS queries to. You can specify only * IPv4 addresses.

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

One IP address that you want to forward DNS queries to. You can specify only * IPv4 addresses.

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

One IP address that you want to forward DNS queries to. You can specify only * IPv4 addresses.

*/ 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;} private: Aws::String m_ip; bool m_ipHasBeenSet; int m_port; bool m_portHasBeenSet; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws