Show / Hide Table of Contents

Interface CfnResolverEndpoint.IIpAddressRequestProperty

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.

Namespace: Amazon.CDK.AWS.Route53Resolver
Assembly: Amazon.CDK.AWS.Route53Resolver.dll
Syntax (csharp)
public interface IIpAddressRequestProperty
Syntax (vb)
Public Interface IIpAddressRequestProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53resolver-resolverendpoint-ipaddressrequest.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Route53Resolver;

IpAddressRequestProperty ipAddressRequestProperty = new IpAddressRequestProperty {
    SubnetId = "subnetId",

    // the properties below are optional
    Ip = "ip"
};

Synopsis

Properties

Ip

The IP address that you want to use for DNS queries.

SubnetId

The ID of the subnet that contains the IP address.

Properties

Ip

The IP address that you want to use for DNS queries.

virtual string Ip { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53resolver-resolverendpoint-ipaddressrequest.html#cfn-route53resolver-resolverendpoint-ipaddressrequest-ip

SubnetId

The ID of the subnet that contains the IP address.

string SubnetId { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53resolver-resolverendpoint-ipaddressrequest.html#cfn-route53resolver-resolverendpoint-ipaddressrequest-subnetid

Back to top Generated by DocFX