Iām successfully writing files to IPFS from Cloud Code but now Iām not sure that itās suitable for my needs. I want to be able to generate a new NFT with token ID and mint it to an ERC1155 contract. Since you canāt set the URL of the metadata to something predictable you canāt create an ERC1155 contract with the URI in a set form. So I have been experimenting with Moralis.File() and, again, the .json file name gets a ārandomā string put before the file name in the URL. E.g.
https://blahblahblah.usemoralis.com:2053/server/files/asdgasdgasgd/long unpredictable hex string_0000000000000000000000000000000000000000000000000000000000001292.json
Is there a way of writing a file, with a name of my choosing, to a predictable location with a predictable URL, from Cloud Code, on my Moralis server so I can feed it into an ERC1155 contract? If not, do I need to set up a third-party transaction to store my metadata on AWS or similar?