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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnResolverEndpoint.IpAddressRequestProperty
static final class
An implementation forCfnResolverEndpoint.IpAddressRequestProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSubnetId
The ID of the subnet that contains the IP address.- See Also:
-
getIp
The IPv4 address that you want to use for DNS queries.- See Also:
-
getIpv6
The IPv6 address that you want to use for DNS queries.- See Also:
-
builder
-