Interface CfnResolverRule.TargetAddressProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnResolverRule.TargetAddressProperty.Jsii$Proxy
Enclosing class:
CfnResolverRule

@Stability(Stable) public static interface CfnResolverRule.TargetAddressProperty extends software.amazon.jsii.JsiiSerializable
In a CreateResolverRule request, an array of the IPs that you want to forward DNS queries to.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.route53resolver.*;
 TargetAddressProperty targetAddressProperty = TargetAddressProperty.builder()
         .ip("ip")
         .ipv6("ipv6")
         .port("port")
         .protocol("protocol")
         .build();
 

See Also: