moto/moto/cognitoidentity/utils.py
2020-04-04 14:09:38 +01:00

6 lines
106 B
Python

from uuid import uuid4
def get_random_identity_id(region):
return "{0}:{1}".format(region, uuid4())