Thorsten Hoeger
Thorsten Hoeger
The ARN will change and this will break CF Distributions using it if not within the same stack. A short outage might as well be a thing as it removes...
I meant on the distribution. So there might be a time where no CFF is registered.
I have written a CFN macro for fagate (https://github.com/taimos/cfn-macro-fargate) that could be a base for a discussion on how to add Fargate to SAM. I talked to @cmmeyer about this...
As far as I see, the idea behind this, and so not working with aliases IMHO, is to make sure that an SFN execution that started with reference to Lambda...
Thanks for pointing out this issue with the `s3Download` command. I get why this is a big deal, especially with the data loss you faced. However, I've decided not to...
Any idea how we can proceed here? Trusted publishing would be the preferred way fo PyPi. Imho these are the tasks: * add a publishToPyPi sub-property to opt-in to trusted...
Even better. The sample all use a provided GH action so need to look into that to see what is happening under the hood
> Hey @hoegertn, it is still active although it's not received much activity recently! We also use it on all our projects. > Good to hear > I haven't been...
I agree on the must-have parts besides the prompt thing. I see the value but not the need for GA. Happy to help as I would love to have a...
Hi, to mock S3.upload I use the following code. Maybe this helps. ``` AWS.mock('S3', 'upload', (params, callback) => { params.should.be.an.Object(); params.should.have.property('Bucket', 'TestBucket'); params.should.have.property('Key'); params.should.have.property('Body', 'TestBuffer'); callback(null, { ETag: 'SomeETag"', Location:...