orgs.create_account()
. Are any of the following solutions feasible:orgs.create_account()
, then overwrite the ID of the account generated to match specorgs.create_account()
in a way that forces the generated ID to be set to the spec IDhey y'all, I need to mock an Organization that contains an account with a specific AWS ID, not the randomized value moto creates with
orgs.create_account()
. Are any of the following solutions feasible:
- call
orgs.create_account()
, then overwrite the ID of the account generated to match spec- call
orgs.create_account()
in a way that forces the generated ID to be set to the spec ID- mock an account join handshake procedure
Thanks!
I think option 1 should work. I don't think option 2 is possible. No idea about option 3
hello! This is my first time here :wave:
Has anyone else noticed that test_streaming_upload_from_file_to_presigned_url
is generating an error when it was fine yesterday? I can't find any existing open issues related to it, so I have raised an issue (spulec/moto#3080) and fixed it in a draft PR.
Advice would be appreciated :pray:
Hello. First time caller here.
I'm using moto to mock out SES and I want to verify that I've made a call to "send_raw_email". Poking around the code I've noticed that I can get the send messages from the "ses_backends". This solves my problem, but I'm just wondering if this is considered "best practice". How did others do this?
moto
doesn't support the more recent versions of boto
?