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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDomain.SubDomainSettingProperty
static final class
An implementation forCfnDomain.SubDomainSettingProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The branch name setting for the subdomain.The prefix setting for the subdomain.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBranchName
The branch name setting for the subdomain.Length Constraints: Minimum length of 1. Maximum length of 255.
Pattern: (?s).+
-
getPrefix
The prefix setting for the subdomain.Length Constraints: Maximum length of 255.
Pattern: (?s).*
-
builder
-