moto/moto/cognitoidentity/utils.py

6 lines
106 B
Python
Raw Normal View History

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