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.createStream(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
-
new AWS.KinesisVideo(options = {}) ⇒ Object
constructor
Constructs a service object.
Property Summary
-
endpoint ⇒ AWS.Endpoint
readwrite
An Endpoint object representing the endpoint URL for service requests.
Properties inherited from AWS.Service
Method Summary
-
createStream(params = {}, callback) ⇒ AWS.Request
Creates a new Kinesis video stream.
-
deleteStream(params = {}, callback) ⇒ AWS.Request
Deletes a Kinesis video stream and the data contained in the stream.
-
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.
-
listStreams(params = {}, callback) ⇒ AWS.Request
Returns an array of StreamInfo objects.
-
listTagsForStream(params = {}, callback) ⇒ AWS.Request
Returns a list of tags associated with the specified stream.
-
tagStream(params = {}, callback) ⇒ AWS.Request
Adds one or more tags to a stream.
-
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.
-
updateStream(params = {}, callback) ⇒ AWS.Request
Updates stream metadata, such as the device name and media type.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService
Constructor Details
Property Details
Method Details
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.
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.
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
.
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
.
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
.
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 AWS 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 AWS Billing and Cost Management User Guide.
You must provide either the StreamName
or the StreamARN
.
This operation requires permission for the KinesisVideo:TagStream
action.
Kinesis video streams support up to 50 tags.
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.
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.