aws-sdk-kinesisvideomedia 1.6.0 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e42106313e01274c06f39673ac2b17c67686426
|
4
|
+
data.tar.gz: 34dd491af9d859af4480d58dd513bc0e9675ccbe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f0a9c223acc4f642e7825dfb2832204155fb7c3a5872802ca29ba5b67180754a258313102d9aabd69844a9bf4a32aa5fb7824da442318ba584a9595dc3c8b49
|
7
|
+
data.tar.gz: 6874b1a3c5473dd1cbdfaed305c0da2d3e95cfe1e368631da53c4931fcc7fb75fbc20c953610bd2c1e94d5c2f425a945f78a7ee71b7efabc8c14cd22325d27c7
|
@@ -206,12 +206,13 @@ module Aws::KinesisVideoMedia
|
|
206
206
|
# @!group API Operations
|
207
207
|
|
208
208
|
# Use this API to retrieve media content from a Kinesis video stream. In
|
209
|
-
# the request, you identify stream name or stream Amazon Resource
|
210
|
-
# (ARN), and the starting chunk. Kinesis Video Streams then returns
|
211
|
-
# stream of chunks in order by fragment number.
|
209
|
+
# the request, you identify the stream name or stream Amazon Resource
|
210
|
+
# Name (ARN), and the starting chunk. Kinesis Video Streams then returns
|
211
|
+
# a stream of chunks in order by fragment number.
|
212
212
|
#
|
213
|
-
# <note markdown="1"> You must first call the `GetDataEndpoint` API to get an endpoint
|
214
|
-
#
|
213
|
+
# <note markdown="1"> You must first call the `GetDataEndpoint` API to get an endpoint. Then
|
214
|
+
# send the `GetMedia` requests to this endpoint using the
|
215
|
+
# [--endpoint-url parameter][1].
|
215
216
|
#
|
216
217
|
# </note>
|
217
218
|
#
|
@@ -229,6 +230,10 @@ module Aws::KinesisVideoMedia
|
|
229
230
|
# megabytes per second (or 200 megabits per second) during a
|
230
231
|
# `GetMedia` session.
|
231
232
|
#
|
233
|
+
#
|
234
|
+
#
|
235
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/reference/
|
236
|
+
#
|
232
237
|
# @option params [String] :stream_name
|
233
238
|
# The Kinesis video stream name from where you want to get the media
|
234
239
|
# content. If you don't specify the `streamName`, you must specify the
|
@@ -286,7 +291,7 @@ module Aws::KinesisVideoMedia
|
|
286
291
|
params: params,
|
287
292
|
config: config)
|
288
293
|
context[:gem_name] = 'aws-sdk-kinesisvideomedia'
|
289
|
-
context[:gem_version] = '1.
|
294
|
+
context[:gem_version] = '1.7.0'
|
290
295
|
Seahorse::Client::Request.new(handlers, context)
|
291
296
|
end
|
292
297
|
|
@@ -70,11 +70,11 @@ module Aws::KinesisVideoMedia
|
|
70
70
|
# * AWS\_KINESISVIDEO\_FRAGMENT\_NUMBER - Fragment number returned in
|
71
71
|
# the chunk.
|
72
72
|
#
|
73
|
-
# * AWS\_KINESISVIDEO\_SERVER\_TIMESTAMP - Server
|
73
|
+
# * AWS\_KINESISVIDEO\_SERVER\_TIMESTAMP - Server timestamp of the
|
74
74
|
# fragment.
|
75
75
|
#
|
76
|
-
# * AWS\_KINESISVIDEO\_PRODUCER\_TIMESTAMP - Producer
|
77
|
-
#
|
76
|
+
# * AWS\_KINESISVIDEO\_PRODUCER\_TIMESTAMP - Producer timestamp of the
|
77
|
+
# fragment.
|
78
78
|
#
|
79
79
|
# The following tags will be present if an error occurs:
|
80
80
|
#
|
@@ -93,7 +93,7 @@ module Aws::KinesisVideoMedia
|
|
93
93
|
#
|
94
94
|
# * 4501 - Stream's KMS key is disabled
|
95
95
|
#
|
96
|
-
# * 4502 - Validation error on the
|
96
|
+
# * 4502 - Validation error on the stream's KMS key
|
97
97
|
#
|
98
98
|
# * 4503 - KMS key specified in the stream is unavailable
|
99
99
|
#
|
@@ -121,7 +121,7 @@ module Aws::KinesisVideoMedia
|
|
121
121
|
# * Choose the latest (or oldest) chunk.
|
122
122
|
#
|
123
123
|
# * Identify a specific chunk. You can identify a specific chunk either
|
124
|
-
# by providing a fragment number or
|
124
|
+
# by providing a fragment number or timestamp (server or producer).
|
125
125
|
#
|
126
126
|
# * Each chunk's metadata includes a continuation token as a Matroska
|
127
127
|
# (MKV) tag (`AWS_KINESISVIDEO_CONTINUATION_TOKEN`). If your previous
|
@@ -151,8 +151,8 @@ module Aws::KinesisVideoMedia
|
|
151
151
|
# fragment. You must also specify the `StartFragmentNumber`.
|
152
152
|
#
|
153
153
|
# * PRODUCER\_TIMESTAMP or SERVER\_TIMESTAMP - Start with the chunk
|
154
|
-
# containing a fragment with the specified producer or server
|
155
|
-
#
|
154
|
+
# containing a fragment with the specified producer or server
|
155
|
+
# timestamp. You specify the timestamp by adding `StartTimestamp`.
|
156
156
|
#
|
157
157
|
# * CONTINUATION\_TOKEN - Read using the specified continuation token.
|
158
158
|
#
|
@@ -169,10 +169,10 @@ module Aws::KinesisVideoMedia
|
|
169
169
|
# @return [String]
|
170
170
|
#
|
171
171
|
# @!attribute [rw] start_timestamp
|
172
|
-
# A
|
172
|
+
# A timestamp value. This value is required if you choose the
|
173
173
|
# PRODUCER\_TIMESTAMP or the SERVER\_TIMESTAMP as the
|
174
174
|
# `startSelectorType`. The `GetMedia` API then starts with the chunk
|
175
|
-
# containing the fragment that has the specified
|
175
|
+
# containing the fragment that has the specified timestamp.
|
176
176
|
# @return [Time]
|
177
177
|
#
|
178
178
|
# @!attribute [rw] continuation_token
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-kinesisvideomedia
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-02-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|