{APIGateway}チュートリアル: HTTP 非プロキシ統合を使用して REST API をビルドする

https://docs.aws.amazon.com/ja_jp/apigateway/latest/developerguide/api-gateway-create-api-step-by-step.html


-- 1. コマンド等のインストール

-- 1.1 aws cli version 2 インストール

curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install

aws --version

-- 1.2 jqインストール
sudo yum -y install jq


-- 2. API を作成する

aws apigateway create-rest-api \
--name api01 \
--description "api01" \
--endpoint-configuration '{"types": ["REGIONAL"]}'

aws apigateway get-rest-apis

aws apigateway get-rest-api \
--rest-api-id 1111111111

 

-- 3. API でリソースを作成する
aws apigateway get-resources \
--rest-api-id 1111111111

aws apigateway create-resource \
--rest-api-id 1111111111 \
--parent-id 2222222222 \
--path-part "pets"


-- 4. リソースにメソッドを作成する


aws apigateway put-method \
--rest-api-id 1111111111 \
--resource-id 333333 \
--http-method GET \
--authorization-type NONE \
--no-api-key-required \
--request-parameters '{
        "method.request.querystring.page": false,
        "method.request.querystring.type": false
    }'

aws apigateway put-method-response \
--rest-api-id 1111111111 \
--resource-id 333333 \
--http-method GET \
--status-code 200 \
--response-models '{"application/json": "Empty"}'


aws apigateway put-integration \
--rest-api-id 1111111111 \
--resource-id 333333 \
--http-method GET \
--type HTTP \
--uri "http://petstore-demo-endpoint.execute-api.com/petstore/pets" \
--connection-type "INTERNET" \
--request-parameters '{
       "integration.request.querystring.page": "method.request.querystring.page",
       "integration.request.querystring.type": "method.request.querystring.type"
    }' \
--passthrough-behavior "WHEN_NO_MATCH" \
--cache-namespace "333333" \
--timeout-in-millis 29000 \
--integration-http-method GET

 

aws apigateway put-integration-response \
--rest-api-id 1111111111 \
--resource-id 333333 \
--http-method GET \
--status-code 200 \
--response-templates '{}'


aws apigateway get-method \
--rest-api-id 1111111111 \
--resource-id 333333 \
--http-method GET

 


-- 5. デプロイ前にAPI をテストする

aws apigateway test-invoke-method \
--rest-api-id 1111111111 \
--resource-id 333333 \
--http-method GET \
--path-with-query-string 'type=Dog&page=2'
https://blog.hatena.ne.jp/my/?fragment=edit

 


-- 6. API をデプロイする


aws apigateway get-deployments \
--rest-api-id 1111111111

aws apigateway get-stages \
--rest-api-id 1111111111


aws apigateway create-deployment \
--rest-api-id 1111111111

aws apigateway create-stage \
--rest-api-id 1111111111 \
--stage-name stage01 \
--deployment-id 444444

 

-- 7. デプロイ後にAPI をテストする


curl -v -X GET https://1111111111.execute-api.ap-northeast-1.amazonaws.com/stage01/pets?type=Dog&page=2

 

-- 8. クリーンアップ


-- API削除

aws apigateway get-rest-apis

aws apigateway delete-rest-api \
--rest-api-id 1111111111