Show / Hide Table of Contents

Interface ICfnUserPoolDomainProps

Properties for defining a CfnUserPoolDomain.

Namespace: Amazon.CDK.AWS.Cognito
Assembly: Amazon.CDK.AWS.Cognito.dll
Syntax (csharp)
public interface ICfnUserPoolDomainProps
Syntax (vb)
Public Interface ICfnUserPoolDomainProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Cognito;

CfnUserPoolDomainProps cfnUserPoolDomainProps = new CfnUserPoolDomainProps {
    Domain = "domain",
    UserPoolId = "userPoolId",

    // the properties below are optional
    CustomDomainConfig = new CustomDomainConfigTypeProperty {
        CertificateArn = "certificateArn"
    }
};

Synopsis

Properties

CustomDomainConfig

The configuration for a custom domain that hosts the sign-up and sign-in pages for your application.

Domain

The domain name for the domain that hosts the sign-up and sign-in pages for your application.

UserPoolId

The user pool ID for the user pool where you want to associate a user pool domain.

Properties

CustomDomainConfig

The configuration for a custom domain that hosts the sign-up and sign-in pages for your application.

virtual object CustomDomainConfig { get; }
Property Value

System.Object

Remarks

Use this object to specify an SSL certificate that is managed by ACM.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-customdomainconfig

Domain

The domain name for the domain that hosts the sign-up and sign-in pages for your application.

string Domain { get; }
Property Value

System.String

Remarks

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-domain

UserPoolId

The user pool ID for the user pool where you want to associate a user pool domain.

string UserPoolId { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html#cfn-cognito-userpooldomain-userpoolid

Back to top Generated by DocFX