File size: 326 Bytes
643c00a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
**To get a list of deployments for a REST API**
Command::
aws apigateway get-deployments --rest-api-id 1234123412
Output::
{
"items": [
{
"createdDate": 1453797217,
"id": "0a2b4c",
"description": "Deployed my API for the first time"
}
]
}
|