Interface CfnDomain.DomainEntryProperty

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

@Stability(Stable) public static interface CfnDomain.DomainEntryProperty extends software.amazon.jsii.JsiiSerializable
Describes a domain recordset entry.

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.lightsail.*;
 DomainEntryProperty domainEntryProperty = DomainEntryProperty.builder()
         .name("name")
         .target("target")
         .type("type")
         // the properties below are optional
         .id("id")
         .isAlias(false)
         .build();
 

See Also: