Show / Hide Table of Contents

Class VpcEndpointServiceDomainName

A Private DNS configuration for a VPC endpoint service.

Inheritance
System.Object
Construct
VpcEndpointServiceDomainName
Implements
IConstruct
Constructs.IConstruct
IDependable
Inherited Members
Construct.IsConstruct(Object)
Construct.OnPrepare()
Construct.OnSynthesize(ISynthesisSession)
Construct.OnValidate()
Construct.Prepare()
Construct.Synthesize(ISynthesisSession)
Construct.Validate()
Construct.Node
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.AWS.Route53.dll
Syntax (csharp)
public class VpcEndpointServiceDomainName : Construct, IConstruct, IDependable
Syntax (vb)
Public Class VpcEndpointServiceDomainName
    Inherits Construct
    Implements IConstruct, IDependable
Remarks

ExampleMetadata: infused

Examples
using Amazon.CDK.AWS.Route53;
HostedZone zone;
VpcEndpointService vpces;


new VpcEndpointServiceDomainName(this, "EndpointDomain", new VpcEndpointServiceDomainNameProps {
    EndpointService = vpces,
    DomainName = "my-stuff.aws-cdk.dev",
    PublicHostedZone = zone
});

Synopsis

Constructors

VpcEndpointServiceDomainName(ByRefValue)

Used by jsii to construct an instance of this class from a Javascript-owned object reference

VpcEndpointServiceDomainName(DeputyBase.DeputyProps)

Used by jsii to construct an instance of this class from DeputyProps

VpcEndpointServiceDomainName(Construct, String, IVpcEndpointServiceDomainNameProps)

Properties

DomainName

The domain name associated with the private DNS configuration.

Constructors

VpcEndpointServiceDomainName(ByRefValue)

Used by jsii to construct an instance of this class from a Javascript-owned object reference

protected VpcEndpointServiceDomainName(ByRefValue reference)
Parameters
reference Amazon.JSII.Runtime.Deputy.ByRefValue

The Javascript-owned object reference

VpcEndpointServiceDomainName(DeputyBase.DeputyProps)

Used by jsii to construct an instance of this class from DeputyProps

protected VpcEndpointServiceDomainName(DeputyBase.DeputyProps props)
Parameters
props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps

The deputy props

VpcEndpointServiceDomainName(Construct, String, IVpcEndpointServiceDomainNameProps)

public VpcEndpointServiceDomainName(Construct scope, string id, IVpcEndpointServiceDomainNameProps props)
Parameters
scope Constructs.Construct
id System.String
props IVpcEndpointServiceDomainNameProps

Properties

DomainName

The domain name associated with the private DNS configuration.

public virtual string DomainName { get; set; }
Property Value

System.String

Implements

IConstruct
Constructs.IConstruct
IDependable
Back to top Generated by DocFX