Interface CfnDomainMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomainMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.375Z")
@Stability(Stable)
public interface CfnDomainMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDomainPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.amplify.*;
CfnDomainMixinProps cfnDomainMixinProps = CfnDomainMixinProps.builder()
.appId("appId")
.autoSubDomainCreationPatterns(List.of("autoSubDomainCreationPatterns"))
.autoSubDomainIamRole("autoSubDomainIamRole")
.certificateSettings(CertificateSettingsProperty.builder()
.certificateType("certificateType")
.customCertificateArn("customCertificateArn")
.build())
.domainName("domainName")
.enableAutoSubDomain(false)
.subDomainSettings(List.of(SubDomainSettingProperty.builder()
.branchName("branchName")
.prefix("prefix")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomainMixinPropsstatic final classAn implementation forCfnDomainMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDomainMixinProps.Builderbuilder()default StringgetAppId()The unique ID for an Amplify app.Sets the branch patterns for automatic subdomain creation.default ObjectThe required AWS Identity and Access Management (IAMlong) service role for the Amazon Resource Name (ARN) for automatically creating subdomains.default ObjectThe type of SSL/TLS certificate to use for your custom domain.default StringThe domain name for the domain association.default ObjectEnables the automated creation of subdomains for branches.default ObjectThe setting for the subdomain.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAppId
The unique ID for an Amplify app.- See Also:
-
getAutoSubDomainCreationPatterns
Sets the branch patterns for automatic subdomain creation.- See Also:
-
getAutoSubDomainIamRole
The required AWS Identity and Access Management (IAMlong) service role for the Amazon Resource Name (ARN) for automatically creating subdomains.- See Also:
-
getCertificateSettings
The type of SSL/TLS certificate to use for your custom domain.If you don't specify a certificate type, Amplify uses the default certificate that it provisions and manages for you.
Returns union: either
IResolvableorCfnDomainPropsMixin.CertificateSettingsProperty- See Also:
-
getDomainName
The domain name for the domain association.- See Also:
-
getEnableAutoSubDomain
Enables the automated creation of subdomains for branches.Returns union: either
BooleanorIResolvable- See Also:
-
getSubDomainSettings
The setting for the subdomain.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDomainPropsMixin.SubDomainSettingProperty>- See Also:
-
builder
- Returns:
- a
CfnDomainMixinProps.BuilderofCfnDomainMixinProps
-