interface CustomDomainConfigTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cognito.Mixins.CfnUserPoolDomainPropsMixin.CustomDomainConfigTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscognito/mixins#CfnUserPoolDomainPropsMixin_CustomDomainConfigTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.cognito.mixins.CfnUserPoolDomainPropsMixin.CustomDomainConfigTypeProperty |
Python | aws_cdk.mixins_preview.aws_cognito.mixins.CfnUserPoolDomainPropsMixin.CustomDomainConfigTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cognito » mixins » CfnUserPoolDomainPropsMixin » CustomDomainConfigTypeProperty |
The configuration for a hosted UI custom domain.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cognito_mixins } from '@aws-cdk/mixins-preview/aws-cognito';
const customDomainConfigTypeProperty: cognito_mixins.CfnUserPoolDomainPropsMixin.CustomDomainConfigTypeProperty = {
certificateArn: 'certificateArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | The Amazon Resource Name (ARN) of an Certificate Manager SSL certificate. |
certificateArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an Certificate Manager SSL certificate.
You use this certificate for the subdomain of your custom domain.

.NET
Go
Java
Python
TypeScript