1
これは、AWS CLI EFS〜Elastic File Systemの作成トークンとして使用するUUIDを生成するのに十分ですか?適切な権限が与えられていると仮定します。EFSのUUID作成トークンを生成
Python 2.7.9 (default, Dec 10 2014, 12:24:55) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import uuid
>>> uuid.uuid4()
UUID('c3505347-ec30-4f74-9597-e4180de6c56f')
>>>
JavaScriptのフィドルバージョンhttps://jsfiddle.net/xg7tek9j/7/ –