AWSCognitoIdentityProviderUpdateUserPoolDomainRequest

Objective-C

@interface AWSCognitoIdentityProviderUpdateUserPoolDomainRequest

Swift

class AWSCognitoIdentityProviderUpdateUserPoolDomainRequest

The UpdateUserPoolDomain request input.

Required parameters: [Domain, UserPoolId, CustomDomainConfig]

  • The configuration for a custom domain that hosts the sign-up and sign-in pages for your application. Use this object to specify an SSL certificate that is managed by ACM.

    Declaration

    Objective-C

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

    Swift

    var customDomainConfig: AWSCognitoIdentityProviderCustomDomainConfigType? { get set }
  • The domain name for the custom domain that hosts the sign-up and sign-in pages for your application. One example might be auth.example.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.

    Declaration

    Objective-C

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

    Swift

    var domain: String? { get set }
  • The ID of the user pool that is associated with the custom domain whose certificate you’re updating.

    Declaration

    Objective-C

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

    Swift

    var userPoolId: String? { get set }