Table of Contents
KinesisVideo.
Client
¶A low-level client representing Amazon Kinesis Video Streams
client = session.create_client('kinesisvideo')
These are the available methods:
can_paginate
(operation_name)¶Check if an operation can be paginated.
operation_name (string) – The operation name. This is the same name
as the method name on the client. For example, if the
method name is create_foo
, and you’d normally invoke the
operation as client.create_foo(**kwargs)
, if the
create_foo
operation can be paginated, you can use the
call client.get_paginator("create_foo")
.
True
if the operation can be paginated,
False
otherwise.
create_signaling_channel
(**kwargs)¶Creates a signaling channel.
CreateSignalingChannel
is an asynchronous operation.
See also: AWS API Documentation
Request Syntax
response = client.create_signaling_channel(
ChannelName='string',
ChannelType='SINGLE_MASTER',
SingleMasterConfiguration={
'MessageTtlSeconds': 123
},
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
ChannelName (string) –
[REQUIRED]
A name for the signaling channel that you are creating. It must be unique for each AWS account and AWS Region.
ChannelType (string) – A type of the signaling channel that you are creating. Currently, SINGLE_MASTER
is the only supported channel type.
SingleMasterConfiguration (dict) –
A structure containing the configuration for the SINGLE_MASTER
channel type.
MessageTtlSeconds (integer) –
The period of time a signaling channel retains underlivered messages before they are discarded.
Tags (list) –
A set of tags (key-value pairs) that you want to associate with this channel.
(dict) –
A key and value pair that is associated with the specified signaling channel.
Key (string) – [REQUIRED]
The key of the tag that is associated with the specified signaling channel.
Value (string) – [REQUIRED]
The value of the tag that is associated with the specified signaling channel.
dict
Response Syntax
{
'ChannelARN': 'string'
}
Response Structure
(dict) –
ChannelARN (string) –
The Amazon Resource Name (ARN) of the created channel.
Exceptions
create_stream
(**kwargs)¶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.
See also: AWS API Documentation
Request Syntax
response = client.create_stream(
DeviceName='string',
StreamName='string',
MediaType='string',
KmsKeyId='string',
DataRetentionInHours=123,
Tags={
'string': 'string'
}
)
DeviceName (string) –
The name of the device that is writing to the stream.
Note
In the current implementation, Kinesis Video Streams does not use this name.
StreamName (string) –
[REQUIRED]
A name for the stream that you are creating.
The stream name is an identifier for the stream, and must be unique for each account and region.
MediaType (string) –
The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see Media Types . If you choose to specify the MediaType
, see Naming Requirements for guidelines.
Example valid values include “video/h264” and “video/h264,audio/aac”.
This parameter is optional; the default value is null
(or empty in JSON).
KmsKeyId (string) –
The ID of the AWS Key Management Service (AWS KMS) key that you want Kinesis Video Streams to use to encrypt stream data.
If no key ID is specified, the default, Kinesis Video-managed key (aws/kinesisvideo
) is used.
For more information, see DescribeKey .
DataRetentionInHours (integer) –
The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream.
The default value is 0, indicating that the stream does not persist data.
When the DataRetentionInHours
value is 0, consumers can still consume the fragments that remain in the service host buffer, which has a retention time limit of 5 minutes and a retention memory limit of 200 MB. Fragments are removed from the buffer when either limit is reached.
Tags (dict) –
A list of tags to associate with the specified stream. Each tag is a key-value pair (the value is optional).
(string) –
(string) –
dict
Response Syntax
{
'StreamARN': 'string'
}
Response Structure
(dict) –
StreamARN (string) –
The Amazon Resource Name (ARN) of the stream.
Exceptions
delete_signaling_channel
(**kwargs)¶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.
See also: AWS API Documentation
Request Syntax
response = client.delete_signaling_channel(
ChannelARN='string',
CurrentVersion='string'
)
ChannelARN (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the signaling channel that you want to delete.
CurrentVersion (string) – The current version of the signaling channel that you want to delete. You can obtain the current version by invoking the DescribeSignalingChannel
or ListSignalingChannels
API operations.
dict
Response Syntax
{}
Response Structure
(dict) –
Exceptions
delete_stream
(**kwargs)¶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.
See also: AWS API Documentation
Request Syntax
response = client.delete_stream(
StreamARN='string',
CurrentVersion='string'
)
StreamARN (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the stream that you want to delete.
CurrentVersion (string) –
Optional: The version of the stream that you want to delete.
Specify the version as a safeguard to ensure that your are deleting the correct stream. To get the stream version, use the DescribeStream
API.
If not specified, only the CreationTime
is checked before deleting the stream.
dict
Response Syntax
{}
Response Structure
(dict) –
Exceptions
describe_signaling_channel
(**kwargs)¶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.
See also: AWS API Documentation
Request Syntax
response = client.describe_signaling_channel(
ChannelName='string',
ChannelARN='string'
)
ChannelName (string) – The name of the signaling channel that you want to describe.
ChannelARN (string) – The ARN of the signaling channel that you want to describe.
dict
Response Syntax
{
'ChannelInfo': {
'ChannelName': 'string',
'ChannelARN': 'string',
'ChannelType': 'SINGLE_MASTER',
'ChannelStatus': 'CREATING'|'ACTIVE'|'UPDATING'|'DELETING',
'CreationTime': datetime(2015, 1, 1),
'SingleMasterConfiguration': {
'MessageTtlSeconds': 123
},
'Version': 'string'
}
}
Response Structure
(dict) –
ChannelInfo (dict) –
A structure that encapsulates the specified signaling channel’s metadata and properties.
ChannelName (string) –
The name of the signaling channel.
ChannelARN (string) –
The Amazon Resource Name (ARN) of the signaling channel.
ChannelType (string) –
The type of the signaling channel.
ChannelStatus (string) –
Current status of the signaling channel.
CreationTime (datetime) –
The time at which the signaling channel was created.
SingleMasterConfiguration (dict) –
A structure that contains the configuration for the SINGLE_MASTER
channel type.
MessageTtlSeconds (integer) –
The period of time a signaling channel retains underlivered messages before they are discarded.
Version (string) –
The current version of the signaling channel.
Exceptions
describe_stream
(**kwargs)¶Returns the most current information about the specified stream. You must specify either the StreamName
or the StreamARN
.
See also: AWS API Documentation
Request Syntax
response = client.describe_stream(
StreamName='string',
StreamARN='string'
)
StreamName (string) – The name of the stream.
StreamARN (string) – The Amazon Resource Name (ARN) of the stream.
dict
Response Syntax
{
'StreamInfo': {
'DeviceName': 'string',
'StreamName': 'string',
'StreamARN': 'string',
'MediaType': 'string',
'KmsKeyId': 'string',
'Version': 'string',
'Status': 'CREATING'|'ACTIVE'|'UPDATING'|'DELETING',
'CreationTime': datetime(2015, 1, 1),
'DataRetentionInHours': 123
}
}
Response Structure
(dict) –
StreamInfo (dict) –
An object that describes the stream.
DeviceName (string) –
The name of the device that is associated with the stream.
StreamName (string) –
The name of the stream.
StreamARN (string) –
The Amazon Resource Name (ARN) of the stream.
MediaType (string) –
The MediaType
of the stream.
KmsKeyId (string) –
The ID of the AWS Key Management Service (AWS KMS) key that Kinesis Video Streams uses to encrypt data on the stream.
Version (string) –
The version of the stream.
Status (string) –
The status of the stream.
CreationTime (datetime) –
A time stamp that indicates when the stream was created.
DataRetentionInHours (integer) –
How long the stream retains data, in hours.
Exceptions
generate_presigned_url
(ClientMethod, Params=None, ExpiresIn=3600, HttpMethod=None)¶Generate a presigned url given a client, its method, and arguments
ClientMethod (string) – The client method to presign for
Params (dict) – The parameters normally passed to
ClientMethod
.
ExpiresIn (int) – The number of seconds the presigned url is valid for. By default it expires in an hour (3600 seconds)
HttpMethod (string) – The http method to use on the generated url. By default, the http method is whatever is used in the method’s model.
The presigned url
get_data_endpoint
(**kwargs)¶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).
Note
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
.
See also: AWS API Documentation
Request Syntax
response = client.get_data_endpoint(
StreamName='string',
StreamARN='string',
APIName='PUT_MEDIA'|'GET_MEDIA'|'LIST_FRAGMENTS'|'GET_MEDIA_FOR_FRAGMENT_LIST'|'GET_HLS_STREAMING_SESSION_URL'|'GET_DASH_STREAMING_SESSION_URL'|'GET_CLIP'
)
StreamName (string) – 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.
StreamARN (string) – 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.
APIName (string) –
[REQUIRED]
The name of the API action for which to get an endpoint.
dict
Response Syntax
{
'DataEndpoint': 'string'
}
Response Structure
(dict) –
DataEndpoint (string) –
The endpoint value. To read data from the stream or to write data to it, specify this endpoint in your application.
Exceptions
get_paginator
(operation_name)¶Create a paginator for an operation.
operation_name (string) – The operation name. This is the same name
as the method name on the client. For example, if the
method name is create_foo
, and you’d normally invoke the
operation as client.create_foo(**kwargs)
, if the
create_foo
operation can be paginated, you can use the
call client.get_paginator("create_foo")
.
OperationNotPageableError – Raised if the operation is not
pageable. You can use the client.can_paginate
method to
check if an operation is pageable.
L{botocore.paginate.Paginator}
A paginator object.
get_signaling_channel_endpoint
(**kwargs)¶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 specifyWSS
as the protocol, this API produces a secure websocket endpoint. If you specifyHTTPS
as the protocol, this API generates an HTTPS endpoint.
Role
determines the messaging permissions. AMASTER
role results in this API generating an endpoint that a client can use to communicate with any of the viewers on the channel. AVIEWER
role results in this API generating an endpoint that a client can use to communicate only with aMASTER
.
See also: AWS API Documentation
Request Syntax
response = client.get_signaling_channel_endpoint(
ChannelARN='string',
SingleMasterChannelEndpointConfiguration={
'Protocols': [
'WSS'|'HTTPS',
],
'Role': 'MASTER'|'VIEWER'
}
)
ChannelARN (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the signalling channel for which you want to get an endpoint.
SingleMasterChannelEndpointConfiguration (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',
'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.
Exceptions
get_waiter
(waiter_name)¶Returns an object that can wait for some condition.
waiter_name (str) – The name of the waiter to get. See the waiters section of the service docs for a list of available waiters.
The specified waiter object.
botocore.waiter.Waiter
list_signaling_channels
(**kwargs)¶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
.
See also: AWS API Documentation
Request Syntax
response = client.list_signaling_channels(
MaxResults=123,
NextToken='string',
ChannelNameCondition={
'ComparisonOperator': 'BEGINS_WITH',
'ComparisonValue': 'string'
}
)
MaxResults (integer) – The maximum number of channels to return in the response. The default is 500.
NextToken (string) – If you specify this parameter, when the result of a ListSignalingChannels
operation is truncated, the call returns the NextToken
in the response. To get another batch of channels, provide this token in your next request.
ChannelNameCondition (dict) –
Optional: Returns only the channels that satisfy a specific condition.
ComparisonOperator (string) –
A comparison operator. Currently, you can only specify the BEGINS_WITH
operator, which finds signaling channels whose names begin with a given prefix.
ComparisonValue (string) –
A value to compare.
dict
Response Syntax
{
'ChannelInfoList': [
{
'ChannelName': 'string',
'ChannelARN': 'string',
'ChannelType': 'SINGLE_MASTER',
'ChannelStatus': 'CREATING'|'ACTIVE'|'UPDATING'|'DELETING',
'CreationTime': datetime(2015, 1, 1),
'SingleMasterConfiguration': {
'MessageTtlSeconds': 123
},
'Version': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) –
ChannelInfoList (list) –
An array of ChannelInfo
objects.
(dict) –
A structure that encapsulates a signaling channel’s metadata and properties.
ChannelName (string) –
The name of the signaling channel.
ChannelARN (string) –
The Amazon Resource Name (ARN) of the signaling channel.
ChannelType (string) –
The type of the signaling channel.
ChannelStatus (string) –
Current status of the signaling channel.
CreationTime (datetime) –
The time at which the signaling channel was created.
SingleMasterConfiguration (dict) –
A structure that contains the configuration for the SINGLE_MASTER
channel type.
MessageTtlSeconds (integer) –
The period of time a signaling channel retains underlivered messages before they are discarded.
Version (string) –
The current version of the signaling channel.
NextToken (string) –
If the response is truncated, the call returns this element with a token. To get the next batch of streams, use this token in your next request.
Exceptions
list_streams
(**kwargs)¶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
.
See also: AWS API Documentation
Request Syntax
response = client.list_streams(
MaxResults=123,
NextToken='string',
StreamNameCondition={
'ComparisonOperator': 'BEGINS_WITH',
'ComparisonValue': 'string'
}
)
MaxResults (integer) – The maximum number of streams to return in the response. The default is 10,000.
NextToken (string) – If you specify this parameter, when the result of a ListStreams
operation is truncated, the call returns the NextToken
in the response. To get another batch of streams, provide this token in your next request.
StreamNameCondition (dict) –
Optional: Returns only streams that satisfy a specific condition. Currently, you can specify only the prefix of a stream name as a condition.
ComparisonOperator (string) –
A comparison operator. Currently, you can specify only the BEGINS_WITH
operator, which finds streams whose names start with a given prefix.
ComparisonValue (string) –
A value to compare.
dict
Response Syntax
{
'StreamInfoList': [
{
'DeviceName': 'string',
'StreamName': 'string',
'StreamARN': 'string',
'MediaType': 'string',
'KmsKeyId': 'string',
'Version': 'string',
'Status': 'CREATING'|'ACTIVE'|'UPDATING'|'DELETING',
'CreationTime': datetime(2015, 1, 1),
'DataRetentionInHours': 123
},
],
'NextToken': 'string'
}
Response Structure
(dict) –
StreamInfoList (list) –
An array of StreamInfo
objects.
(dict) –
An object describing a Kinesis video stream.
DeviceName (string) –
The name of the device that is associated with the stream.
StreamName (string) –
The name of the stream.
StreamARN (string) –
The Amazon Resource Name (ARN) of the stream.
MediaType (string) –
The MediaType
of the stream.
KmsKeyId (string) –
The ID of the AWS Key Management Service (AWS KMS) key that Kinesis Video Streams uses to encrypt data on the stream.
Version (string) –
The version of the stream.
Status (string) –
The status of the stream.
CreationTime (datetime) –
A time stamp that indicates when the stream was created.
DataRetentionInHours (integer) –
How long the stream retains data, in hours.
NextToken (string) –
If the response is truncated, the call returns this element with a token. To get the next batch of streams, use this token in your next request.
Exceptions
Returns a list of tags associated with the specified signaling channel.
See also: AWS API Documentation
Request Syntax
response = client.list_tags_for_resource(
NextToken='string',
ResourceARN='string'
)
NextToken (string) – If you specify this parameter and the result of a ListTagsForResource
call is truncated, the response includes a token that you can use in the next request to fetch the next batch of tags.
ResourceARN (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the signaling channel for which you want to list tags.
dict
Response Syntax
{
'NextToken': 'string',
'Tags': {
'string': 'string'
}
}
Response Structure
(dict) –
NextToken (string) –
If you specify this parameter and the result of a ListTagsForResource
call is truncated, the response includes a token that you can use in the next request to fetch the next set of tags.
Tags (dict) –
A map of tag keys and values associated with the specified signaling channel.
(string) –
(string) –
Exceptions
Returns a list of tags associated with the specified stream.
In the request, you must specify either the StreamName
or the StreamARN
.
See also: AWS API Documentation
Request Syntax
response = client.list_tags_for_stream(
NextToken='string',
StreamARN='string',
StreamName='string'
)
NextToken (string) – If you specify this parameter and the result of a ListTagsForStream
call is truncated, the response includes a token that you can use in the next request to fetch the next batch of tags.
StreamARN (string) – The Amazon Resource Name (ARN) of the stream that you want to list tags for.
StreamName (string) – The name of the stream that you want to list tags for.
dict
Response Syntax
{
'NextToken': 'string',
'Tags': {
'string': 'string'
}
}
Response Structure
(dict) –
NextToken (string) –
If you specify this parameter and the result of a ListTags
call is truncated, the response includes a token that you can use in the next request to fetch the next set of tags.
Tags (dict) –
A map of tag keys and values associated with the specified stream.
(string) –
(string) –
Exceptions
tag_resource
(**kwargs)¶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 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 .
See also: AWS API Documentation
Request Syntax
response = client.tag_resource(
ResourceARN='string',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
ResourceARN (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the signaling channel to which you want to add tags.
Tags (list) –
[REQUIRED]
A list of tags to associate with the specified signaling channel. Each tag is a key-value pair.
(dict) –
A key and value pair that is associated with the specified signaling channel.
Key (string) – [REQUIRED]
The key of the tag that is associated with the specified signaling channel.
Value (string) – [REQUIRED]
The value of the tag that is associated with the specified signaling channel.
dict
Response Syntax
{}
Response Structure
(dict) –
Exceptions
tag_stream
(**kwargs)¶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.
See also: AWS API Documentation
Request Syntax
response = client.tag_stream(
StreamARN='string',
StreamName='string',
Tags={
'string': 'string'
}
)
StreamARN (string) – The Amazon Resource Name (ARN) of the resource that you want to add the tag or tags to.
StreamName (string) – The name of the stream that you want to add the tag or tags to.
Tags (dict) –
[REQUIRED]
A list of tags to associate with the specified stream. Each tag is a key-value pair (the value is optional).
(string) –
(string) –
dict
Response Syntax
{}
Response Structure
(dict) –
Exceptions
untag_resource
(**kwargs)¶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.
See also: AWS API Documentation
Request Syntax
response = client.untag_resource(
ResourceARN='string',
TagKeyList=[
'string',
]
)
ResourceARN (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the signaling channel from which you want to remove tags.
TagKeyList (list) –
[REQUIRED]
A list of the keys of the tags that you want to remove.
(string) –
dict
Response Syntax
{}
Response Structure
(dict) –
Exceptions
untag_stream
(**kwargs)¶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
.
See also: AWS API Documentation
Request Syntax
response = client.untag_stream(
StreamARN='string',
StreamName='string',
TagKeyList=[
'string',
]
)
StreamARN (string) – The Amazon Resource Name (ARN) of the stream that you want to remove tags from.
StreamName (string) – The name of the stream that you want to remove tags from.
TagKeyList (list) –
[REQUIRED]
A list of the keys of the tags that you want to remove.
(string) –
dict
Response Syntax
{}
Response Structure
(dict) –
Exceptions
update_data_retention
(**kwargs)¶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
.
Note
The retention period that you specify replaces the current value.
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.
See also: AWS API Documentation
Request Syntax
response = client.update_data_retention(
StreamName='string',
StreamARN='string',
CurrentVersion='string',
Operation='INCREASE_DATA_RETENTION'|'DECREASE_DATA_RETENTION',
DataRetentionChangeInHours=123
)
StreamName (string) – The name of the stream whose retention period you want to change.
StreamARN (string) – The Amazon Resource Name (ARN) of the stream whose retention period you want to change.
CurrentVersion (string) –
[REQUIRED]
The version of the stream whose retention period you want to change. To get the version, call either the DescribeStream
or the ListStreams
API.
Operation (string) –
[REQUIRED]
Indicates whether you want to increase or decrease the retention period.
DataRetentionChangeInHours (integer) –
[REQUIRED]
The retention period, in hours. The value you specify replaces the current value. The maximum value for this parameter is 87600 (ten years).
dict
Response Syntax
{}
Response Structure
(dict) –
Exceptions
update_signaling_channel
(**kwargs)¶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.
See also: AWS API Documentation
Request Syntax
response = client.update_signaling_channel(
ChannelARN='string',
CurrentVersion='string',
SingleMasterConfiguration={
'MessageTtlSeconds': 123
}
)
ChannelARN (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the signaling channel that you want to update.
CurrentVersion (string) –
[REQUIRED]
The current version of the signaling channel that you want to update.
SingleMasterConfiguration (dict) –
The structure containing the configuration for the SINGLE_MASTER
type of the signaling channel that you want to update.
MessageTtlSeconds (integer) –
The period of time a signaling channel retains underlivered messages before they are discarded.
dict
Response Syntax
{}
Response Structure
(dict) –
Exceptions
update_stream
(**kwargs)¶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.
See also: AWS API Documentation
Request Syntax
response = client.update_stream(
StreamName='string',
StreamARN='string',
CurrentVersion='string',
DeviceName='string',
MediaType='string'
)
StreamName (string) –
The name of the stream whose metadata you want to update.
The stream name is an identifier for the stream, and must be unique for each account and region.
StreamARN (string) – The ARN of the stream whose metadata you want to update.
CurrentVersion (string) –
[REQUIRED]
The version of the stream whose metadata you want to update.
DeviceName (string) –
The name of the device that is writing to the stream.
Note
In the current implementation, Kinesis Video Streams does not use this name.
MediaType (string) –
The stream’s media type. Use MediaType
to specify the type of content that the stream contains to the consumers of the stream. For more information about media types, see Media Types . If you choose to specify the MediaType
, see Naming Requirements .
To play video on the console, you must specify the correct video type. For example, if the video in the stream is H.264, specify video/h264
as the MediaType
.
dict
Response Syntax
{}
Response Structure
(dict) –
Exceptions
Client exceptions are available on a client instance via the exceptions
property. For more detailed instructions and examples on the exact usage of client exceptions, see the error handling user guide.
The available client exceptions are:
KinesisVideo.Client.exceptions.AccountChannelLimitExceededException
KinesisVideo.Client.exceptions.AccountStreamLimitExceededException
KinesisVideo.Client.exceptions.DeviceStreamLimitExceededException
KinesisVideo.Client.exceptions.InvalidResourceFormatException
KinesisVideo.Client.exceptions.TagsPerResourceExceededLimitException
KinesisVideo.Client.exceptions.
AccessDeniedException
¶You do not have required permissions to perform this operation.
Example
try:
...
except client.exceptions.AccessDeniedException as e:
print(e.response)
response
¶The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
You do not have required permissions to perform this operation.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
KinesisVideo.Client.exceptions.
AccountChannelLimitExceededException
¶You have reached the maximum limit of active signaling channels for this AWS account in this region.
Example
try:
...
except client.exceptions.AccountChannelLimitExceededException as e:
print(e.response)
response
¶The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
You have reached the maximum limit of active signaling channels for this AWS account in this region.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
KinesisVideo.Client.exceptions.
AccountStreamLimitExceededException
¶The number of streams created for the account is too high.
Example
try:
...
except client.exceptions.AccountStreamLimitExceededException as e:
print(e.response)
response
¶The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The number of streams created for the account is too high.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
KinesisVideo.Client.exceptions.
ClientLimitExceededException
¶Kinesis Video Streams has throttled the request because you have exceeded the limit of allowed client calls. Try making the call later.
Example
try:
...
except client.exceptions.ClientLimitExceededException as e:
print(e.response)
response
¶The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
Kinesis Video Streams has throttled the request because you have exceeded the limit of allowed client calls. Try making the call later.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
KinesisVideo.Client.exceptions.
DeviceStreamLimitExceededException
¶Not implemented.
Example
try:
...
except client.exceptions.DeviceStreamLimitExceededException as e:
print(e.response)
response
¶The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
Not implemented.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
KinesisVideo.Client.exceptions.
InvalidArgumentException
¶The value for this input parameter is invalid.
Example
try:
...
except client.exceptions.InvalidArgumentException as e:
print(e.response)
response
¶The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The value for this input parameter is invalid.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
KinesisVideo.Client.exceptions.
InvalidDeviceException
¶Not implemented.
Example
try:
...
except client.exceptions.InvalidDeviceException as e:
print(e.response)
response
¶The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
Not implemented.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
KinesisVideo.Client.exceptions.
InvalidResourceFormatException
¶The format of the StreamARN
is invalid.
Example
try:
...
except client.exceptions.InvalidResourceFormatException as e:
print(e.response)
response
¶The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The format of the StreamARN
is invalid.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
KinesisVideo.Client.exceptions.
NotAuthorizedException
¶The caller is not authorized to perform this operation.
Example
try:
...
except client.exceptions.NotAuthorizedException as e:
print(e.response)
response
¶The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The caller is not authorized to perform this operation.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
KinesisVideo.Client.exceptions.
ResourceInUseException
¶The signaling channel is currently not available for this operation.
Example
try:
...
except client.exceptions.ResourceInUseException as e:
print(e.response)
response
¶The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The signaling channel is currently not available for this operation.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
KinesisVideo.Client.exceptions.
ResourceNotFoundException
¶Amazon Kinesis Video Streams can’t find the stream that you specified.
Example
try:
...
except client.exceptions.ResourceNotFoundException as e:
print(e.response)
response
¶The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
Amazon Kinesis Video Streams can’t find the stream that you specified.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
KinesisVideo.Client.exceptions.
TagsPerResourceExceededLimitException
¶You have exceeded the limit of tags that you can associate with the resource. Kinesis video streams support up to 50 tags.
Example
try:
...
except client.exceptions.TagsPerResourceExceededLimitException as e:
print(e.response)
response
¶The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
You have exceeded the limit of tags that you can associate with the resource. Kinesis video streams support up to 50 tags.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
KinesisVideo.Client.exceptions.
VersionMismatchException
¶The stream version that you specified is not the latest version. To get the latest version, use the DescribeStream API.
Example
try:
...
except client.exceptions.VersionMismatchException as e:
print(e.response)
response
¶The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The stream version that you specified is not the latest version. To get the latest version, use the DescribeStream API.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The available paginators are:
KinesisVideo.Paginator.
ListSignalingChannels
¶paginator = client.get_paginator('list_signaling_channels')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from KinesisVideo.Client.list_signaling_channels()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
ChannelNameCondition={
'ComparisonOperator': 'BEGINS_WITH',
'ComparisonValue': 'string'
},
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
ChannelNameCondition (dict) –
Optional: Returns only the channels that satisfy a specific condition.
ComparisonOperator (string) –
A comparison operator. Currently, you can only specify the BEGINS_WITH
operator, which finds signaling channels whose names begin with a given prefix.
ComparisonValue (string) –
A value to compare.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'ChannelInfoList': [
{
'ChannelName': 'string',
'ChannelARN': 'string',
'ChannelType': 'SINGLE_MASTER',
'ChannelStatus': 'CREATING'|'ACTIVE'|'UPDATING'|'DELETING',
'CreationTime': datetime(2015, 1, 1),
'SingleMasterConfiguration': {
'MessageTtlSeconds': 123
},
'Version': 'string'
},
],
}
Response Structure
(dict) –
ChannelInfoList (list) –
An array of ChannelInfo
objects.
(dict) –
A structure that encapsulates a signaling channel’s metadata and properties.
ChannelName (string) –
The name of the signaling channel.
ChannelARN (string) –
The Amazon Resource Name (ARN) of the signaling channel.
ChannelType (string) –
The type of the signaling channel.
ChannelStatus (string) –
Current status of the signaling channel.
CreationTime (datetime) –
The time at which the signaling channel was created.
SingleMasterConfiguration (dict) –
A structure that contains the configuration for the SINGLE_MASTER
channel type.
MessageTtlSeconds (integer) –
The period of time a signaling channel retains underlivered messages before they are discarded.
Version (string) –
The current version of the signaling channel.
KinesisVideo.Paginator.
ListStreams
¶paginator = client.get_paginator('list_streams')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from KinesisVideo.Client.list_streams()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
StreamNameCondition={
'ComparisonOperator': 'BEGINS_WITH',
'ComparisonValue': 'string'
},
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
StreamNameCondition (dict) –
Optional: Returns only streams that satisfy a specific condition. Currently, you can specify only the prefix of a stream name as a condition.
ComparisonOperator (string) –
A comparison operator. Currently, you can specify only the BEGINS_WITH
operator, which finds streams whose names start with a given prefix.
ComparisonValue (string) –
A value to compare.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'StreamInfoList': [
{
'DeviceName': 'string',
'StreamName': 'string',
'StreamARN': 'string',
'MediaType': 'string',
'KmsKeyId': 'string',
'Version': 'string',
'Status': 'CREATING'|'ACTIVE'|'UPDATING'|'DELETING',
'CreationTime': datetime(2015, 1, 1),
'DataRetentionInHours': 123
},
],
}
Response Structure
(dict) –
StreamInfoList (list) –
An array of StreamInfo
objects.
(dict) –
An object describing a Kinesis video stream.
DeviceName (string) –
The name of the device that is associated with the stream.
StreamName (string) –
The name of the stream.
StreamARN (string) –
The Amazon Resource Name (ARN) of the stream.
MediaType (string) –
The MediaType
of the stream.
KmsKeyId (string) –
The ID of the AWS Key Management Service (AWS KMS) key that Kinesis Video Streams uses to encrypt data on the stream.
Version (string) –
The version of the stream.
Status (string) –
The status of the stream.
CreationTime (datetime) –
A time stamp that indicates when the stream was created.
DataRetentionInHours (integer) –
How long the stream retains data, in hours.