Show / Hide Table of Contents

Class CfnResolverEndpoint.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.

Inheritance
object
CfnResolverEndpoint.IpAddressRequestProperty
Implements
CfnResolverEndpoint.IIpAddressRequestProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Route53Resolver
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnResolverEndpoint.IpAddressRequestProperty : CfnResolverEndpoint.IIpAddressRequestProperty
Syntax (vb)
Public Class CfnResolverEndpoint.IpAddressRequestProperty Implements CfnResolverEndpoint.IIpAddressRequestProperty
Remarks

See: 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;

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

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

Synopsis

Constructors

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.

Properties

Ip

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

Ipv6

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

SubnetId

The ID of the subnet that contains the IP address.

Constructors

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.

public IpAddressRequestProperty()
Remarks

See: 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;

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

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

Properties

Ip

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

public string? Ip { get; set; }
Property Value

string

Remarks

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

Ipv6

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

public string? Ipv6 { get; set; }
Property Value

string

Remarks

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

SubnetId

The ID of the subnet that contains the IP address.

public string SubnetId { get; set; }
Property Value

string

Remarks

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

Implements

CfnResolverEndpoint.IIpAddressRequestProperty
Back to top Generated by DocFX