Interface CfnVirtualNode.DnsServiceDiscoveryProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVirtualNode.DnsServiceDiscoveryProperty.Jsii$Proxy
Enclosing class:
CfnVirtualNode

@Stability(Stable) public static interface CfnVirtualNode.DnsServiceDiscoveryProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the DNS service discovery information for your virtual node.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appmesh.*;
 DnsServiceDiscoveryProperty dnsServiceDiscoveryProperty = DnsServiceDiscoveryProperty.builder()
         .hostname("hostname")
         // the properties below are optional
         .ipPreference("ipPreference")
         .responseType("responseType")
         .build();
 

See Also: