Interface CfnServiceNetworkVpcAssociationPropsMixin.DnsOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServiceNetworkVpcAssociationPropsMixin.DnsOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnServiceNetworkVpcAssociationPropsMixin
@Stability(Stable)
public static interface CfnServiceNetworkVpcAssociationPropsMixin.DnsOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The DNS configuration options.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.vpclattice.mixins.*;
DnsOptionsProperty dnsOptionsProperty = DnsOptionsProperty.builder()
.privateDnsPreference("privateDnsPreference")
.privateDnsSpecifiedDomains(List.of("privateDnsSpecifiedDomains"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnServiceNetworkVpcAssociationPropsMixin.DnsOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPrivateDnsPreference
The preference for which private domains have a private hosted zone created for and associated with the specified VPC.Only supported when private DNS is enabled and when the VPC endpoint type is ServiceNetwork or Resource.
- See Also:
-
getPrivateDnsSpecifiedDomains
Indicates which of the private domains to create private hosted zones for and associate with the specified VPC.Only supported when private DNS is enabled and the private DNS preference is
VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINSorSPECIFIED_DOMAINS_ONLY.- See Also:
-
builder
@Stability(Stable) static CfnServiceNetworkVpcAssociationPropsMixin.DnsOptionsProperty.Builder builder()
-