This documentation is for Version 1 of the Amazon CLI only. For documentation related to Version 2 of the Amazon CLI, see the Version 2 User Guide.
API Gateway Management API examples using Amazon CLI
The following code examples show you how to perform actions and implement common scenarios by using the Amazon Command Line Interface with API Gateway Management API.
Actions are code excerpts from larger programs and must be run in context. While actions show you how to call individual service functions, you can see actions in context in their related scenarios.
Each example includes a link to the complete source code, where you can find instructions on how to set up and run the code in context.
Topics
Actions
The following code example shows how to use delete-connection
.
- Amazon CLI
-
To delete a WebSocket connection
The following
delete-connection
example disconnects a client from the specified WebSocket API.aws apigatewaymanagementapi delete-connection \ --connection-id
L0SM9cOFvHcCIhw=
\ --endpoint-urlhttps://aabbccddee.execute-api.us-west-2.amazonaws.com/prod
This command produces no output.
For more information, see Use @connections commands in your backend service
in the Amazon API Gateway Developer Guide. -
For API details, see DeleteConnection
in Amazon CLI Command Reference.
-
The following code example shows how to use get-connection
.
- Amazon CLI
-
To get information about a WebSocket connection
The following
get-connection
example describes a connection to the specified WebSocket API.aws apigatewaymanagementapi get-connection \ --connection-id
L0SM9cOFvHcCIhw=
\ --endpoint-urlhttps://aabbccddee.execute-api.us-west-2.amazonaws.com/prod
Output:
{ "ConnectedAt": "2020-04-30T20:10:33.236Z", "Identity": { "SourceIp": "192.0.2.1" }, "LastActiveAt": "2020-04-30T20:10:42.997Z" }
For more information, see Use @connections commands in your backend service
in the Amazon API Gateway Developer Guide. -
For API details, see GetConnection
in Amazon CLI Command Reference.
-
The following code example shows how to use post-to-connection
.
- Amazon CLI
-
To send data to a WebSocket connection
The following
post-to-connection
example sends a message to a client that's connected to the specified WebSocket API.aws apigatewaymanagementapi post-to-connection \ --connection-id
L0SM9cOFvHcCIhw=
\ --data"Hello from API Gateway!"
\ --endpoint-urlhttps://aabbccddee.execute-api.us-west-2.amazonaws.com/prod
This command produces no output.
For more information, see Use @connections commands in your backend service
in the Amazon API Gateway Developer Guide. -
For API details, see PostToConnection
in Amazon CLI Command Reference.
-