Class: AWS.KinesisVideo
- Inherits:
-
AWS.Service
- Object
- AWS.Service
- AWS.KinesisVideo
- Identifier:
- kinesisvideo
- API Version:
- 2017-09-30
- Defined in:
- (unknown)
Overview
Constructs a service interface object. Each API operation is exposed as a function on service.
Service Description
Sending a Request Using KinesisVideo
var kinesisvideo = new AWS.KinesisVideo();
kinesisvideo.createSignalingChannel(params, function (err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Locking the API Version
In order to ensure that the KinesisVideo object uses this specific API, you can
construct the object by passing the apiVersion option to the constructor:
var kinesisvideo = new AWS.KinesisVideo({apiVersion: '2017-09-30'});
You can also set the API version globally in AWS.config.apiVersions using
the kinesisvideo service identifier:
AWS.config.apiVersions = {
kinesisvideo: '2017-09-30',
// other service API versions
};
var kinesisvideo = new AWS.KinesisVideo();
Constructor Summary collapse
-
new AWS.KinesisVideo(options = {}) ⇒ Object
constructor
Constructs a service object.
Property Summary collapse
-
endpoint ⇒ AWS.Endpoint
readwrite
An Endpoint object representing the endpoint URL for service requests.
Properties inherited from AWS.Service
Method Summary collapse
-
createSignalingChannel(params = {}, callback) ⇒ AWS.Request
Creates a signaling channel.
-
createStream(params = {}, callback) ⇒ AWS.Request
Creates a new Kinesis video stream.
-
deleteEdgeConfiguration(params = {}, callback) ⇒ AWS.Request
An asynchronous API that deletes a stream’s existing edge configuration, as well as the corresponding media from the Edge Agent.
When you invoke this API, the sync status is set to
DELETING. -
deleteSignalingChannel(params = {}, callback) ⇒ AWS.Request
Deletes a specified signaling channel.
-
deleteStream(params = {}, callback) ⇒ AWS.Request
Deletes a Kinesis video stream and the data contained in the stream.
-
describeEdgeConfiguration(params = {}, callback) ⇒ AWS.Request
Describes a stream’s edge configuration that was set using the
StartEdgeConfigurationUpdateAPI and the latest status of the edge agent's recorder and uploader jobs. -
describeImageGenerationConfiguration(params = {}, callback) ⇒ AWS.Request
Gets the
ImageGenerationConfigurationfor a given Kinesis video stream..
-
describeMappedResourceConfiguration(params = {}, callback) ⇒ AWS.Request
Returns the most current information about the stream.
-
describeMediaStorageConfiguration(params = {}, callback) ⇒ AWS.Request
Returns the most current information about the channel.
-
describeNotificationConfiguration(params = {}, callback) ⇒ AWS.Request
Gets the
NotificationConfigurationfor a given Kinesis video stream..
-
describeSignalingChannel(params = {}, callback) ⇒ AWS.Request
Returns the most current information about the signaling channel.
-
describeStream(params = {}, callback) ⇒ AWS.Request
Returns the most current information about the specified stream.
-
getDataEndpoint(params = {}, callback) ⇒ AWS.Request
Gets an endpoint for a specified stream for either reading or writing.
-
getSignalingChannelEndpoint(params = {}, callback) ⇒ AWS.Request
Provides an endpoint for the specified signaling channel to send and receive messages.
-
listEdgeAgentConfigurations(params = {}, callback) ⇒ AWS.Request
Returns an array of edge configurations associated with the specified Edge Agent.
In the request, you must specify the Edge Agent
.HubDeviceArn. -
listSignalingChannels(params = {}, callback) ⇒ AWS.Request
Returns an array of
ChannelInfoobjects. -
listStreams(params = {}, callback) ⇒ AWS.Request
Returns an array of
StreamInfoobjects. -
listTagsForResource(params = {}, callback) ⇒ AWS.Request
Returns a list of tags associated with the specified signaling channel.
.
-
listTagsForStream(params = {}, callback) ⇒ AWS.Request
Returns a list of tags associated with the specified stream.
In the request, you must specify either the
StreamNameor theStreamARN. -
startEdgeConfigurationUpdate(params = {}, callback) ⇒ AWS.Request
An asynchronous API that updates a stream’s existing edge configuration.
-
tagResource(params = {}, callback) ⇒ AWS.Request
Adds one or more tags to a signaling channel.
-
tagStream(params = {}, callback) ⇒ AWS.Request
Adds one or more tags to a stream.
-
untagResource(params = {}, callback) ⇒ AWS.Request
Removes one or more tags from a signaling channel.
-
untagStream(params = {}, callback) ⇒ AWS.Request
Removes one or more tags from a stream.
-
updateDataRetention(params = {}, callback) ⇒ AWS.Request
Increases or decreases the stream's data retention period by the value that you specify.
-
updateImageGenerationConfiguration(params = {}, callback) ⇒ AWS.Request
Updates the
StreamInfoandImageProcessingConfigurationfields..
-
updateMediaStorageConfiguration(params = {}, callback) ⇒ AWS.Request
Associates a
SignalingChannelto a stream to store the media. -
updateNotificationConfiguration(params = {}, callback) ⇒ AWS.Request
Updates the notification information for a stream.
.
-
updateSignalingChannel(params = {}, callback) ⇒ AWS.Request
Updates the existing signaling channel.
-
updateStream(params = {}, callback) ⇒ AWS.Request
Updates stream metadata, such as the device name and media type.
You must provide the stream name or the Amazon Resource Name (ARN) of the stream.
To make sure that you have the latest version of the stream before updating it, you can specify the stream version.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService
Constructor Details
new AWS.KinesisVideo(options = {}) ⇒ Object
Constructs a service object. This object has one method for each API operation.
Property Details
Method Details
createSignalingChannel(params = {}, callback) ⇒ AWS.Request
Creates a signaling channel.
CreateSignalingChannel is an asynchronous operation.
createStream(params = {}, callback) ⇒ AWS.Request
Creates a new Kinesis video stream.
When you create a new stream, Kinesis Video Streams assigns it a version number. When you change the stream's metadata, Kinesis Video Streams updates the version.
CreateStream is an asynchronous operation.
For information about how the service works, see How it Works.
You must have permissions for the KinesisVideo:CreateStream action.
deleteEdgeConfiguration(params = {}, callback) ⇒ AWS.Request
An asynchronous API that deletes a stream’s existing edge configuration, as well as the corresponding media from the Edge Agent.
When you invoke this API, the sync status is set to DELETING. A deletion process starts, in which active edge jobs are stopped and all media is deleted from the edge device. The time to delete varies, depending on the total amount of stored media. If the deletion process fails, the sync status changes to DELETE_FAILED. You will need to re-try the deletion.
When the deletion process has completed successfully, the edge configuration is no longer accessible.
deleteSignalingChannel(params = {}, callback) ⇒ AWS.Request
Deletes a specified signaling channel. DeleteSignalingChannel is an asynchronous operation. If you don't specify the channel's current version, the most recent version is deleted.
deleteStream(params = {}, callback) ⇒ AWS.Request
Deletes a Kinesis video stream and the data contained in the stream.
This method marks the stream for deletion, and makes the data in the stream inaccessible immediately.
To ensure that you have the latest version of the stream before deleting it, you can specify the stream version. Kinesis Video Streams assigns a version to each stream. When you update a stream, Kinesis Video Streams assigns a new version number. To get the latest stream version, use the DescribeStream API.
This operation requires permission for the KinesisVideo:DeleteStream action.
describeEdgeConfiguration(params = {}, callback) ⇒ AWS.Request
Describes a stream’s edge configuration that was set using the StartEdgeConfigurationUpdate API and the latest status of the edge agent's recorder and uploader jobs. Use this API to get the status of the configuration to determine if the configuration is in sync with the Edge Agent. Use this API to evaluate the health of the Edge Agent.
describeImageGenerationConfiguration(params = {}, callback) ⇒ AWS.Request
Gets the ImageGenerationConfiguration for a given Kinesis video stream.
describeMappedResourceConfiguration(params = {}, callback) ⇒ AWS.Request
Returns the most current information about the stream. The streamName or streamARN should be provided in the input.
describeMediaStorageConfiguration(params = {}, callback) ⇒ AWS.Request
Returns the most current information about the channel. Specify the ChannelName or ChannelARN in the input.
describeNotificationConfiguration(params = {}, callback) ⇒ AWS.Request
Gets the NotificationConfiguration for a given Kinesis video stream.
describeSignalingChannel(params = {}, callback) ⇒ AWS.Request
Returns the most current information about the signaling channel. You must specify either the name or the Amazon Resource Name (ARN) of the channel that you want to describe.
describeStream(params = {}, callback) ⇒ AWS.Request
Returns the most current information about the specified stream. You must specify either the StreamName or the StreamARN.
getDataEndpoint(params = {}, callback) ⇒ AWS.Request
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).
In the request, specify the stream either by StreamName or StreamARN.
getSignalingChannelEndpoint(params = {}, callback) ⇒ AWS.Request
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.
listEdgeAgentConfigurations(params = {}, callback) ⇒ AWS.Request
Returns an array of edge configurations associated with the specified Edge Agent.
In the request, you must specify the Edge Agent HubDeviceArn.
listSignalingChannels(params = {}, callback) ⇒ AWS.Request
Returns an array of ChannelInfo objects. Each object describes a signaling channel. To retrieve only those channels that satisfy a specific condition, you can specify a ChannelNameCondition.
listStreams(params = {}, callback) ⇒ AWS.Request
Returns an array of StreamInfo objects. Each object describes a stream. To retrieve only streams that satisfy a specific condition, you can specify a StreamNameCondition.
listTagsForResource(params = {}, callback) ⇒ AWS.Request
Returns a list of tags associated with the specified signaling channel.
listTagsForStream(params = {}, callback) ⇒ AWS.Request
Returns a list of tags associated with the specified stream.
In the request, you must specify either the StreamName or the StreamARN.
startEdgeConfigurationUpdate(params = {}, callback) ⇒ AWS.Request
An asynchronous API that updates a stream’s existing edge configuration. The Kinesis Video Stream will sync the stream’s edge configuration with the Edge Agent IoT Greengrass component that runs on an IoT Hub Device, setup at your premise. The time to sync can vary and depends on the connectivity of the Hub Device. The SyncStatus will be updated as the edge configuration is acknowledged, and synced with the Edge Agent.
If this API is invoked for the first time, a new edge configuration will be created for the stream, and the sync status will be set to SYNCING. You will have to wait for the sync status to reach a terminal state such as: IN_SYNC, or SYNC_FAILED, before using this API again. If you invoke this API during the syncing process, a ResourceInUseException will be thrown. The connectivity of the stream’s edge configuration and the Edge Agent will be retried for 15 minutes. After 15 minutes, the status will transition into the SYNC_FAILED state.
To move an edge configuration from one device to another, use DeleteEdgeConfiguration to delete the current edge configuration. You can then invoke StartEdgeConfigurationUpdate with an updated Hub Device ARN.
tagResource(params = {}, callback) ⇒ AWS.Request
Adds one or more tags to a signaling channel. A tag is a key-value pair (the value is optional) that you can define and assign to Amazon Web Services resources. If you specify a tag that already exists, the tag value is replaced with the value that you specify in the request. For more information, see Using Cost Allocation Tags in the Billing and Cost Management and Cost Management User Guide.
tagStream(params = {}, callback) ⇒ AWS.Request
Adds one or more tags to a stream. A tag is a key-value pair (the value is optional) that you can define and assign to Amazon Web Services resources. If you specify a tag that already exists, the tag value is replaced with the value that you specify in the request. For more information, see Using Cost Allocation Tags in the Billing and Cost Management and Cost Management User Guide.
You must provide either the StreamName or the StreamARN.
This operation requires permission for the KinesisVideo:TagStream action.
A Kinesis video stream can support up to 50 tags.
untagResource(params = {}, callback) ⇒ AWS.Request
Removes one or more tags from a signaling channel. In the request, specify only a tag key or keys; don't specify the value. If you specify a tag key that does not exist, it's ignored.
untagStream(params = {}, callback) ⇒ AWS.Request
Removes one or more tags from a stream. In the request, specify only a tag key or keys; don't specify the value. If you specify a tag key that does not exist, it's ignored.
In the request, you must provide the StreamName or StreamARN.
updateDataRetention(params = {}, callback) ⇒ AWS.Request
Increases or decreases the stream's data retention period by the value that you specify. To indicate whether you want to increase or decrease the data retention period, specify the Operation parameter in the request body. In the request, you must specify either the StreamName or the StreamARN.
This operation requires permission for the KinesisVideo:UpdateDataRetention action.
Changing the data retention period affects the data in the stream as follows:
-
If the data retention period is increased, existing data is retained for the new retention period. For example, if the data retention period is increased from one hour to seven hours, all existing data is retained for seven hours.
-
If the data retention period is decreased, existing data is retained for the new retention period. For example, if the data retention period is decreased from seven hours to one hour, all existing data is retained for one hour, and any data older than one hour is deleted immediately.
updateImageGenerationConfiguration(params = {}, callback) ⇒ AWS.Request
Updates the StreamInfo and ImageProcessingConfiguration fields.
updateMediaStorageConfiguration(params = {}, callback) ⇒ AWS.Request
Associates a SignalingChannel to a stream to store the media. There are two signaling modes that you can specify :
-
If
StorageStatusis enabled, the data will be stored in theStreamARNprovided. In order for WebRTC Ingestion to work, the stream must have data retention enabled. -
If
StorageStatusis disabled, no data will be stored, and theStreamARNparameter will not be needed.
If StorageStatus is enabled, direct peer-to-peer (master-viewer) connections no longer occur. Peers connect directly to the storage session. You must call the JoinStorageSession API to trigger an SDP offer send and establish a connection between a peer and the storage session.
updateNotificationConfiguration(params = {}, callback) ⇒ AWS.Request
Updates the notification information for a stream.
updateSignalingChannel(params = {}, callback) ⇒ AWS.Request
Updates the existing signaling channel. This is an asynchronous operation and takes time to complete.
If the MessageTtlSeconds value is updated (either increased or reduced), it only applies to new messages sent via this channel after it's been updated. Existing messages are still expired as per the previous MessageTtlSeconds value.
updateStream(params = {}, callback) ⇒ AWS.Request
Updates stream metadata, such as the device name and media type.
You must provide the stream name or the Amazon Resource Name (ARN) of the stream.
To make sure that you have the latest version of the stream before updating it, you can specify the stream version. Kinesis Video Streams assigns a version to each stream. When you update a stream, Kinesis Video Streams assigns a new version number. To get the latest stream version, use the DescribeStream API.
UpdateStream is an asynchronous operation, and takes time to complete.