Exporting api definition from AWS API Gateway

前端 未结 5 1807
野趣味
野趣味 2020-12-17 23:49

I\'m creating an entire API in AWS API Gateway. Since I\'m using the graphical console, just because I\'m in a learning phase, I will need some way to create the same API pr

5条回答
  •  青春惊慌失措
    2020-12-18 00:27

    this feature is now available via CLI directly from Amazon. It produces the same output as Amazon's gui console.

    swagger

    aws apigateway get-export --rest-api-id a1b2c3d4e5 --stage-name dev
    --export-type swagger /path/to/filename.json
    

    swagger + api gateway extensions

    aws apigateway get-export --parameters extensions='integrations'
    --rest-api-id a1b2c3d4e5 --stage-name dev --export-type swagger /path/to/filename.json
    

    swagger + postman extensions

    aws apigateway get-export --parameters extensions='postman'
    --rest-api-id a1b2c3d4e5 --stage-name dev --export-type swagger /path/to/filename.json
    

    For details: http://docs.aws.amazon.com/cli/latest/reference/apigateway/get-export.html

提交回复
热议问题