@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:43.831Z") @Stability(value=Stable) public class VpcEndpointServiceDomainName extends Construct
Example:
import software.amazon.awscdk.services.route53.HostedZone;
import software.amazon.awscdk.services.route53.VpcEndpointServiceDomainName;
HostedZone zone;
VpcEndpointService vpces;
VpcEndpointServiceDomainName.Builder.create(this, "EndpointDomain")
.endpointService(vpces)
.domainName("my-stuff.aws-cdk.dev")
.publicHostedZone(zone)
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
VpcEndpointServiceDomainName.Builder
A fluent builder for
VpcEndpointServiceDomainName. |
software.amazon.jsii.JsiiObject.InitializationModeIConstruct.Jsii$Default, IConstruct.Jsii$Proxy| Modifier | Constructor and Description |
|---|---|
|
VpcEndpointServiceDomainName(software.constructs.Construct scope,
String id,
VpcEndpointServiceDomainNameProps props) |
protected |
VpcEndpointServiceDomainName(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
VpcEndpointServiceDomainName(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getDomainName()
The domain name associated with the private DNS configuration.
|
void |
setDomainName(String value)
The domain name associated with the private DNS configuration.
|
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validatejsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetprotected VpcEndpointServiceDomainName(software.amazon.jsii.JsiiObjectRef objRef)
protected VpcEndpointServiceDomainName(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public VpcEndpointServiceDomainName(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
VpcEndpointServiceDomainNameProps props)
scope - This parameter is required.id - This parameter is required.props - This parameter is required.@Stability(value=Stable) @NotNull public String getDomainName()
@Stability(value=Stable)
public void setDomainName(@NotNull
String value)
Copyright © 2022. All rights reserved.