@aws-sdk/client-mediapackagev2 3.597.0 → 3.598.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.
Files changed (25) hide show
  1. package/dist-types/commands/CreateChannelCommand.d.ts +44 -0
  2. package/dist-types/commands/CreateChannelGroupCommand.d.ts +31 -0
  3. package/dist-types/commands/CreateOriginEndpointCommand.d.ts +472 -0
  4. package/dist-types/commands/DeleteChannelCommand.d.ts +12 -0
  5. package/dist-types/commands/DeleteChannelGroupCommand.d.ts +11 -0
  6. package/dist-types/commands/DeleteChannelPolicyCommand.d.ts +12 -0
  7. package/dist-types/commands/DeleteOriginEndpointCommand.d.ts +13 -0
  8. package/dist-types/commands/DeleteOriginEndpointPolicyCommand.d.ts +13 -0
  9. package/dist-types/commands/GetChannelCommand.d.ts +38 -0
  10. package/dist-types/commands/GetChannelGroupCommand.d.ts +26 -0
  11. package/dist-types/commands/GetChannelPolicyCommand.d.ts +19 -0
  12. package/dist-types/commands/GetOriginEndpointCommand.d.ts +115 -0
  13. package/dist-types/commands/GetOriginEndpointPolicyCommand.d.ts +21 -0
  14. package/dist-types/commands/ListChannelGroupsCommand.d.ts +28 -0
  15. package/dist-types/commands/ListChannelsCommand.d.ts +32 -0
  16. package/dist-types/commands/ListOriginEndpointsCommand.d.ts +111 -0
  17. package/dist-types/commands/ListTagsForResourceCommand.d.ts +19 -0
  18. package/dist-types/commands/PutChannelPolicyCommand.d.ts +13 -0
  19. package/dist-types/commands/PutOriginEndpointPolicyCommand.d.ts +14 -0
  20. package/dist-types/commands/TagResourceCommand.d.ts +15 -0
  21. package/dist-types/commands/UntagResourceCommand.d.ts +15 -0
  22. package/dist-types/commands/UpdateChannelCommand.d.ts +39 -0
  23. package/dist-types/commands/UpdateChannelGroupCommand.d.ts +27 -0
  24. package/dist-types/commands/UpdateOriginEndpointCommand.d.ts +196 -0
  25. package/package.json +37 -37
@@ -99,6 +99,50 @@ declare const CreateChannelCommand_base: {
99
99
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
100
100
  *
101
101
  * @public
102
+ * @example Creating a Channel
103
+ * ```javascript
104
+ * //
105
+ * const input = {
106
+ * "ChannelGroupName": "exampleChannelGroup",
107
+ * "ChannelName": "exampleChannel",
108
+ * "Description": "Description for exampleChannel",
109
+ * "InputType": "HLS",
110
+ * "Tags": {
111
+ * "key1": "value1",
112
+ * "key2": "value2"
113
+ * }
114
+ * };
115
+ * const command = new CreateChannelCommand(input);
116
+ * const response = await client.send(command);
117
+ * /* response ==
118
+ * {
119
+ * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel",
120
+ * "ChannelGroupName": "exampleChannelGroup",
121
+ * "ChannelName": "exampleChannel",
122
+ * "CreatedAt": "2022-10-18T09:36:00.00Z",
123
+ * "Description": "Description for exampleChannel",
124
+ * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
125
+ * "IngestEndpoints": [
126
+ * {
127
+ * "Id": "1",
128
+ * "Url": "https://abcde-1.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index"
129
+ * },
130
+ * {
131
+ * "Id": "2",
132
+ * "Url": "https://abcde-2.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index"
133
+ * }
134
+ * ],
135
+ * "InputType": "HLS",
136
+ * "ModifiedAt": "2022-10-18T09:36:00.00Z",
137
+ * "Tags": {
138
+ * "key1": "value1",
139
+ * "key2": "value2"
140
+ * }
141
+ * }
142
+ * *\/
143
+ * // example id: example-1
144
+ * ```
145
+ *
102
146
  */
103
147
  export declare class CreateChannelCommand extends CreateChannelCommand_base {
104
148
  }
@@ -90,6 +90,37 @@ declare const CreateChannelGroupCommand_base: {
90
90
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
91
91
  *
92
92
  * @public
93
+ * @example Creating a Channel Group
94
+ * ```javascript
95
+ * //
96
+ * const input = {
97
+ * "ChannelGroupName": "exampleChannelGroup",
98
+ * "Description": "Description for exampleChannelGroup",
99
+ * "Tags": {
100
+ * "key1": "value1",
101
+ * "key2": "value2"
102
+ * }
103
+ * };
104
+ * const command = new CreateChannelGroupCommand(input);
105
+ * const response = await client.send(command);
106
+ * /* response ==
107
+ * {
108
+ * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup",
109
+ * "ChannelGroupName": "exampleChannelGroup",
110
+ * "CreatedAt": "2022-10-18T09:36:00.00Z",
111
+ * "Description": "Description for exampleChannelGroup",
112
+ * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
113
+ * "EgressDomain": "abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com",
114
+ * "ModifiedAt": "2022-10-18T09:36:00.00Z",
115
+ * "Tags": {
116
+ * "key1": "value1",
117
+ * "key2": "value2"
118
+ * }
119
+ * }
120
+ * *\/
121
+ * // example id: example-1
122
+ * ```
123
+ *
93
124
  */
94
125
  export declare class CreateChannelGroupCommand extends CreateChannelGroupCommand_base {
95
126
  }
@@ -296,6 +296,478 @@ declare const CreateOriginEndpointCommand_base: {
296
296
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
297
297
  *
298
298
  * @public
299
+ * @example Creating an OriginEndpoint with container type TS, and encryption enabled
300
+ * ```javascript
301
+ * //
302
+ * const input = {
303
+ * "ChannelGroupName": "exampleChannelGroup",
304
+ * "ChannelName": "exampleChannel",
305
+ * "ContainerType": "TS",
306
+ * "Description": "Description for exampleOriginEndpointTS",
307
+ * "ForceEndpointErrorConfiguration": {
308
+ * "EndpointErrorConditions": [
309
+ * "STALE_MANIFEST",
310
+ * "INCOMPLETE_MANIFEST",
311
+ * "MISSING_DRM_KEY",
312
+ * "SLATE_INPUT"
313
+ * ]
314
+ * },
315
+ * "HlsManifests": [
316
+ * {
317
+ * "ChildManifestName": "exampleChildManifest1",
318
+ * "ManifestName": "exampleManifest1",
319
+ * "ManifestWindowSeconds": 30,
320
+ * "ProgramDateTimeIntervalSeconds": 60,
321
+ * "ScteHls": {
322
+ * "AdMarkerHls": "DATERANGE"
323
+ * }
324
+ * },
325
+ * {
326
+ * "ChildManifestName": "exampleManifest2",
327
+ * "ManifestName": "exampleManifest2",
328
+ * "ManifestWindowSeconds": 30,
329
+ * "ProgramDateTimeIntervalSeconds": 60,
330
+ * "ScteHls": {
331
+ * "AdMarkerHls": "DATERANGE"
332
+ * }
333
+ * }
334
+ * ],
335
+ * "LowLatencyHlsManifests": [
336
+ * {
337
+ * "ChildManifestName": "exampleLLChildManifest1",
338
+ * "ManifestName": "exampleLLManifest1",
339
+ * "ManifestWindowSeconds": 30,
340
+ * "ProgramDateTimeIntervalSeconds": 60,
341
+ * "ScteHls": {
342
+ * "AdMarkerHls": "DATERANGE"
343
+ * }
344
+ * },
345
+ * {
346
+ * "ChildManifestName": "exampleLLManifest2",
347
+ * "ManifestName": "exampleLLManifest2",
348
+ * "ManifestWindowSeconds": 30,
349
+ * "ProgramDateTimeIntervalSeconds": 60,
350
+ * "ScteHls": {
351
+ * "AdMarkerHls": "DATERANGE"
352
+ * }
353
+ * }
354
+ * ],
355
+ * "OriginEndpointName": "exampleOriginEndpointTS",
356
+ * "Segment": {
357
+ * "Encryption": {
358
+ * "ConstantInitializationVector": "A382A901F3C1F7718512266CFFBB0B7E",
359
+ * "EncryptionMethod": {
360
+ * "TsEncryptionMethod": "AES_128"
361
+ * },
362
+ * "KeyRotationIntervalSeconds": 300,
363
+ * "SpekeKeyProvider": {
364
+ * "DrmSystems": [
365
+ * "CLEAR_KEY_AES_128"
366
+ * ],
367
+ * "EncryptionContractConfiguration": {
368
+ * "PresetSpeke20Audio": "SHARED",
369
+ * "PresetSpeke20Video": "SHARED"
370
+ * },
371
+ * "ResourceId": "ResourceId",
372
+ * "RoleArn": "arn:aws:iam::123456789012:role/empRole",
373
+ * "Url": "https://foo.com"
374
+ * }
375
+ * },
376
+ * "IncludeIframeOnlyStreams": true,
377
+ * "Scte": {
378
+ * "ScteFilter": [
379
+ * "SPLICE_INSERT",
380
+ * "BREAK"
381
+ * ]
382
+ * },
383
+ * "SegmentDurationSeconds": 6,
384
+ * "SegmentName": "segmentName",
385
+ * "TsIncludeDvbSubtitles": true,
386
+ * "TsUseAudioRenditionGroup": true
387
+ * },
388
+ * "StartoverWindowSeconds": 300,
389
+ * "Tags": {
390
+ * "key1": "value1",
391
+ * "key2": "value2"
392
+ * }
393
+ * };
394
+ * const command = new CreateOriginEndpointCommand(input);
395
+ * const response = await client.send(command);
396
+ * /* response ==
397
+ * {
398
+ * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointTS",
399
+ * "ChannelGroupName": "exampleChannelGroup",
400
+ * "ChannelName": "exampleChannel",
401
+ * "ContainerType": "TS",
402
+ * "CreatedAt": "2022-10-18T09:36:00.00Z",
403
+ * "Description": "Description for exampleOriginEndpointTS",
404
+ * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
405
+ * "ForceEndpointErrorConfiguration": {
406
+ * "EndpointErrorConditions": [
407
+ * "STALE_MANIFEST",
408
+ * "INCOMPLETE_MANIFEST",
409
+ * "MISSING_DRM_KEY",
410
+ * "SLATE_INPUT"
411
+ * ]
412
+ * },
413
+ * "HlsManifests": [
414
+ * {
415
+ * "ChildManifestName": "exampleChildManifest1",
416
+ * "ManifestName": "exampleManifest1",
417
+ * "ManifestWindowSeconds": 30,
418
+ * "ProgramDateTimeIntervalSeconds": 60,
419
+ * "ScteHls": {
420
+ * "AdMarkerHls": "DATERANGE"
421
+ * },
422
+ * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest1.m3u8"
423
+ * },
424
+ * {
425
+ * "ChildManifestName": "exampleManifest2",
426
+ * "ManifestName": "exampleManifest2",
427
+ * "ManifestWindowSeconds": 30,
428
+ * "ProgramDateTimeIntervalSeconds": 60,
429
+ * "ScteHls": {
430
+ * "AdMarkerHls": "DATERANGE"
431
+ * },
432
+ * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest2.m3u8"
433
+ * }
434
+ * ],
435
+ * "LowLatencyHlsManifests": [
436
+ * {
437
+ * "ChildManifestName": "exampleLLChildManifest1",
438
+ * "ManifestName": "exampleLLManifest1",
439
+ * "ManifestWindowSeconds": 30,
440
+ * "ProgramDateTimeIntervalSeconds": 60,
441
+ * "ScteHls": {
442
+ * "AdMarkerHls": "DATERANGE"
443
+ * },
444
+ * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest1.m3u8"
445
+ * },
446
+ * {
447
+ * "ChildManifestName": "exampleLLManifest2",
448
+ * "ManifestName": "exampleLLManifest2",
449
+ * "ManifestWindowSeconds": 30,
450
+ * "ProgramDateTimeIntervalSeconds": 60,
451
+ * "ScteHls": {
452
+ * "AdMarkerHls": "DATERANGE"
453
+ * },
454
+ * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest2.m3u8"
455
+ * }
456
+ * ],
457
+ * "ModifiedAt": "2022-10-18T09:36:00.00Z",
458
+ * "OriginEndpointName": "exampleOriginEndpointTS",
459
+ * "Segment": {
460
+ * "Encryption": {
461
+ * "ConstantInitializationVector": "A382A901F3C1F7718512266CFFBB0B7E",
462
+ * "EncryptionMethod": {
463
+ * "TsEncryptionMethod": "AES_128"
464
+ * },
465
+ * "KeyRotationIntervalSeconds": 300,
466
+ * "SpekeKeyProvider": {
467
+ * "DrmSystems": [
468
+ * "CLEAR_KEY_AES_128"
469
+ * ],
470
+ * "EncryptionContractConfiguration": {
471
+ * "PresetSpeke20Audio": "SHARED",
472
+ * "PresetSpeke20Video": "SHARED"
473
+ * },
474
+ * "ResourceId": "ResourceId",
475
+ * "RoleArn": "arn:aws:iam::123456789012:role/empRole",
476
+ * "Url": "https://foo.com"
477
+ * }
478
+ * },
479
+ * "IncludeIframeOnlyStreams": true,
480
+ * "Scte": {
481
+ * "ScteFilter": [
482
+ * "SPLICE_INSERT",
483
+ * "BREAK"
484
+ * ]
485
+ * },
486
+ * "SegmentDurationSeconds": 6,
487
+ * "SegmentName": "segmentName",
488
+ * "TsIncludeDvbSubtitles": true,
489
+ * "TsUseAudioRenditionGroup": true
490
+ * },
491
+ * "StartoverWindowSeconds": 300,
492
+ * "Tags": {
493
+ * "key1": "value1",
494
+ * "key2": "value2"
495
+ * }
496
+ * }
497
+ * *\/
498
+ * // example id: example-1
499
+ * ```
500
+ *
501
+ * @example Creating an OriginEndpoint with container type CMAF, and encryption enabled
502
+ * ```javascript
503
+ * //
504
+ * const input = {
505
+ * "ChannelGroupName": "exampleChannelGroup",
506
+ * "ChannelName": "exampleChannel",
507
+ * "ContainerType": "CMAF",
508
+ * "DashManifests": [
509
+ * {
510
+ * "DrmSignaling": "INDIVIDUAL",
511
+ * "ManifestName": "exampleDashManifest1",
512
+ * "ManifestWindowSeconds": 300,
513
+ * "MinBufferTimeSeconds": 30,
514
+ * "MinUpdatePeriodSeconds": 5,
515
+ * "PeriodTriggers": [
516
+ * "AVAILS"
517
+ * ],
518
+ * "ScteDash": {
519
+ * "AdMarkerDash": "XML"
520
+ * },
521
+ * "SegmentTemplateFormat": "NUMBER_WITH_TIMELINE",
522
+ * "SuggestedPresentationDelaySeconds": 2
523
+ * },
524
+ * {
525
+ * "DrmSignaling": "INDIVIDUAL",
526
+ * "ManifestName": "exampleDashManifest2",
527
+ * "ManifestWindowSeconds": 60,
528
+ * "MinBufferTimeSeconds": 9,
529
+ * "MinUpdatePeriodSeconds": 3,
530
+ * "PeriodTriggers": [
531
+ * "AVAILS",
532
+ * "DRM_KEY_ROTATION",
533
+ * "SOURCE_CHANGES",
534
+ * "SOURCE_DISRUPTIONS"
535
+ * ],
536
+ * "ScteDash": {
537
+ * "AdMarkerDash": "XML"
538
+ * },
539
+ * "SegmentTemplateFormat": "NUMBER_WITH_TIMELINE",
540
+ * "SuggestedPresentationDelaySeconds": 12
541
+ * }
542
+ * ],
543
+ * "ForceEndpointErrorConfiguration": {
544
+ * "EndpointErrorConditions": [
545
+ * "STALE_MANIFEST",
546
+ * "INCOMPLETE_MANIFEST",
547
+ * "MISSING_DRM_KEY",
548
+ * "SLATE_INPUT"
549
+ * ]
550
+ * },
551
+ * "HlsManifests": [
552
+ * {
553
+ * "ChildManifestName": "exampleChildManifest1",
554
+ * "ManifestName": "exampleManifest1",
555
+ * "ManifestWindowSeconds": 30,
556
+ * "ProgramDateTimeIntervalSeconds": 60,
557
+ * "ScteHls": {
558
+ * "AdMarkerHls": "DATERANGE"
559
+ * }
560
+ * },
561
+ * {
562
+ * "ChildManifestName": "exampleManifest2",
563
+ * "ManifestName": "exampleManifest2",
564
+ * "ManifestWindowSeconds": 30,
565
+ * "ProgramDateTimeIntervalSeconds": 60,
566
+ * "ScteHls": {
567
+ * "AdMarkerHls": "DATERANGE"
568
+ * }
569
+ * }
570
+ * ],
571
+ * "LowLatencyHlsManifests": [
572
+ * {
573
+ * "ChildManifestName": "exampleLLChildManifest1",
574
+ * "ManifestName": "exampleLLManifest1",
575
+ * "ManifestWindowSeconds": 30,
576
+ * "ProgramDateTimeIntervalSeconds": 60,
577
+ * "ScteHls": {
578
+ * "AdMarkerHls": "DATERANGE"
579
+ * }
580
+ * },
581
+ * {
582
+ * "ChildManifestName": "exampleLLManifest2",
583
+ * "ManifestName": "exampleLLManifest2",
584
+ * "ManifestWindowSeconds": 30,
585
+ * "ProgramDateTimeIntervalSeconds": 60,
586
+ * "ScteHls": {
587
+ * "AdMarkerHls": "DATERANGE"
588
+ * }
589
+ * }
590
+ * ],
591
+ * "OriginEndpointName": "exampleOriginEndpointCMAF",
592
+ * "Segment": {
593
+ * "Encryption": {
594
+ * "ConstantInitializationVector": "A382A901F3C1F7718512266CFFBB0B9F",
595
+ * "EncryptionMethod": {
596
+ * "CmafEncryptionMethod": "CBCS"
597
+ * },
598
+ * "KeyRotationIntervalSeconds": 300,
599
+ * "SpekeKeyProvider": {
600
+ * "DrmSystems": [
601
+ * "PLAYREADY",
602
+ * "WIDEVINE"
603
+ * ],
604
+ * "EncryptionContractConfiguration": {
605
+ * "PresetSpeke20Audio": "PRESET_AUDIO_1",
606
+ * "PresetSpeke20Video": "PRESET_VIDEO_1"
607
+ * },
608
+ * "ResourceId": "ResourceId",
609
+ * "RoleArn": "arn:aws:iam::123456789012:role/empRole",
610
+ * "Url": "https://foo.com"
611
+ * }
612
+ * },
613
+ * "IncludeIframeOnlyStreams": true,
614
+ * "Scte": {
615
+ * "ScteFilter": [
616
+ * "SPLICE_INSERT",
617
+ * "BREAK"
618
+ * ]
619
+ * },
620
+ * "SegmentDurationSeconds": 6,
621
+ * "SegmentName": "segmentName"
622
+ * },
623
+ * "StartoverWindowSeconds": 300,
624
+ * "Tags": {
625
+ * "key1": "value1",
626
+ * "key2": "value2"
627
+ * }
628
+ * };
629
+ * const command = new CreateOriginEndpointCommand(input);
630
+ * const response = await client.send(command);
631
+ * /* response ==
632
+ * {
633
+ * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointCMAF",
634
+ * "ChannelGroupName": "exampleChannelGroup",
635
+ * "ChannelName": "exampleChannel",
636
+ * "ContainerType": "CMAF",
637
+ * "CreatedAt": "2022-10-18T09:36:00.00Z",
638
+ * "DashManifests": [
639
+ * {
640
+ * "DrmSignaling": "INDIVIDUAL",
641
+ * "ManifestName": "exampleDashManifest1",
642
+ * "ManifestWindowSeconds": 300,
643
+ * "MinBufferTimeSeconds": 30,
644
+ * "MinUpdatePeriodSeconds": 5,
645
+ * "PeriodTriggers": [
646
+ * "AVAILS"
647
+ * ],
648
+ * "ScteDash": {
649
+ * "AdMarkerDash": "XML"
650
+ * },
651
+ * "SegmentTemplateFormat": "NUMBER_WITH_TIMELINE",
652
+ * "SuggestedPresentationDelaySeconds": 2,
653
+ * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleDashManifest1.mpd"
654
+ * },
655
+ * {
656
+ * "DrmSignaling": "INDIVIDUAL",
657
+ * "ManifestName": "exampleDashManifest2",
658
+ * "ManifestWindowSeconds": 60,
659
+ * "MinBufferTimeSeconds": 9,
660
+ * "MinUpdatePeriodSeconds": 3,
661
+ * "PeriodTriggers": [
662
+ * "AVAILS",
663
+ * "DRM_KEY_ROTATION",
664
+ * "SOURCE_CHANGES",
665
+ * "SOURCE_DISRUPTIONS"
666
+ * ],
667
+ * "ScteDash": {
668
+ * "AdMarkerDash": "XML"
669
+ * },
670
+ * "SegmentTemplateFormat": "NUMBER_WITH_TIMELINE",
671
+ * "SuggestedPresentationDelaySeconds": 12,
672
+ * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleDashManifest2.mpd"
673
+ * }
674
+ * ],
675
+ * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
676
+ * "ForceEndpointErrorConfiguration": {
677
+ * "EndpointErrorConditions": [
678
+ * "STALE_MANIFEST",
679
+ * "INCOMPLETE_MANIFEST",
680
+ * "MISSING_DRM_KEY",
681
+ * "SLATE_INPUT"
682
+ * ]
683
+ * },
684
+ * "HlsManifests": [
685
+ * {
686
+ * "ChildManifestName": "exampleChildManifest1",
687
+ * "ManifestName": "exampleManifest1",
688
+ * "ManifestWindowSeconds": 30,
689
+ * "ProgramDateTimeIntervalSeconds": 60,
690
+ * "ScteHls": {
691
+ * "AdMarkerHls": "DATERANGE"
692
+ * },
693
+ * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleManifest1.m3u8"
694
+ * },
695
+ * {
696
+ * "ChildManifestName": "exampleManifest2",
697
+ * "ManifestName": "exampleManifest2",
698
+ * "ManifestWindowSeconds": 30,
699
+ * "ProgramDateTimeIntervalSeconds": 60,
700
+ * "ScteHls": {
701
+ * "AdMarkerHls": "DATERANGE"
702
+ * },
703
+ * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleManifest2.m3u8"
704
+ * }
705
+ * ],
706
+ * "LowLatencyHlsManifests": [
707
+ * {
708
+ * "ChildManifestName": "exampleLLChildManifest1",
709
+ * "ManifestName": "exampleLLManifest1",
710
+ * "ManifestWindowSeconds": 30,
711
+ * "ProgramDateTimeIntervalSeconds": 60,
712
+ * "ScteHls": {
713
+ * "AdMarkerHls": "DATERANGE"
714
+ * },
715
+ * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleLLManifest1.m3u8"
716
+ * },
717
+ * {
718
+ * "ChildManifestName": "exampleLLManifest2",
719
+ * "ManifestName": "exampleLLManifest2",
720
+ * "ManifestWindowSeconds": 30,
721
+ * "ProgramDateTimeIntervalSeconds": 60,
722
+ * "ScteHls": {
723
+ * "AdMarkerHls": "DATERANGE"
724
+ * },
725
+ * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleLLManifest2.m3u8"
726
+ * }
727
+ * ],
728
+ * "ModifiedAt": "2022-10-18T09:36:00.00Z",
729
+ * "OriginEndpointName": "exampleOriginEndpointCMAF",
730
+ * "Segment": {
731
+ * "Encryption": {
732
+ * "ConstantInitializationVector": "A382A901F3C1F7718512266CFFBB0B9F",
733
+ * "EncryptionMethod": {
734
+ * "CmafEncryptionMethod": "CBCS"
735
+ * },
736
+ * "KeyRotationIntervalSeconds": 300,
737
+ * "SpekeKeyProvider": {
738
+ * "DrmSystems": [
739
+ * "PLAYREADY",
740
+ * "WIDEVINE"
741
+ * ],
742
+ * "EncryptionContractConfiguration": {
743
+ * "PresetSpeke20Audio": "PRESET_AUDIO_1",
744
+ * "PresetSpeke20Video": "PRESET_VIDEO_1"
745
+ * },
746
+ * "ResourceId": "ResourceId",
747
+ * "RoleArn": "arn:aws:iam::123456789012:role/empRole",
748
+ * "Url": "https://foo.com"
749
+ * }
750
+ * },
751
+ * "IncludeIframeOnlyStreams": true,
752
+ * "Scte": {
753
+ * "ScteFilter": [
754
+ * "SPLICE_INSERT",
755
+ * "BREAK"
756
+ * ]
757
+ * },
758
+ * "SegmentDurationSeconds": 6,
759
+ * "SegmentName": "segmentName"
760
+ * },
761
+ * "StartoverWindowSeconds": 300,
762
+ * "Tags": {
763
+ * "key1": "value1",
764
+ * "key2": "value2"
765
+ * }
766
+ * }
767
+ * *\/
768
+ * // example id: example-2
769
+ * ```
770
+ *
299
771
  */
300
772
  export declare class CreateOriginEndpointCommand extends CreateOriginEndpointCommand_base {
301
773
  }
@@ -69,6 +69,18 @@ declare const DeleteChannelCommand_base: {
69
69
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
70
70
  *
71
71
  * @public
72
+ * @example Deleting a Channel
73
+ * ```javascript
74
+ * //
75
+ * const input = {
76
+ * "ChannelGroupName": "exampleChannelGroup",
77
+ * "ChannelName": "exampleChannel"
78
+ * };
79
+ * const command = new DeleteChannelCommand(input);
80
+ * await client.send(command);
81
+ * // example id: example-1
82
+ * ```
83
+ *
72
84
  */
73
85
  export declare class DeleteChannelCommand extends DeleteChannelCommand_base {
74
86
  }
@@ -68,6 +68,17 @@ declare const DeleteChannelGroupCommand_base: {
68
68
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
69
69
  *
70
70
  * @public
71
+ * @example Deleting a Channel Group
72
+ * ```javascript
73
+ * //
74
+ * const input = {
75
+ * "ChannelGroupName": "exampleChannelGroup"
76
+ * };
77
+ * const command = new DeleteChannelGroupCommand(input);
78
+ * await client.send(command);
79
+ * // example id: example-1
80
+ * ```
81
+ *
71
82
  */
72
83
  export declare class DeleteChannelGroupCommand extends DeleteChannelGroupCommand_base {
73
84
  }
@@ -69,6 +69,18 @@ declare const DeleteChannelPolicyCommand_base: {
69
69
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
70
70
  *
71
71
  * @public
72
+ * @example Deleting a Channel Policy
73
+ * ```javascript
74
+ * //
75
+ * const input = {
76
+ * "ChannelGroupName": "exampleChannelGroup",
77
+ * "ChannelName": "exampleChannel"
78
+ * };
79
+ * const command = new DeleteChannelPolicyCommand(input);
80
+ * await client.send(command);
81
+ * // example id: example-1
82
+ * ```
83
+ *
72
84
  */
73
85
  export declare class DeleteChannelPolicyCommand extends DeleteChannelPolicyCommand_base {
74
86
  }
@@ -67,6 +67,19 @@ declare const DeleteOriginEndpointCommand_base: {
67
67
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
68
68
  *
69
69
  * @public
70
+ * @example Deleting an OriginEndpoint
71
+ * ```javascript
72
+ * //
73
+ * const input = {
74
+ * "ChannelGroupName": "exampleChannelGroup",
75
+ * "ChannelName": "exampleChannel",
76
+ * "OriginEndpointName": "exampleOriginEndpointTS"
77
+ * };
78
+ * const command = new DeleteOriginEndpointCommand(input);
79
+ * await client.send(command);
80
+ * // example id: example-1
81
+ * ```
82
+ *
70
83
  */
71
84
  export declare class DeleteOriginEndpointCommand extends DeleteOriginEndpointCommand_base {
72
85
  }
@@ -70,6 +70,19 @@ declare const DeleteOriginEndpointPolicyCommand_base: {
70
70
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
71
71
  *
72
72
  * @public
73
+ * @example Deleting an Origin Endpoint Policy
74
+ * ```javascript
75
+ * //
76
+ * const input = {
77
+ * "ChannelGroupName": "exampleChannelGroup",
78
+ * "ChannelName": "exampleChannel",
79
+ * "OriginEndpointName": "exampleOriginEndpoint"
80
+ * };
81
+ * const command = new DeleteOriginEndpointPolicyCommand(input);
82
+ * await client.send(command);
83
+ * // example id: example-1
84
+ * ```
85
+ *
73
86
  */
74
87
  export declare class DeleteOriginEndpointPolicyCommand extends DeleteOriginEndpointPolicyCommand_base {
75
88
  }