Interface CfnResolverEndpoint.IpAddressRequestProperty

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

@Stability(Stable) public static interface CfnResolverEndpoint.IpAddressRequestProperty extends software.amazon.jsii.JsiiSerializable
In a CreateResolverEndpoint request, the IP address that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints). IpAddressRequest also includes the ID of the subnet that contains the IP address.

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.*;
 IpAddressRequestProperty ipAddressRequestProperty = IpAddressRequestProperty.builder()
         .subnetId("subnetId")
         // the properties below are optional
         .ip("ip")
         .ipv6("ipv6")
         .build();
 

See Also: