Interface CfnResolverEndpointPropsMixin.IpAddressRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResolverEndpointPropsMixin.IpAddressRequestProperty.Jsii$Proxy
- Enclosing class:
CfnResolverEndpointPropsMixin
@Stability(Stable)
public static interface CfnResolverEndpointPropsMixin.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.cfnpropertymixins.services.route53resolver.*;
IpAddressRequestProperty ipAddressRequestProperty = IpAddressRequestProperty.builder()
.ip("ip")
.ipv6("ipv6")
.subnetId("subnetId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResolverEndpointPropsMixin.IpAddressRequestPropertystatic final classAn implementation forCfnResolverEndpointPropsMixin.IpAddressRequestProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
getSubnetId
The ID of the subnet that contains the IP address.- See Also:
-
builder
-