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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.SubDomainSettingPropertystatic final classAn 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).+
- See Also:
-
getPrefix
The prefix setting for the subdomain.- See Also:
-
builder
-