Skip to main content

messaging_session_endpoints

Creates, updates, deletes, gets or lists a messaging_session_endpoints resource.

Overview

Namemessaging_session_endpoints
TypeResource
Idaws.chime_sdk_messaging.messaging_session_endpoints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
urlstringThe endpoint to which you establish a websocket connection.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_messaging_session_endpointselectregionnetwork-typeThe 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
network-typestringThe type of network for the messaging session endpoint. Either IPv4 only or dual-stack (IPv4 and IPv6).

SELECT examples

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 }}'
;