Aws Apigateway Notes

create rest api resource

awslocal apigateway create-rest-api --name 'My First API' --description 'This is my first API'
awslocal apigateway get-rest-apis                                         {
    "items": [
        {
            "createdDate": 1574513755,
            "id": "tjc336382o",
            "name": "hello_api2"
        },
        {
            "description": "This is my first API",
            "createdDate": 1574513755,
            "id": "foyylqv018",
            "name": "My First API"
        }
    ]
}