Module Values.DeleteUserPoolDomainRequestSource

Given a user pool ID and domain identifier, deletes a user pool domain. After you delete a user pool domain, your managed login pages and authorization server are no longer available.

Sourcetype nonrec t = {
  1. domain : DomainType.t;
    (*

    The domain that you want to delete. For custom domains, this is the fully-qualified domain name like auth.example.com. For Amazon Cognito prefix domains, this is the prefix alone, like myprefix.

    *)
  2. userPoolId : UserPoolIdType.t;
    (*

    The ID of the user pool where you want to delete the domain.

    *)
}
Sourceval context_ : string
Sourceval make : domain:DomainType.t -> userPoolId:UserPoolIdType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DomainType.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t