[ aws . apigateway ]
Exports a deployed version of a RestApi in a specified format.
See also: AWS API Documentation
See ‘aws help’ for descriptions of global parameters.
get-export
--rest-api-id <value>
--stage-name <value>
--export-type <value>
[--parameters <value>]
[--accepts <value>]
<outfile>
--rest-api-id
(string)
The string identifier of the associated RestApi.
--stage-name
(string)
The name of the Stage that will be exported.
--export-type
(string)
The type of export. Acceptable values are ‘oas30’ for OpenAPI 3.0.x and ‘swagger’ for Swagger/OpenAPI 2.0.
--parameters
(map)
A key-value map of query string parameters that specify properties of the export, depending on the requested
exportType
. ForexportType
oas30
andswagger
, any combination of the following parameters are supported:extensions='integrations'
orextensions='apigateway'
will export the API with x-amazon-apigateway-integration extensions.extensions='authorizers'
will export the API with x-amazon-apigateway-authorizer extensions.postman
will export the API with Postman extensions, allowing for import to the Postman toolkey -> (string)
value -> (string)
Shorthand Syntax:
KeyName1=string,KeyName2=string
JSON Syntax:
{"string": "string"
...}
--accepts
(string)
The content-type of the export, for example
application/json
. Currentlyapplication/json
andapplication/yaml
are supported forexportType
of``oas30`` andswagger
. This should be specified in theAccept
header for direct API requests.
outfile
(string)
Filename where the content will be saved
See ‘aws help’ for descriptions of global parameters.
Note
To use the following examples, you must have the AWS CLI installed and configured. See the Getting started guide in the AWS CLI User Guide for more information.
Unless otherwise stated, all examples have unix-like quotation rules. These examples will need to be adapted to your terminal’s quoting rules. See Using quotation marks with strings in the AWS CLI User Guide .
To get the JSON Swagger template for a stage
Command:
aws apigateway get-export --rest-api-id a1b2c3d4e5 --stage-name dev --export-type swagger /path/to/filename.json
To get the JSON Swagger template + API Gateway Extentions for a stage
Command:
aws apigateway get-export --parameters extensions='integrations' --rest-api-id a1b2c3d4e5 --stage-name dev --export-type swagger /path/to/filename.json
To get the JSON Swagger template + Postman Extensions for a stage
Command:
aws apigateway get-export --parameters extensions='postman' --rest-api-id a1b2c3d4e5 --stage-name dev --export-type swagger /path/to/filename.json
contentType -> (string)
The content-type header value in the HTTP response. This will correspond to a valid ‘accept’ type in the request.
contentDisposition -> (string)
The content-disposition header value in the HTTP response.
body -> (blob)
The binary blob response to GetExport, which contains the export.