AWSCognitoIdentityProviderCreateUserPoolDomainRequest

Objective-C

@interface AWSCognitoIdentityProviderCreateUserPoolDomainRequest

Swift

class AWSCognitoIdentityProviderCreateUserPoolDomainRequest
  • The configuration for a custom domain that hosts the sign-up and sign-in webpages for your application.

    Provide this parameter only if you want to use a custom domain for your user pool. Otherwise, you can exclude this parameter and use the Amazon Cognito hosted domain instead.

    For more information about the hosted domain and custom domains, see Configuring a User Pool Domain.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSCognitoIdentityProviderCustomDomainConfigType *_Nullable customDomainConfig;

    Swift

    var customDomainConfig: AWSCognitoIdentityProviderCustomDomainConfigType? { get set }
  • The domain string. For custom domains, this is the fully-qualified domain name, such as auth.example.com. For Amazon Cognito prefix domains, this is the prefix alone, such as auth.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable domain;

    Swift

    var domain: String? { get set }
  • The user pool ID.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable userPoolId;

    Swift

    var userPoolId: String? { get set }