Christoffer Rehn

Results 64 comments of Christoffer Rehn

The original issue was addressed in https://github.com/awslabs/serverless-application-model/pull/835, and the follow-up question about updating version when `VersionDescription` changes is covered by https://github.com/aws/serverless-application-model/issues/413; closing.

We could potentially have a separate `Definition` property, but I'm not sure what the benefit is. Is this an alternative to `DefinitionString` and `DefinitionSubstitutions`?

Relevant: https://github.com/aws/serverless-application-model/issues/2077

We've clarified the phrasing: https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-resource-api.html#sam-api-openapiversion

We have an RFC open for supporting AppSync resources, please let us know your thoughts: https://github.com/aws/serverless-application-model/discussions/3075

Unable to reproduce. Tried with the following template: ```yaml Transform: AWS::Serverless-2016-10-31 Resources: MyFunction: Type: AWS::Serverless::Function Properties: Runtime: python3.9 Handler: foo InlineCode: bar Events: Event: Type: CloudWatchEvent Properties: EventBusName: default Pattern:...

The properties from this issue are included: https://github.com/aws/serverless-application-model/blob/f3db0f380ec25e117c75f5253e359212aa23deb1/samtranslator/model/cognito.py#L8-L31 Similar issues: https://github.com/aws/serverless-application-model/issues/3042 https://github.com/aws/serverless-application-model/issues/2581

***TL;DR: Add `AWS::LanguageExtensions` to the `Transform` section. See https://github.com/aws/serverless-application-model/issues/2533.*** Tried reproducing with: ```yaml Transform: AWS::Serverless-2016-10-31 Resources: MyApi: Type: AWS::Serverless::Api Properties: StageName: prod Auth: ApiKeyRequired: true HelloWorldFunction: Type: AWS::Serverless::Function Properties: InlineCode:...

@hf-qin Right, `AWS::LangagueExtensions` resolves it as a string, which CloudFormation accepts but SAM doesn't. We've fixed it in https://github.com/aws/serverless-application-model/pull/2928 and will roll out over the coming weeks.

We also encountered this issue. See related issue: https://github.com/aws/aws-cli/issues/4534