Hugo Durães

Results 11 comments of Hugo Durães

Any news on this or in a way to ignore missing aws credentials for offline usage?

@AdamPflug have you ever implemented the `autoincrement` option along side with the `increment` method?

@jordanmaxfightcamp if you need streams, instead of deleting `StreamSpecification` you'll need to do this instead: ```js tables = tables.map(table => { if (table.StreamSpecification) { table.StreamSpecification = { ...table.StreamSpecification, StreamEnabled: true,...

I wonder if using dfu-util on a mac would work too! 🤔

It actually worked for me with the same errors on the 1st command, as described above.

Another example: ```yaml Resources: ApiName: Type: AWS::Serverless::Api Properties: StageName: foo DefinitionBody: 'Fn::Transform': Name: AWS::Include Parameters: Location: swagger.yaml FunctionName: Type: AWS::Serverless::Function Properties: CodeUri: ./dist Handler: FunctionNameHandler.default Runtime: nodejs10.x Events: FunctionNameEvent: Type:...

Will try it. Thanks @Nr18 👍

@Nr18 I've revisited my implementation and I've found that your suggestion is what I have at the moment. One thing you don't show in your comment is the template for...

@Nr18 are the request parameters validated on API Gateway if I don't specify the `Events` section?

I thought those two properties (RestApiId and RequestModel) were also needed for it to validate requests. I've updated my template and open api docs and everything is looking great now....