Interface CfnDomain.SubDomainSettingProperty

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

@Stability(Stable) public static interface CfnDomain.SubDomainSettingProperty extends software.amazon.jsii.JsiiSerializable
The SubDomainSetting property type enables you to connect a subdomain (for example, example.exampledomain.com) to a specific branch.

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.amplify.*;
 SubDomainSettingProperty subDomainSettingProperty = SubDomainSettingProperty.builder()
         .branchName("branchName")
         .prefix("prefix")
         .build();
 

See Also: