Sophie

Sophie

distrib > Mageia > 7 > i586 > by-pkgid > dd7204292d310452063d09b5de9c13b7 > files > 35

aws-cli-docs-1.16.163-1.mga7.noarch.rpm

**To deploy the configured resources for an API to a new Stage**

Command::

  aws apigateway create-deployment --rest-api-id 1234123412 --stage-name dev --stage-description 'Development Stage' --description 'First deployment to the dev stage'

**To deploy the configured resources for an API to an existing stage**

Command::

  aws apigateway create-deployment --rest-api-id 1234123412 --stage-name dev --description 'Second deployment to the dev stage'

**To deploy the configured resources for an API to an existing stage with Stage Variables**

  aws apigateway create-deployment --rest-api-id 1234123412 --stage-name dev --description 'Third deployment to the dev stage' --variables key='value',otherKey='otherValue'