forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
613 lines (529 loc) · 20.7 KB
/
api.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package kinesisvideoarchivedmedia
import (
"io"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
)
const opGetMediaForFragmentList = "GetMediaForFragmentList"
// GetMediaForFragmentListRequest generates a "aws/request.Request" representing the
// client's request for the GetMediaForFragmentList operation. The "output" return
// value will be populated with the request's response once the request completes
// successfuly.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See GetMediaForFragmentList for more information on using the GetMediaForFragmentList
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
//
// // Example sending a request using the GetMediaForFragmentListRequest method.
// req, resp := client.GetMediaForFragmentListRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/kinesis-video-archived-media-2017-09-30/GetMediaForFragmentList
func (c *KinesisVideoArchivedMedia) GetMediaForFragmentListRequest(input *GetMediaForFragmentListInput) (req *request.Request, output *GetMediaForFragmentListOutput) {
op := &request.Operation{
Name: opGetMediaForFragmentList,
HTTPMethod: "POST",
HTTPPath: "/getMediaForFragmentList",
}
if input == nil {
input = &GetMediaForFragmentListInput{}
}
output = &GetMediaForFragmentListOutput{}
req = c.newRequest(op, input, output)
return
}
// GetMediaForFragmentList API operation for Amazon Kinesis Video Streams Archived Media.
//
// Gets media for a list of fragments (specified by fragment number) from the
// archived data in a Kinesis video stream.
//
// This operation is only available for the AWS SDK for Java. It is not supported
// in AWS SDKs for other languages.
//
// The following limits apply when using the GetMediaForFragmentList API:
//
// * A client can call GetMediaForFragmentList up to five times per second
// per stream.
//
// * Kinesis Video Streams sends media data at a rate of up to 25 megabytes
// per second (or 200 megabits per second) during a GetMediaForFragmentList
// session.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Kinesis Video Streams Archived Media's
// API operation GetMediaForFragmentList for usage and error information.
//
// Returned Error Codes:
// * ErrCodeResourceNotFoundException "ResourceNotFoundException"
// Kinesis Video Streams can't find the stream that you specified.
//
// * ErrCodeInvalidArgumentException "InvalidArgumentException"
// A specified parameter exceeds its restrictions, is not supported, or can't
// be used.
//
// * ErrCodeClientLimitExceededException "ClientLimitExceededException"
// Kinesis Video Streams has throttled the request because you have exceeded
// the limit of allowed client calls. Try making the call later.
//
// * ErrCodeNotAuthorizedException "NotAuthorizedException"
// Status Code: 403, The caller is not authorized to perform an operation on
// the given stream, or the token has expired.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/kinesis-video-archived-media-2017-09-30/GetMediaForFragmentList
func (c *KinesisVideoArchivedMedia) GetMediaForFragmentList(input *GetMediaForFragmentListInput) (*GetMediaForFragmentListOutput, error) {
req, out := c.GetMediaForFragmentListRequest(input)
return out, req.Send()
}
// GetMediaForFragmentListWithContext is the same as GetMediaForFragmentList with the addition of
// the ability to pass a context and additional request options.
//
// See GetMediaForFragmentList for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *KinesisVideoArchivedMedia) GetMediaForFragmentListWithContext(ctx aws.Context, input *GetMediaForFragmentListInput, opts ...request.Option) (*GetMediaForFragmentListOutput, error) {
req, out := c.GetMediaForFragmentListRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opListFragments = "ListFragments"
// ListFragmentsRequest generates a "aws/request.Request" representing the
// client's request for the ListFragments operation. The "output" return
// value will be populated with the request's response once the request completes
// successfuly.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See ListFragments for more information on using the ListFragments
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
//
// // Example sending a request using the ListFragmentsRequest method.
// req, resp := client.ListFragmentsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/kinesis-video-archived-media-2017-09-30/ListFragments
func (c *KinesisVideoArchivedMedia) ListFragmentsRequest(input *ListFragmentsInput) (req *request.Request, output *ListFragmentsOutput) {
op := &request.Operation{
Name: opListFragments,
HTTPMethod: "POST",
HTTPPath: "/listFragments",
}
if input == nil {
input = &ListFragmentsInput{}
}
output = &ListFragmentsOutput{}
req = c.newRequest(op, input, output)
return
}
// ListFragments API operation for Amazon Kinesis Video Streams Archived Media.
//
// Returns a list of Fragment objects from the specified stream and start location
// within the archived data.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Kinesis Video Streams Archived Media's
// API operation ListFragments for usage and error information.
//
// Returned Error Codes:
// * ErrCodeResourceNotFoundException "ResourceNotFoundException"
// Kinesis Video Streams can't find the stream that you specified.
//
// * ErrCodeInvalidArgumentException "InvalidArgumentException"
// A specified parameter exceeds its restrictions, is not supported, or can't
// be used.
//
// * ErrCodeClientLimitExceededException "ClientLimitExceededException"
// Kinesis Video Streams has throttled the request because you have exceeded
// the limit of allowed client calls. Try making the call later.
//
// * ErrCodeNotAuthorizedException "NotAuthorizedException"
// Status Code: 403, The caller is not authorized to perform an operation on
// the given stream, or the token has expired.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/kinesis-video-archived-media-2017-09-30/ListFragments
func (c *KinesisVideoArchivedMedia) ListFragments(input *ListFragmentsInput) (*ListFragmentsOutput, error) {
req, out := c.ListFragmentsRequest(input)
return out, req.Send()
}
// ListFragmentsWithContext is the same as ListFragments with the addition of
// the ability to pass a context and additional request options.
//
// See ListFragments for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *KinesisVideoArchivedMedia) ListFragmentsWithContext(ctx aws.Context, input *ListFragmentsInput, opts ...request.Option) (*ListFragmentsOutput, error) {
req, out := c.ListFragmentsRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
// Represents a segment of video or other time-delimited data.
type Fragment struct {
_ struct{} `type:"structure"`
// The playback duration or other time value associated with the fragment.
FragmentLengthInMilliseconds *int64 `type:"long"`
// The index value of the fragment.
FragmentNumber *string `min:"1" type:"string"`
// The total fragment size, including information about the fragment and contained
// media data.
FragmentSizeInBytes *int64 `type:"long"`
// The time stamp from the producer corresponding to the fragment.
ProducerTimestamp *time.Time `type:"timestamp" timestampFormat:"unix"`
// The time stamp from the AWS server corresponding to the fragment.
ServerTimestamp *time.Time `type:"timestamp" timestampFormat:"unix"`
}
// String returns the string representation
func (s Fragment) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Fragment) GoString() string {
return s.String()
}
// SetFragmentLengthInMilliseconds sets the FragmentLengthInMilliseconds field's value.
func (s *Fragment) SetFragmentLengthInMilliseconds(v int64) *Fragment {
s.FragmentLengthInMilliseconds = &v
return s
}
// SetFragmentNumber sets the FragmentNumber field's value.
func (s *Fragment) SetFragmentNumber(v string) *Fragment {
s.FragmentNumber = &v
return s
}
// SetFragmentSizeInBytes sets the FragmentSizeInBytes field's value.
func (s *Fragment) SetFragmentSizeInBytes(v int64) *Fragment {
s.FragmentSizeInBytes = &v
return s
}
// SetProducerTimestamp sets the ProducerTimestamp field's value.
func (s *Fragment) SetProducerTimestamp(v time.Time) *Fragment {
s.ProducerTimestamp = &v
return s
}
// SetServerTimestamp sets the ServerTimestamp field's value.
func (s *Fragment) SetServerTimestamp(v time.Time) *Fragment {
s.ServerTimestamp = &v
return s
}
// Describes the time stamp range and time stamp origin of a range of fragments.
type FragmentSelector struct {
_ struct{} `type:"structure"`
// The origin of the time stamps to use (Server or Producer).
//
// FragmentSelectorType is a required field
FragmentSelectorType *string `type:"string" required:"true" enum:"FragmentSelectorType"`
// The range of time stamps to return.
//
// TimestampRange is a required field
TimestampRange *TimestampRange `type:"structure" required:"true"`
}
// String returns the string representation
func (s FragmentSelector) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s FragmentSelector) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *FragmentSelector) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "FragmentSelector"}
if s.FragmentSelectorType == nil {
invalidParams.Add(request.NewErrParamRequired("FragmentSelectorType"))
}
if s.TimestampRange == nil {
invalidParams.Add(request.NewErrParamRequired("TimestampRange"))
}
if s.TimestampRange != nil {
if err := s.TimestampRange.Validate(); err != nil {
invalidParams.AddNested("TimestampRange", err.(request.ErrInvalidParams))
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFragmentSelectorType sets the FragmentSelectorType field's value.
func (s *FragmentSelector) SetFragmentSelectorType(v string) *FragmentSelector {
s.FragmentSelectorType = &v
return s
}
// SetTimestampRange sets the TimestampRange field's value.
func (s *FragmentSelector) SetTimestampRange(v *TimestampRange) *FragmentSelector {
s.TimestampRange = v
return s
}
type GetMediaForFragmentListInput struct {
_ struct{} `type:"structure"`
// A list of the numbers of fragments for which to retrieve media. You retrieve
// these values with ListFragments.
//
// Fragments is a required field
Fragments []*string `type:"list" required:"true"`
// The name of the stream from which to retrieve fragment media.
//
// StreamName is a required field
StreamName *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s GetMediaForFragmentListInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetMediaForFragmentListInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetMediaForFragmentListInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetMediaForFragmentListInput"}
if s.Fragments == nil {
invalidParams.Add(request.NewErrParamRequired("Fragments"))
}
if s.StreamName == nil {
invalidParams.Add(request.NewErrParamRequired("StreamName"))
}
if s.StreamName != nil && len(*s.StreamName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("StreamName", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFragments sets the Fragments field's value.
func (s *GetMediaForFragmentListInput) SetFragments(v []*string) *GetMediaForFragmentListInput {
s.Fragments = v
return s
}
// SetStreamName sets the StreamName field's value.
func (s *GetMediaForFragmentListInput) SetStreamName(v string) *GetMediaForFragmentListInput {
s.StreamName = &v
return s
}
type GetMediaForFragmentListOutput struct {
_ struct{} `type:"structure" payload:"Payload"`
// The content type of the requested media.
ContentType *string `location:"header" locationName:"Content-Type" min:"1" type:"string"`
// The payload that Kinesis Video Streams returns is a sequence of chunks from
// the specified stream. For information about the chunks, see PutMedia (docs.aws.amazon.com/acuity/latest/dg/API_dataplane_PutMedia.html).
// The chunks that Kinesis Video Streams returns in the GetMediaForFragmentList
// call also include the following additional Matroska (MKV) tags:
//
// * AWS_KINESISVIDEO_FRAGMENT_NUMBER - Fragment number returned in the chunk.
//
// * AWS_KINESISVIDEO_SERVER_SIDE_TIMESTAMP - Server-side time stamp of the
// fragment.
//
// * AWS_KINESISVIDEO_PRODUCER_SIDE_TIMESTAMP - Producer-side time stamp
// of the fragment.
//
// The following tags will be included if an exception occurs:
//
// * AWS_KINESISVIDEO_FRAGMENT_NUMBER - The number of the fragment that threw
// the exception
//
// * AWS_KINESISVIDEO_EXCEPTION_ERROR_CODE - The integer code of the exception
//
// * AWS_KINESISVIDEO_EXCEPTION_MESSAGE - A text description of the exception
Payload io.ReadCloser `type:"blob"`
}
// String returns the string representation
func (s GetMediaForFragmentListOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetMediaForFragmentListOutput) GoString() string {
return s.String()
}
// SetContentType sets the ContentType field's value.
func (s *GetMediaForFragmentListOutput) SetContentType(v string) *GetMediaForFragmentListOutput {
s.ContentType = &v
return s
}
// SetPayload sets the Payload field's value.
func (s *GetMediaForFragmentListOutput) SetPayload(v io.ReadCloser) *GetMediaForFragmentListOutput {
s.Payload = v
return s
}
type ListFragmentsInput struct {
_ struct{} `type:"structure"`
// Describes the time stamp range and time stamp origin for the range of fragments
// to return.
FragmentSelector *FragmentSelector `type:"structure"`
// The total number of fragments to return. If the total number of fragments
// available is more than the value specified in max-results, then a ListFragmentsOutput$NextToken
// is provided in the output that you can use to resume pagination.
MaxResults *int64 `min:"1" type:"long"`
// A token to specify where to start paginating. This is the ListFragmentsOutput$NextToken
// from a previously truncated response.
NextToken *string `min:"1" type:"string"`
// The name of the stream from which to retrieve a fragment list.
//
// StreamName is a required field
StreamName *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s ListFragmentsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListFragmentsInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *ListFragmentsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ListFragmentsInput"}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
}
if s.NextToken != nil && len(*s.NextToken) < 1 {
invalidParams.Add(request.NewErrParamMinLen("NextToken", 1))
}
if s.StreamName == nil {
invalidParams.Add(request.NewErrParamRequired("StreamName"))
}
if s.StreamName != nil && len(*s.StreamName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("StreamName", 1))
}
if s.FragmentSelector != nil {
if err := s.FragmentSelector.Validate(); err != nil {
invalidParams.AddNested("FragmentSelector", err.(request.ErrInvalidParams))
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFragmentSelector sets the FragmentSelector field's value.
func (s *ListFragmentsInput) SetFragmentSelector(v *FragmentSelector) *ListFragmentsInput {
s.FragmentSelector = v
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *ListFragmentsInput) SetMaxResults(v int64) *ListFragmentsInput {
s.MaxResults = &v
return s
}
// SetNextToken sets the NextToken field's value.
func (s *ListFragmentsInput) SetNextToken(v string) *ListFragmentsInput {
s.NextToken = &v
return s
}
// SetStreamName sets the StreamName field's value.
func (s *ListFragmentsInput) SetStreamName(v string) *ListFragmentsInput {
s.StreamName = &v
return s
}
type ListFragmentsOutput struct {
_ struct{} `type:"structure"`
// A list of fragment numbers that correspond to the time stamp range provided.
Fragments []*Fragment `type:"list"`
// If the returned list is truncated, the operation returns this token to use
// to retrieve the next page of results. This value is null when there are no
// more results to return.
NextToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ListFragmentsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListFragmentsOutput) GoString() string {
return s.String()
}
// SetFragments sets the Fragments field's value.
func (s *ListFragmentsOutput) SetFragments(v []*Fragment) *ListFragmentsOutput {
s.Fragments = v
return s
}
// SetNextToken sets the NextToken field's value.
func (s *ListFragmentsOutput) SetNextToken(v string) *ListFragmentsOutput {
s.NextToken = &v
return s
}
// The range of time stamps for which to return fragments.
type TimestampRange struct {
_ struct{} `type:"structure"`
// The ending time stamp in the range of time stamps for which to return fragments.
//
// EndTimestamp is a required field
EndTimestamp *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`
// The starting time stamp in the range of time stamps for which to return fragments.
//
// StartTimestamp is a required field
StartTimestamp *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`
}
// String returns the string representation
func (s TimestampRange) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s TimestampRange) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *TimestampRange) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "TimestampRange"}
if s.EndTimestamp == nil {
invalidParams.Add(request.NewErrParamRequired("EndTimestamp"))
}
if s.StartTimestamp == nil {
invalidParams.Add(request.NewErrParamRequired("StartTimestamp"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetEndTimestamp sets the EndTimestamp field's value.
func (s *TimestampRange) SetEndTimestamp(v time.Time) *TimestampRange {
s.EndTimestamp = &v
return s
}
// SetStartTimestamp sets the StartTimestamp field's value.
func (s *TimestampRange) SetStartTimestamp(v time.Time) *TimestampRange {
s.StartTimestamp = &v
return s
}
const (
// FragmentSelectorTypeProducerTimestamp is a FragmentSelectorType enum value
FragmentSelectorTypeProducerTimestamp = "PRODUCER_TIMESTAMP"
// FragmentSelectorTypeServerTimestamp is a FragmentSelectorType enum value
FragmentSelectorTypeServerTimestamp = "SERVER_TIMESTAMP"
)