@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.687Z") @Stability(value=Stable) public interface UserPoolDomainProps extends software.amazon.jsii.JsiiSerializable, UserPoolDomainOptions
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.certificatemanager.*;
import software.amazon.awscdk.services.cognito.*;
Certificate certificate;
UserPool userPool;
UserPoolDomainProps userPoolDomainProps = UserPoolDomainProps.builder()
.userPool(userPool)
// the properties below are optional
.cognitoDomain(CognitoDomainOptions.builder()
.domainPrefix("domainPrefix")
.build())
.customDomain(CustomDomainOptions.builder()
.certificate(certificate)
.domainName("domainName")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
UserPoolDomainProps.Builder
A builder for
UserPoolDomainProps |
static class |
UserPoolDomainProps.Jsii$Proxy
An implementation for
UserPoolDomainProps |
| Modifier and Type | Method and Description |
|---|---|
static UserPoolDomainProps.Builder |
builder() |
IUserPool |
getUserPool()
The user pool to which this domain should be associated.
|
getCognitoDomain, getCustomDomain@Stability(value=Stable) @NotNull IUserPool getUserPool()
@Stability(value=Stable) static UserPoolDomainProps.Builder builder()
builder in interface UserPoolDomainOptionsUserPoolDomainProps.Builder of UserPoolDomainPropsCopyright © 2022. All rights reserved.