Amazon web services 如何在模板中为API事件执行“/”?

Amazon web services 如何在模板中为API事件执行“/”?,amazon-web-services,aws-lambda,aws-api-gateway,aws-sam-cli,aws-sam,Amazon Web Services,Aws Lambda,Aws Api Gateway,Aws Sam Cli,Aws Sam,这是我的lambda资源: Resources: myFunction: Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction Properties

这是我的lambda资源:

Resources:

    myFunction:
        Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
        Properties:
            Description: Enter description of what this specific Lambda does
            CodeUri: hello_world/build/
            Handler: app.lambda_handler
            Runtime: python2.7

            Events:
                testMethod:
                    Type: Api
                    Properties:
                        RestApiId: !Ref ApiGatewayApi
                        Path: testMethod/
                        Method: POST

                /:
                    Type: Api
                    Properties:
                        RestApiId: !Ref ApiGatewayApi
                        Path: /
                        Method: ANY
testMethod和/或与swagger文档中的路径相对应。但cloudformation似乎不允许我将/用作api事件:

Failed to create the changeset: Waiter ChangeSetCreateComplete failed: Waiter encountered a terminal failure state Status: FAILED. Reason: Transform AWS::Serverless-2016-10-31 failed with: Invalid Serverless Application Specification document. Number of errors found: 1. Resource with id [myFunction/] is invalid. Logical ids must be alphanumeric.
这是我的API网关资源:

ApiGatewayApi:
    Type: AWS::Serverless::Api
    Properties:
        DefinitionBody:
            swagger: "2.0"
            info:
                version: "2018-09-12T06:21:35Z"
                title: 'sdfsdfsd'
            schemes:
            - "https"
            paths:
                /:
                    x-amazon-apigateway-any-method:
                        produces:
                        - "application/json"
                        responses:
                            '200':
                                description: "200 response"
                                schema:
                                    $ref: "#/definitions/Empty"
                        security:
                        - sigv4: []
                        x-amazon-apigateway-integration:
                            type: "aws_proxy"
                            httpMethod: "POST"
                            passthroughBehavior: "when_no_match"
                            uri:
                              Fn::Sub: arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${myFunction}/invocations
                            responses:
                                default:
                                    statusCode: "200"
                            contentHandling: "CONVERT_TO_TEXT"

                /testMethod:
                    post:
                        produces:
                        - "application/json"
                        responses:
                            '200':
                                description: "200 response"
                                schema:
                                    $ref: "#/definitions/Empty"
                        security:
                        - sigv4: []
                        x-amazon-apigateway-integration:
                            type: "aws_proxy"
                            httpMethod: "POST"
                            passthroughBehavior: "when_no_match"
                            uri:
                              Fn::Sub: arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${myFunction}/invocations
                            responses:
                                default:
                                    statusCode: "200"
                            contentHandling: "CONVERT_TO_TEXT"

            securityDefinitions:
                sigv4:
                    type: "apiKey"
                    name: "Authorization"
                    in: "header"
                    x-amazon-apigateway-authtype: "awsSigv4"
            definitions:
                Empty:
                    type: "object"
                    title: "Empty Schema"

您是正确的:您不能命名事件/,但仍然可以将其作为路径

尝试将/事件重命名为仅使用字母数字字符的其他内容。这不会改变事件的行为,并将满足CloudFormation的约束。例如:

       Events:
         apiEvent:
           Type: Api
           Properties:
             RestApiId: !Ref ApiGatewayApi
             Path: /
             Method: ANY