interface IpAddressRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53Resolver.Mixins.CfnResolverEndpointPropsMixin.IpAddressRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53resolver/mixins#CfnResolverEndpointPropsMixin_IpAddressRequestProperty |
Java | software.amazon.awscdk.mixins.preview.services.route53resolver.mixins.CfnResolverEndpointPropsMixin.IpAddressRequestProperty |
Python | aws_cdk.mixins_preview.aws_route53resolver.mixins.CfnResolverEndpointPropsMixin.IpAddressRequestProperty |
TypeScript | @aws-cdk/mixins-preview » aws_route53resolver » mixins » CfnResolverEndpointPropsMixin » IpAddressRequestProperty |
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 { mixins as route53resolver_mixins } from '@aws-cdk/mixins-preview/aws-route53resolver';
const ipAddressRequestProperty: route53resolver_mixins.CfnResolverEndpointPropsMixin.IpAddressRequestProperty = {
ip: 'ip',
ipv6: 'ipv6',
subnetId: 'subnetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| ip? | string | The IPv4 address that you want to use for DNS queries. |
| ipv6? | string | The IPv6 address that you want to use for DNS queries. |
| subnet | string | The ID of the subnet that contains the IP address. |
ip?
Type:
string
(optional)
The IPv4 address that you want to use for DNS queries.
ipv6?
Type:
string
(optional)
The IPv6 address that you want to use for DNS queries.
subnetId?
Type:
string
(optional)
The ID of the subnet that contains the IP address.

.NET
Go
Java
Python
TypeScript