messaging_session_endpoints
Creates, updates, deletes, gets or lists a messaging_session_endpoints resource.
Overview
| Name | messaging_session_endpoints |
| Type | Resource |
| Id | aws.chime_sdk_messaging.messaging_session_endpoints |
Fields
The following fields are returned by SELECT queries:
- get_messaging_session_endpoint
| Name | Datatype | Description |
|---|---|---|
url | string | The endpoint to which you establish a websocket connection. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_messaging_session_endpoint | select | region | network-type | The details of the endpoint for the messaging session. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
network-type | string | The type of network for the messaging session endpoint. Either IPv4 only or dual-stack (IPv4 and IPv6). |
SELECT examples
- get_messaging_session_endpoint
The details of the endpoint for the messaging session.
SELECT
url
FROM aws.chime_sdk_messaging.messaging_session_endpoints
WHERE region = '{{ region }}' -- required
AND `network-type` = '{{ network-type }}'
;