aws-sdk-mediapackage 1.69.0 → 1.71.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.
data/sig/types.rbs ADDED
@@ -0,0 +1,671 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::MediaPackage
9
+ module Types
10
+
11
+ class Authorization
12
+ attr_accessor cdn_identifier_secret: ::String
13
+ attr_accessor secrets_role_arn: ::String
14
+ SENSITIVE: []
15
+ end
16
+
17
+ class Channel
18
+ attr_accessor arn: ::String
19
+ attr_accessor created_at: ::String
20
+ attr_accessor description: ::String
21
+ attr_accessor egress_access_logs: Types::EgressAccessLogs
22
+ attr_accessor hls_ingest: Types::HlsIngest
23
+ attr_accessor id: ::String
24
+ attr_accessor ingress_access_logs: Types::IngressAccessLogs
25
+ attr_accessor tags: ::Hash[::String, ::String]
26
+ SENSITIVE: []
27
+ end
28
+
29
+ class ChannelCreateParameters
30
+ attr_accessor description: ::String
31
+ attr_accessor id: ::String
32
+ attr_accessor tags: ::Hash[::String, ::String]
33
+ SENSITIVE: []
34
+ end
35
+
36
+ class ChannelList
37
+ attr_accessor channels: ::Array[Types::Channel]
38
+ attr_accessor next_token: ::String
39
+ SENSITIVE: []
40
+ end
41
+
42
+ class ChannelUpdateParameters
43
+ attr_accessor description: ::String
44
+ SENSITIVE: []
45
+ end
46
+
47
+ class CmafEncryption
48
+ attr_accessor constant_initialization_vector: ::String
49
+ attr_accessor encryption_method: ("SAMPLE_AES" | "AES_CTR")
50
+ attr_accessor key_rotation_interval_seconds: ::Integer
51
+ attr_accessor speke_key_provider: Types::SpekeKeyProvider
52
+ SENSITIVE: []
53
+ end
54
+
55
+ class CmafPackage
56
+ attr_accessor encryption: Types::CmafEncryption
57
+ attr_accessor hls_manifests: ::Array[Types::HlsManifest]
58
+ attr_accessor segment_duration_seconds: ::Integer
59
+ attr_accessor segment_prefix: ::String
60
+ attr_accessor stream_selection: Types::StreamSelection
61
+ SENSITIVE: []
62
+ end
63
+
64
+ class CmafPackageCreateOrUpdateParameters
65
+ attr_accessor encryption: Types::CmafEncryption
66
+ attr_accessor hls_manifests: ::Array[Types::HlsManifestCreateOrUpdateParameters]
67
+ attr_accessor segment_duration_seconds: ::Integer
68
+ attr_accessor segment_prefix: ::String
69
+ attr_accessor stream_selection: Types::StreamSelection
70
+ SENSITIVE: []
71
+ end
72
+
73
+ class ConfigureLogsParameters
74
+ attr_accessor egress_access_logs: Types::EgressAccessLogs
75
+ attr_accessor ingress_access_logs: Types::IngressAccessLogs
76
+ SENSITIVE: []
77
+ end
78
+
79
+ class ConfigureLogsRequest
80
+ attr_accessor egress_access_logs: Types::EgressAccessLogs
81
+ attr_accessor id: ::String
82
+ attr_accessor ingress_access_logs: Types::IngressAccessLogs
83
+ SENSITIVE: []
84
+ end
85
+
86
+ class ConfigureLogsResponse
87
+ attr_accessor arn: ::String
88
+ attr_accessor created_at: ::String
89
+ attr_accessor description: ::String
90
+ attr_accessor egress_access_logs: Types::EgressAccessLogs
91
+ attr_accessor hls_ingest: Types::HlsIngest
92
+ attr_accessor id: ::String
93
+ attr_accessor ingress_access_logs: Types::IngressAccessLogs
94
+ attr_accessor tags: ::Hash[::String, ::String]
95
+ SENSITIVE: []
96
+ end
97
+
98
+ class CreateChannelRequest
99
+ attr_accessor description: ::String
100
+ attr_accessor id: ::String
101
+ attr_accessor tags: ::Hash[::String, ::String]
102
+ SENSITIVE: []
103
+ end
104
+
105
+ class CreateChannelResponse
106
+ attr_accessor arn: ::String
107
+ attr_accessor created_at: ::String
108
+ attr_accessor description: ::String
109
+ attr_accessor egress_access_logs: Types::EgressAccessLogs
110
+ attr_accessor hls_ingest: Types::HlsIngest
111
+ attr_accessor id: ::String
112
+ attr_accessor ingress_access_logs: Types::IngressAccessLogs
113
+ attr_accessor tags: ::Hash[::String, ::String]
114
+ SENSITIVE: []
115
+ end
116
+
117
+ class CreateHarvestJobRequest
118
+ attr_accessor end_time: ::String
119
+ attr_accessor id: ::String
120
+ attr_accessor origin_endpoint_id: ::String
121
+ attr_accessor s3_destination: Types::S3Destination
122
+ attr_accessor start_time: ::String
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class CreateHarvestJobResponse
127
+ attr_accessor arn: ::String
128
+ attr_accessor channel_id: ::String
129
+ attr_accessor created_at: ::String
130
+ attr_accessor end_time: ::String
131
+ attr_accessor id: ::String
132
+ attr_accessor origin_endpoint_id: ::String
133
+ attr_accessor s3_destination: Types::S3Destination
134
+ attr_accessor start_time: ::String
135
+ attr_accessor status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
136
+ SENSITIVE: []
137
+ end
138
+
139
+ class CreateOriginEndpointRequest
140
+ attr_accessor authorization: Types::Authorization
141
+ attr_accessor channel_id: ::String
142
+ attr_accessor cmaf_package: Types::CmafPackageCreateOrUpdateParameters
143
+ attr_accessor dash_package: Types::DashPackage
144
+ attr_accessor description: ::String
145
+ attr_accessor hls_package: Types::HlsPackage
146
+ attr_accessor id: ::String
147
+ attr_accessor manifest_name: ::String
148
+ attr_accessor mss_package: Types::MssPackage
149
+ attr_accessor origination: ("ALLOW" | "DENY")
150
+ attr_accessor startover_window_seconds: ::Integer
151
+ attr_accessor tags: ::Hash[::String, ::String]
152
+ attr_accessor time_delay_seconds: ::Integer
153
+ attr_accessor whitelist: ::Array[::String]
154
+ SENSITIVE: []
155
+ end
156
+
157
+ class CreateOriginEndpointResponse
158
+ attr_accessor arn: ::String
159
+ attr_accessor authorization: Types::Authorization
160
+ attr_accessor channel_id: ::String
161
+ attr_accessor cmaf_package: Types::CmafPackage
162
+ attr_accessor created_at: ::String
163
+ attr_accessor dash_package: Types::DashPackage
164
+ attr_accessor description: ::String
165
+ attr_accessor hls_package: Types::HlsPackage
166
+ attr_accessor id: ::String
167
+ attr_accessor manifest_name: ::String
168
+ attr_accessor mss_package: Types::MssPackage
169
+ attr_accessor origination: ("ALLOW" | "DENY")
170
+ attr_accessor startover_window_seconds: ::Integer
171
+ attr_accessor tags: ::Hash[::String, ::String]
172
+ attr_accessor time_delay_seconds: ::Integer
173
+ attr_accessor url: ::String
174
+ attr_accessor whitelist: ::Array[::String]
175
+ SENSITIVE: []
176
+ end
177
+
178
+ class DashEncryption
179
+ attr_accessor key_rotation_interval_seconds: ::Integer
180
+ attr_accessor speke_key_provider: Types::SpekeKeyProvider
181
+ SENSITIVE: []
182
+ end
183
+
184
+ class DashPackage
185
+ attr_accessor ad_triggers: ::Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY")]
186
+ attr_accessor ads_on_delivery_restrictions: ("NONE" | "RESTRICTED" | "UNRESTRICTED" | "BOTH")
187
+ attr_accessor encryption: Types::DashEncryption
188
+ attr_accessor include_iframe_only_stream: bool
189
+ attr_accessor manifest_layout: ("FULL" | "COMPACT" | "DRM_TOP_LEVEL_COMPACT")
190
+ attr_accessor manifest_window_seconds: ::Integer
191
+ attr_accessor min_buffer_time_seconds: ::Integer
192
+ attr_accessor min_update_period_seconds: ::Integer
193
+ attr_accessor period_triggers: ::Array[("ADS")]
194
+ attr_accessor profile: ("NONE" | "HBBTV_1_5" | "HYBRIDCAST" | "DVB_DASH_2014")
195
+ attr_accessor segment_duration_seconds: ::Integer
196
+ attr_accessor segment_template_format: ("NUMBER_WITH_TIMELINE" | "TIME_WITH_TIMELINE" | "NUMBER_WITH_DURATION")
197
+ attr_accessor stream_selection: Types::StreamSelection
198
+ attr_accessor suggested_presentation_delay_seconds: ::Integer
199
+ attr_accessor utc_timing: ("NONE" | "HTTP-HEAD" | "HTTP-ISO" | "HTTP-XSDATE")
200
+ attr_accessor utc_timing_uri: ::String
201
+ SENSITIVE: []
202
+ end
203
+
204
+ class DeleteChannelRequest
205
+ attr_accessor id: ::String
206
+ SENSITIVE: []
207
+ end
208
+
209
+ class DeleteChannelResponse < Aws::EmptyStructure
210
+ end
211
+
212
+ class DeleteOriginEndpointRequest
213
+ attr_accessor id: ::String
214
+ SENSITIVE: []
215
+ end
216
+
217
+ class DeleteOriginEndpointResponse < Aws::EmptyStructure
218
+ end
219
+
220
+ class DescribeChannelRequest
221
+ attr_accessor id: ::String
222
+ SENSITIVE: []
223
+ end
224
+
225
+ class DescribeChannelResponse
226
+ attr_accessor arn: ::String
227
+ attr_accessor created_at: ::String
228
+ attr_accessor description: ::String
229
+ attr_accessor egress_access_logs: Types::EgressAccessLogs
230
+ attr_accessor hls_ingest: Types::HlsIngest
231
+ attr_accessor id: ::String
232
+ attr_accessor ingress_access_logs: Types::IngressAccessLogs
233
+ attr_accessor tags: ::Hash[::String, ::String]
234
+ SENSITIVE: []
235
+ end
236
+
237
+ class DescribeHarvestJobRequest
238
+ attr_accessor id: ::String
239
+ SENSITIVE: []
240
+ end
241
+
242
+ class DescribeHarvestJobResponse
243
+ attr_accessor arn: ::String
244
+ attr_accessor channel_id: ::String
245
+ attr_accessor created_at: ::String
246
+ attr_accessor end_time: ::String
247
+ attr_accessor id: ::String
248
+ attr_accessor origin_endpoint_id: ::String
249
+ attr_accessor s3_destination: Types::S3Destination
250
+ attr_accessor start_time: ::String
251
+ attr_accessor status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
252
+ SENSITIVE: []
253
+ end
254
+
255
+ class DescribeOriginEndpointRequest
256
+ attr_accessor id: ::String
257
+ SENSITIVE: []
258
+ end
259
+
260
+ class DescribeOriginEndpointResponse
261
+ attr_accessor arn: ::String
262
+ attr_accessor authorization: Types::Authorization
263
+ attr_accessor channel_id: ::String
264
+ attr_accessor cmaf_package: Types::CmafPackage
265
+ attr_accessor created_at: ::String
266
+ attr_accessor dash_package: Types::DashPackage
267
+ attr_accessor description: ::String
268
+ attr_accessor hls_package: Types::HlsPackage
269
+ attr_accessor id: ::String
270
+ attr_accessor manifest_name: ::String
271
+ attr_accessor mss_package: Types::MssPackage
272
+ attr_accessor origination: ("ALLOW" | "DENY")
273
+ attr_accessor startover_window_seconds: ::Integer
274
+ attr_accessor tags: ::Hash[::String, ::String]
275
+ attr_accessor time_delay_seconds: ::Integer
276
+ attr_accessor url: ::String
277
+ attr_accessor whitelist: ::Array[::String]
278
+ SENSITIVE: []
279
+ end
280
+
281
+ class EgressAccessLogs
282
+ attr_accessor log_group_name: ::String
283
+ SENSITIVE: []
284
+ end
285
+
286
+ class EncryptionContractConfiguration
287
+ attr_accessor preset_speke_20_audio: ("PRESET-AUDIO-1" | "PRESET-AUDIO-2" | "PRESET-AUDIO-3" | "SHARED" | "UNENCRYPTED")
288
+ attr_accessor preset_speke_20_video: ("PRESET-VIDEO-1" | "PRESET-VIDEO-2" | "PRESET-VIDEO-3" | "PRESET-VIDEO-4" | "PRESET-VIDEO-5" | "PRESET-VIDEO-6" | "PRESET-VIDEO-7" | "PRESET-VIDEO-8" | "SHARED" | "UNENCRYPTED")
289
+ SENSITIVE: []
290
+ end
291
+
292
+ class ForbiddenException
293
+ attr_accessor message: ::String
294
+ SENSITIVE: []
295
+ end
296
+
297
+ class HarvestJob
298
+ attr_accessor arn: ::String
299
+ attr_accessor channel_id: ::String
300
+ attr_accessor created_at: ::String
301
+ attr_accessor end_time: ::String
302
+ attr_accessor id: ::String
303
+ attr_accessor origin_endpoint_id: ::String
304
+ attr_accessor s3_destination: Types::S3Destination
305
+ attr_accessor start_time: ::String
306
+ attr_accessor status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
307
+ SENSITIVE: []
308
+ end
309
+
310
+ class HarvestJobCreateParameters
311
+ attr_accessor end_time: ::String
312
+ attr_accessor id: ::String
313
+ attr_accessor origin_endpoint_id: ::String
314
+ attr_accessor s3_destination: Types::S3Destination
315
+ attr_accessor start_time: ::String
316
+ SENSITIVE: []
317
+ end
318
+
319
+ class HarvestJobList
320
+ attr_accessor harvest_jobs: ::Array[Types::HarvestJob]
321
+ attr_accessor next_token: ::String
322
+ SENSITIVE: []
323
+ end
324
+
325
+ class HlsEncryption
326
+ attr_accessor constant_initialization_vector: ::String
327
+ attr_accessor encryption_method: ("AES_128" | "SAMPLE_AES")
328
+ attr_accessor key_rotation_interval_seconds: ::Integer
329
+ attr_accessor repeat_ext_x_key: bool
330
+ attr_accessor speke_key_provider: Types::SpekeKeyProvider
331
+ SENSITIVE: []
332
+ end
333
+
334
+ class HlsIngest
335
+ attr_accessor ingest_endpoints: ::Array[Types::IngestEndpoint]
336
+ SENSITIVE: []
337
+ end
338
+
339
+ class HlsManifest
340
+ attr_accessor ad_markers: ("NONE" | "SCTE35_ENHANCED" | "PASSTHROUGH" | "DATERANGE")
341
+ attr_accessor id: ::String
342
+ attr_accessor include_iframe_only_stream: bool
343
+ attr_accessor manifest_name: ::String
344
+ attr_accessor playlist_type: ("NONE" | "EVENT" | "VOD")
345
+ attr_accessor playlist_window_seconds: ::Integer
346
+ attr_accessor program_date_time_interval_seconds: ::Integer
347
+ attr_accessor url: ::String
348
+ SENSITIVE: []
349
+ end
350
+
351
+ class HlsManifestCreateOrUpdateParameters
352
+ attr_accessor ad_markers: ("NONE" | "SCTE35_ENHANCED" | "PASSTHROUGH" | "DATERANGE")
353
+ attr_accessor ad_triggers: ::Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY")]
354
+ attr_accessor ads_on_delivery_restrictions: ("NONE" | "RESTRICTED" | "UNRESTRICTED" | "BOTH")
355
+ attr_accessor id: ::String
356
+ attr_accessor include_iframe_only_stream: bool
357
+ attr_accessor manifest_name: ::String
358
+ attr_accessor playlist_type: ("NONE" | "EVENT" | "VOD")
359
+ attr_accessor playlist_window_seconds: ::Integer
360
+ attr_accessor program_date_time_interval_seconds: ::Integer
361
+ SENSITIVE: []
362
+ end
363
+
364
+ class HlsPackage
365
+ attr_accessor ad_markers: ("NONE" | "SCTE35_ENHANCED" | "PASSTHROUGH" | "DATERANGE")
366
+ attr_accessor ad_triggers: ::Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY")]
367
+ attr_accessor ads_on_delivery_restrictions: ("NONE" | "RESTRICTED" | "UNRESTRICTED" | "BOTH")
368
+ attr_accessor encryption: Types::HlsEncryption
369
+ attr_accessor include_dvb_subtitles: bool
370
+ attr_accessor include_iframe_only_stream: bool
371
+ attr_accessor playlist_type: ("NONE" | "EVENT" | "VOD")
372
+ attr_accessor playlist_window_seconds: ::Integer
373
+ attr_accessor program_date_time_interval_seconds: ::Integer
374
+ attr_accessor segment_duration_seconds: ::Integer
375
+ attr_accessor stream_selection: Types::StreamSelection
376
+ attr_accessor use_audio_rendition_group: bool
377
+ SENSITIVE: []
378
+ end
379
+
380
+ class IngestEndpoint
381
+ attr_accessor id: ::String
382
+ attr_accessor password: ::String
383
+ attr_accessor url: ::String
384
+ attr_accessor username: ::String
385
+ SENSITIVE: [:password, :username]
386
+ end
387
+
388
+ class IngressAccessLogs
389
+ attr_accessor log_group_name: ::String
390
+ SENSITIVE: []
391
+ end
392
+
393
+ class InternalServerErrorException
394
+ attr_accessor message: ::String
395
+ SENSITIVE: []
396
+ end
397
+
398
+ class ListChannelsRequest
399
+ attr_accessor max_results: ::Integer
400
+ attr_accessor next_token: ::String
401
+ SENSITIVE: []
402
+ end
403
+
404
+ class ListChannelsResponse
405
+ attr_accessor channels: ::Array[Types::Channel]
406
+ attr_accessor next_token: ::String
407
+ SENSITIVE: []
408
+ end
409
+
410
+ class ListHarvestJobsRequest
411
+ attr_accessor include_channel_id: ::String
412
+ attr_accessor include_status: ::String
413
+ attr_accessor max_results: ::Integer
414
+ attr_accessor next_token: ::String
415
+ SENSITIVE: []
416
+ end
417
+
418
+ class ListHarvestJobsResponse
419
+ attr_accessor harvest_jobs: ::Array[Types::HarvestJob]
420
+ attr_accessor next_token: ::String
421
+ SENSITIVE: []
422
+ end
423
+
424
+ class ListOriginEndpointsRequest
425
+ attr_accessor channel_id: ::String
426
+ attr_accessor max_results: ::Integer
427
+ attr_accessor next_token: ::String
428
+ SENSITIVE: []
429
+ end
430
+
431
+ class ListOriginEndpointsResponse
432
+ attr_accessor next_token: ::String
433
+ attr_accessor origin_endpoints: ::Array[Types::OriginEndpoint]
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class ListTagsForResourceRequest
438
+ attr_accessor resource_arn: ::String
439
+ SENSITIVE: []
440
+ end
441
+
442
+ class ListTagsForResourceResponse
443
+ attr_accessor tags: ::Hash[::String, ::String]
444
+ SENSITIVE: []
445
+ end
446
+
447
+ class MssEncryption
448
+ attr_accessor speke_key_provider: Types::SpekeKeyProvider
449
+ SENSITIVE: []
450
+ end
451
+
452
+ class MssPackage
453
+ attr_accessor encryption: Types::MssEncryption
454
+ attr_accessor manifest_window_seconds: ::Integer
455
+ attr_accessor segment_duration_seconds: ::Integer
456
+ attr_accessor stream_selection: Types::StreamSelection
457
+ SENSITIVE: []
458
+ end
459
+
460
+ class NotFoundException
461
+ attr_accessor message: ::String
462
+ SENSITIVE: []
463
+ end
464
+
465
+ class OriginEndpoint
466
+ attr_accessor arn: ::String
467
+ attr_accessor authorization: Types::Authorization
468
+ attr_accessor channel_id: ::String
469
+ attr_accessor cmaf_package: Types::CmafPackage
470
+ attr_accessor created_at: ::String
471
+ attr_accessor dash_package: Types::DashPackage
472
+ attr_accessor description: ::String
473
+ attr_accessor hls_package: Types::HlsPackage
474
+ attr_accessor id: ::String
475
+ attr_accessor manifest_name: ::String
476
+ attr_accessor mss_package: Types::MssPackage
477
+ attr_accessor origination: ("ALLOW" | "DENY")
478
+ attr_accessor startover_window_seconds: ::Integer
479
+ attr_accessor tags: ::Hash[::String, ::String]
480
+ attr_accessor time_delay_seconds: ::Integer
481
+ attr_accessor url: ::String
482
+ attr_accessor whitelist: ::Array[::String]
483
+ SENSITIVE: []
484
+ end
485
+
486
+ class OriginEndpointCreateParameters
487
+ attr_accessor authorization: Types::Authorization
488
+ attr_accessor channel_id: ::String
489
+ attr_accessor cmaf_package: Types::CmafPackageCreateOrUpdateParameters
490
+ attr_accessor dash_package: Types::DashPackage
491
+ attr_accessor description: ::String
492
+ attr_accessor hls_package: Types::HlsPackage
493
+ attr_accessor id: ::String
494
+ attr_accessor manifest_name: ::String
495
+ attr_accessor mss_package: Types::MssPackage
496
+ attr_accessor origination: ("ALLOW" | "DENY")
497
+ attr_accessor startover_window_seconds: ::Integer
498
+ attr_accessor tags: ::Hash[::String, ::String]
499
+ attr_accessor time_delay_seconds: ::Integer
500
+ attr_accessor whitelist: ::Array[::String]
501
+ SENSITIVE: []
502
+ end
503
+
504
+ class OriginEndpointList
505
+ attr_accessor next_token: ::String
506
+ attr_accessor origin_endpoints: ::Array[Types::OriginEndpoint]
507
+ SENSITIVE: []
508
+ end
509
+
510
+ class OriginEndpointUpdateParameters
511
+ attr_accessor authorization: Types::Authorization
512
+ attr_accessor cmaf_package: Types::CmafPackageCreateOrUpdateParameters
513
+ attr_accessor dash_package: Types::DashPackage
514
+ attr_accessor description: ::String
515
+ attr_accessor hls_package: Types::HlsPackage
516
+ attr_accessor manifest_name: ::String
517
+ attr_accessor mss_package: Types::MssPackage
518
+ attr_accessor origination: ("ALLOW" | "DENY")
519
+ attr_accessor startover_window_seconds: ::Integer
520
+ attr_accessor time_delay_seconds: ::Integer
521
+ attr_accessor whitelist: ::Array[::String]
522
+ SENSITIVE: []
523
+ end
524
+
525
+ class RotateChannelCredentialsRequest
526
+ attr_accessor id: ::String
527
+ SENSITIVE: []
528
+ end
529
+
530
+ class RotateChannelCredentialsResponse
531
+ attr_accessor arn: ::String
532
+ attr_accessor created_at: ::String
533
+ attr_accessor description: ::String
534
+ attr_accessor egress_access_logs: Types::EgressAccessLogs
535
+ attr_accessor hls_ingest: Types::HlsIngest
536
+ attr_accessor id: ::String
537
+ attr_accessor ingress_access_logs: Types::IngressAccessLogs
538
+ attr_accessor tags: ::Hash[::String, ::String]
539
+ SENSITIVE: []
540
+ end
541
+
542
+ class RotateIngestEndpointCredentialsRequest
543
+ attr_accessor id: ::String
544
+ attr_accessor ingest_endpoint_id: ::String
545
+ SENSITIVE: []
546
+ end
547
+
548
+ class RotateIngestEndpointCredentialsResponse
549
+ attr_accessor arn: ::String
550
+ attr_accessor created_at: ::String
551
+ attr_accessor description: ::String
552
+ attr_accessor egress_access_logs: Types::EgressAccessLogs
553
+ attr_accessor hls_ingest: Types::HlsIngest
554
+ attr_accessor id: ::String
555
+ attr_accessor ingress_access_logs: Types::IngressAccessLogs
556
+ attr_accessor tags: ::Hash[::String, ::String]
557
+ SENSITIVE: []
558
+ end
559
+
560
+ class S3Destination
561
+ attr_accessor bucket_name: ::String
562
+ attr_accessor manifest_key: ::String
563
+ attr_accessor role_arn: ::String
564
+ SENSITIVE: []
565
+ end
566
+
567
+ class ServiceUnavailableException
568
+ attr_accessor message: ::String
569
+ SENSITIVE: []
570
+ end
571
+
572
+ class SpekeKeyProvider
573
+ attr_accessor certificate_arn: ::String
574
+ attr_accessor encryption_contract_configuration: Types::EncryptionContractConfiguration
575
+ attr_accessor resource_id: ::String
576
+ attr_accessor role_arn: ::String
577
+ attr_accessor system_ids: ::Array[::String]
578
+ attr_accessor url: ::String
579
+ SENSITIVE: []
580
+ end
581
+
582
+ class StreamSelection
583
+ attr_accessor max_video_bits_per_second: ::Integer
584
+ attr_accessor min_video_bits_per_second: ::Integer
585
+ attr_accessor stream_order: ("ORIGINAL" | "VIDEO_BITRATE_ASCENDING" | "VIDEO_BITRATE_DESCENDING")
586
+ SENSITIVE: []
587
+ end
588
+
589
+ class TagResourceRequest
590
+ attr_accessor resource_arn: ::String
591
+ attr_accessor tags: ::Hash[::String, ::String]
592
+ SENSITIVE: []
593
+ end
594
+
595
+ class TagsModel
596
+ attr_accessor tags: ::Hash[::String, ::String]
597
+ SENSITIVE: []
598
+ end
599
+
600
+ class TooManyRequestsException
601
+ attr_accessor message: ::String
602
+ SENSITIVE: []
603
+ end
604
+
605
+ class UnprocessableEntityException
606
+ attr_accessor message: ::String
607
+ SENSITIVE: []
608
+ end
609
+
610
+ class UntagResourceRequest
611
+ attr_accessor resource_arn: ::String
612
+ attr_accessor tag_keys: ::Array[::String]
613
+ SENSITIVE: []
614
+ end
615
+
616
+ class UpdateChannelRequest
617
+ attr_accessor description: ::String
618
+ attr_accessor id: ::String
619
+ SENSITIVE: []
620
+ end
621
+
622
+ class UpdateChannelResponse
623
+ attr_accessor arn: ::String
624
+ attr_accessor created_at: ::String
625
+ attr_accessor description: ::String
626
+ attr_accessor egress_access_logs: Types::EgressAccessLogs
627
+ attr_accessor hls_ingest: Types::HlsIngest
628
+ attr_accessor id: ::String
629
+ attr_accessor ingress_access_logs: Types::IngressAccessLogs
630
+ attr_accessor tags: ::Hash[::String, ::String]
631
+ SENSITIVE: []
632
+ end
633
+
634
+ class UpdateOriginEndpointRequest
635
+ attr_accessor authorization: Types::Authorization
636
+ attr_accessor cmaf_package: Types::CmafPackageCreateOrUpdateParameters
637
+ attr_accessor dash_package: Types::DashPackage
638
+ attr_accessor description: ::String
639
+ attr_accessor hls_package: Types::HlsPackage
640
+ attr_accessor id: ::String
641
+ attr_accessor manifest_name: ::String
642
+ attr_accessor mss_package: Types::MssPackage
643
+ attr_accessor origination: ("ALLOW" | "DENY")
644
+ attr_accessor startover_window_seconds: ::Integer
645
+ attr_accessor time_delay_seconds: ::Integer
646
+ attr_accessor whitelist: ::Array[::String]
647
+ SENSITIVE: []
648
+ end
649
+
650
+ class UpdateOriginEndpointResponse
651
+ attr_accessor arn: ::String
652
+ attr_accessor authorization: Types::Authorization
653
+ attr_accessor channel_id: ::String
654
+ attr_accessor cmaf_package: Types::CmafPackage
655
+ attr_accessor created_at: ::String
656
+ attr_accessor dash_package: Types::DashPackage
657
+ attr_accessor description: ::String
658
+ attr_accessor hls_package: Types::HlsPackage
659
+ attr_accessor id: ::String
660
+ attr_accessor manifest_name: ::String
661
+ attr_accessor mss_package: Types::MssPackage
662
+ attr_accessor origination: ("ALLOW" | "DENY")
663
+ attr_accessor startover_window_seconds: ::Integer
664
+ attr_accessor tags: ::Hash[::String, ::String]
665
+ attr_accessor time_delay_seconds: ::Integer
666
+ attr_accessor url: ::String
667
+ attr_accessor whitelist: ::Array[::String]
668
+ SENSITIVE: []
669
+ end
670
+ end
671
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module MediaPackage
10
+ module Waiters
11
+ end
12
+ end
13
+ end