aws.kinesisvideo.get_data_endpoint
Example SQL Queries
SELECT * FROMaws.kinesisvideo.get_data_endpointWHERE"api_name" = 'VALUE';Description
Gets an endpoint for a specified stream for either reading or writing. Use this endpoint in your application to read from the specified stream (using the GetMedia or GetMediaForFragmentList operations) or write to it (using the PutMedia operation).
The returned endpoint does not have the API name appended. The client needs to add the API name to the returned endpoint.
In the request, specify the stream either by StreamName or StreamARN.
Table Definition
| Column Name | Column Data Type |
|---|---|
| api_name Required Input Column The name of the API action for which to get an endpoint. | VARCHAR |
| stream_arn Input Column The Amazon Resource Name (ARN) of the stream that you want to get the endpoint for. You must specify either this parameter or a StreamName in the request. | VARCHAR |
| stream_name Input Column The name of the stream that you want to get the endpoint for. You must specify either this parameter or a StreamARN in the request. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| data_endpoint The endpoint value. To read data from the stream or to write data to it, specify this endpoint in your application. | VARCHAR |