2022/12/19 - Amazon Kinesis Video Streams - 3 new1 updated api methods
Changes Amazon Kinesis Video Streams offers capabilities to stream video and audio in real-time via WebRTC to the cloud for storage, playback, and analytical processing. Customers can use our enhanced WebRTC SDK and cloud APIs to enable real-time streaming, as well as media ingestion to the cloud.
Associates a SignalingChannel to a stream to store the media. There are two signaling modes that can specified :
If the StorageStatus is disabled, no data will be stored, and the StreamARN parameter will not be needed.
If the StorageStatus is enabled, the data will be stored in the StreamARN provided.
See also: AWS API Documentation
Request Syntax
client.update_media_storage_configuration( ChannelARN='string', MediaStorageConfiguration={ 'StreamARN': 'string', 'Status': 'ENABLED'|'DISABLED' } )
string
[REQUIRED]
The Amazon Resource Name (ARN) of the channel.
dict
[REQUIRED]
A structure that encapsulates, or contains, the media storage configuration properties.
StreamARN (string) --
The Amazon Resource Name (ARN) of the stream
Status (string) -- [REQUIRED]
The status of the media storage configuration.
dict
Response Syntax
{}
Response Structure
(dict) --
Returns the most current information about the stream. Either streamName or streamARN should be provided in the input.
Returns the most current information about the stream. The streamName or streamARN should be provided in the input.
See also: AWS API Documentation
Request Syntax
client.describe_mapped_resource_configuration( StreamName='string', StreamARN='string', MaxResults=123, NextToken='string' )
string
The name of the stream.
string
The Amazon Resource Name (ARN) of the stream.
integer
The maximum number of results to return in the response.
string
The token to provide in your next request, to get another batch of results.
dict
Response Syntax
{ 'MappedResourceConfigurationList': [ { 'Type': 'string', 'ARN': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) --
MappedResourceConfigurationList (list) --
A structure that encapsulates, or contains, the media storage configuration properties.
(dict) --
A structure that encapsulates, or contains, the media storage configuration properties.
Type (string) --
The type of the associated resource for the kinesis video stream.
ARN (string) --
The Amazon Resource Name (ARN) of the Kinesis Video Stream resource, associated with the stream.
NextToken (string) --
The token that was used in the ``NextToken``request to fetch the next set of results.
Returns the most current information about the channel. Specify the ChannelName or ChannelARN in the input.
See also: AWS API Documentation
Request Syntax
client.describe_media_storage_configuration( ChannelName='string', ChannelARN='string' )
string
The name of the channel.
string
The Amazon Resource Name (ARN) of the channel.
dict
Response Syntax
{ 'MediaStorageConfiguration': { 'StreamARN': 'string', 'Status': 'ENABLED'|'DISABLED' } }
Response Structure
(dict) --
MediaStorageConfiguration (dict) --
A structure that encapsulates, or contains, the media storage configuration properties.
StreamARN (string) --
The Amazon Resource Name (ARN) of the stream
Status (string) --
The status of the media storage configuration.
{'SingleMasterChannelEndpointConfiguration': {'Protocols': {'WEBRTC'}}}Response
{'ResourceEndpointList': {'Protocol': {'WEBRTC'}}}
Provides an endpoint for the specified signaling channel to send and receive messages. This API uses the SingleMasterChannelEndpointConfiguration input parameter, which consists of the Protocols and Role properties.
Protocols is used to determine the communication mechanism. For example, if you specify WSS as the protocol, this API produces a secure websocket endpoint. If you specify HTTPS as the protocol, this API generates an HTTPS endpoint.
Role determines the messaging permissions. A MASTER role results in this API generating an endpoint that a client can use to communicate with any of the viewers on the channel. A VIEWER role results in this API generating an endpoint that a client can use to communicate only with a MASTER.
See also: AWS API Documentation
Request Syntax
client.get_signaling_channel_endpoint( ChannelARN='string', SingleMasterChannelEndpointConfiguration={ 'Protocols': [ 'WSS'|'HTTPS'|'WEBRTC', ], 'Role': 'MASTER'|'VIEWER' } )
string
[REQUIRED]
The Amazon Resource Name (ARN) of the signalling channel for which you want to get an endpoint.
dict
A structure containing the endpoint configuration for the SINGLE_MASTER channel type.
Protocols (list) --
This property is used to determine the nature of communication over this SINGLE_MASTER signaling channel. If WSS is specified, this API returns a websocket endpoint. If HTTPS is specified, this API returns an HTTPS endpoint.
(string) --
Role (string) --
This property is used to determine messaging permissions in this SINGLE_MASTER signaling channel. If MASTER is specified, this API returns an endpoint that a client can use to receive offers from and send answers to any of the viewers on this signaling channel. If VIEWER is specified, this API returns an endpoint that a client can use only to send offers to another MASTER client on this signaling channel.
dict
Response Syntax
{ 'ResourceEndpointList': [ { 'Protocol': 'WSS'|'HTTPS'|'WEBRTC', 'ResourceEndpoint': 'string' }, ] }
Response Structure
(dict) --
ResourceEndpointList (list) --
A list of endpoints for the specified signaling channel.
(dict) --
An object that describes the endpoint of the signaling channel returned by the GetSignalingChannelEndpoint API.
Protocol (string) --
The protocol of the signaling channel returned by the GetSignalingChannelEndpoint API.
ResourceEndpoint (string) --
The endpoint of the signaling channel returned by the GetSignalingChannelEndpoint API.