aws-sdk-kinesisvideomedia 1.6.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f0741612f4a7c758f9f4af44eb49a949e9ea6c70
4
- data.tar.gz: 5d468125a56cc9507d636f6684edaf519d9862a6
3
+ metadata.gz: 3e42106313e01274c06f39673ac2b17c67686426
4
+ data.tar.gz: 34dd491af9d859af4480d58dd513bc0e9675ccbe
5
5
  SHA512:
6
- metadata.gz: f7130c0ee0460ae4318221f4ad2afd2fc6993a1abc85b80661fb285ef185df8fafc76b373a53b03c5a0bae2c512b72a42889360e7beb5a6c9ae9db99d6d7a348
7
- data.tar.gz: 28bdb5811e19aac9e468722b389a2ab74c9c74dd1a638a7c9c06880b33e5e396916883b12487676bbfa4c9900a140bf764568661512078514b34a9594f7820c5
6
+ metadata.gz: 3f0a9c223acc4f642e7825dfb2832204155fb7c3a5872802ca29ba5b67180754a258313102d9aabd69844a9bf4a32aa5fb7824da442318ba584a9595dc3c8b49
7
+ data.tar.gz: 6874b1a3c5473dd1cbdfaed305c0da2d3e95cfe1e368631da53c4931fcc7fb75fbc20c953610bd2c1e94d5c2f425a945f78a7ee71b7efabc8c14cd22325d27c7
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-kinesisvideomedia/customizations'
42
42
  # @service
43
43
  module Aws::KinesisVideoMedia
44
44
 
45
- GEM_VERSION = '1.6.0'
45
+ GEM_VERSION = '1.7.0'
46
46
 
47
47
  end
@@ -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 Name
210
- # (ARN), and the starting chunk. Kinesis Video Streams then returns a
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 to
214
- # which you can then send the `GetMedia` requests.
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.6.0'
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 time stamp of the
73
+ # * AWS\_KINESISVIDEO\_SERVER\_TIMESTAMP - Server timestamp of the
74
74
  # fragment.
75
75
  #
76
- # * AWS\_KINESISVIDEO\_PRODUCER\_TIMESTAMP - Producer time stamp of
77
- # the fragment.
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 Stream's KMS key
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 time stamp (server or producer).
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 time
155
- # stamp. You specify the time stamp by adding `StartTimestamp`.
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 time stamp value. This value is required if you choose the
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 time stamp.
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.6.0
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: 2018-11-20 00:00:00.000000000 Z
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