@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:44.525Z") @Stability(value=Stable) public interface CfnUserPoolDomainProps extends software.amazon.jsii.JsiiSerializable
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.cognito.*;
CfnUserPoolDomainProps cfnUserPoolDomainProps = CfnUserPoolDomainProps.builder()
.domain("domain")
.userPoolId("userPoolId")
// the properties below are optional
.customDomainConfig(CustomDomainConfigTypeProperty.builder()
.certificateArn("certificateArn")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnUserPoolDomainProps.Builder
A builder for
CfnUserPoolDomainProps |
static class |
CfnUserPoolDomainProps.Jsii$Proxy
An implementation for
CfnUserPoolDomainProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnUserPoolDomainProps.Builder |
builder() |
default Object |
getCustomDomainConfig()
The configuration for a custom domain that hosts the sign-up and sign-in pages for your application.
|
String |
getDomain()
The domain name for the domain that hosts the sign-up and sign-in pages for your application.
|
String |
getUserPoolId()
The user pool ID for the user pool where you want to associate a user pool domain.
|
@Stability(value=Stable) @NotNull String getDomain()
For example: auth.example.com . If you're using a prefix domain, this field denotes the first part of the domain before .auth.[region].amazoncognito.com .
This string can include only lowercase letters, numbers, and hyphens. Don't use a hyphen for the first or last character. Use periods to separate subdomain names.
@Stability(value=Stable) @NotNull String getUserPoolId()
@Stability(value=Stable) @Nullable default Object getCustomDomainConfig()
Use this object to specify an SSL certificate that is managed by ACM.
@Stability(value=Stable) static CfnUserPoolDomainProps.Builder builder()
CfnUserPoolDomainProps.Builder of CfnUserPoolDomainPropsCopyright © 2022. All rights reserved.