@aws-sdk/client-mediapackage-vod 3.687.0 → 3.692.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.
- package/dist-types/models/models_0.d.ts +164 -164
- package/dist-types/ts3.4/models/models_0.d.ts +164 -164
- package/package.json +35 -35
|
@@ -20,42 +20,42 @@ export interface AssetShallow {
|
|
|
20
20
|
* The ARN of the Asset.
|
|
21
21
|
* @public
|
|
22
22
|
*/
|
|
23
|
-
Arn?: string;
|
|
23
|
+
Arn?: string | undefined;
|
|
24
24
|
/**
|
|
25
25
|
* The time the Asset was initially submitted for Ingest.
|
|
26
26
|
* @public
|
|
27
27
|
*/
|
|
28
|
-
CreatedAt?: string;
|
|
28
|
+
CreatedAt?: string | undefined;
|
|
29
29
|
/**
|
|
30
30
|
* The unique identifier for the Asset.
|
|
31
31
|
* @public
|
|
32
32
|
*/
|
|
33
|
-
Id?: string;
|
|
33
|
+
Id?: string | undefined;
|
|
34
34
|
/**
|
|
35
35
|
* The ID of the PackagingGroup for the Asset.
|
|
36
36
|
* @public
|
|
37
37
|
*/
|
|
38
|
-
PackagingGroupId?: string;
|
|
38
|
+
PackagingGroupId?: string | undefined;
|
|
39
39
|
/**
|
|
40
40
|
* The resource ID to include in SPEKE key requests.
|
|
41
41
|
* @public
|
|
42
42
|
*/
|
|
43
|
-
ResourceId?: string;
|
|
43
|
+
ResourceId?: string | undefined;
|
|
44
44
|
/**
|
|
45
45
|
* ARN of the source object in S3.
|
|
46
46
|
* @public
|
|
47
47
|
*/
|
|
48
|
-
SourceArn?: string;
|
|
48
|
+
SourceArn?: string | undefined;
|
|
49
49
|
/**
|
|
50
50
|
* The IAM role ARN used to access the source S3 bucket.
|
|
51
51
|
* @public
|
|
52
52
|
*/
|
|
53
|
-
SourceRoleArn?: string;
|
|
53
|
+
SourceRoleArn?: string | undefined;
|
|
54
54
|
/**
|
|
55
55
|
* A collection of tags associated with a resource
|
|
56
56
|
* @public
|
|
57
57
|
*/
|
|
58
|
-
Tags?: Record<string, string
|
|
58
|
+
Tags?: Record<string, string> | undefined;
|
|
59
59
|
}
|
|
60
60
|
/**
|
|
61
61
|
* @public
|
|
@@ -115,17 +115,17 @@ export interface StreamSelection {
|
|
|
115
115
|
* The maximum video bitrate (bps) to include in output.
|
|
116
116
|
* @public
|
|
117
117
|
*/
|
|
118
|
-
MaxVideoBitsPerSecond?: number;
|
|
118
|
+
MaxVideoBitsPerSecond?: number | undefined;
|
|
119
119
|
/**
|
|
120
120
|
* The minimum video bitrate (bps) to include in output.
|
|
121
121
|
* @public
|
|
122
122
|
*/
|
|
123
|
-
MinVideoBitsPerSecond?: number;
|
|
123
|
+
MinVideoBitsPerSecond?: number | undefined;
|
|
124
124
|
/**
|
|
125
125
|
* A directive that determines the order of streams in the output.
|
|
126
126
|
* @public
|
|
127
127
|
*/
|
|
128
|
-
StreamOrder?: StreamOrder;
|
|
128
|
+
StreamOrder?: StreamOrder | undefined;
|
|
129
129
|
}
|
|
130
130
|
/**
|
|
131
131
|
* A DASH manifest configuration.
|
|
@@ -136,32 +136,32 @@ export interface DashManifest {
|
|
|
136
136
|
* Determines the position of some tags in the Media Presentation Description (MPD). When set to FULL, elements like SegmentTemplate and ContentProtection are included in each Representation. When set to COMPACT, duplicate elements are combined and presented at the AdaptationSet level.
|
|
137
137
|
* @public
|
|
138
138
|
*/
|
|
139
|
-
ManifestLayout?: ManifestLayout;
|
|
139
|
+
ManifestLayout?: ManifestLayout | undefined;
|
|
140
140
|
/**
|
|
141
141
|
* An optional string to include in the name of the manifest.
|
|
142
142
|
* @public
|
|
143
143
|
*/
|
|
144
|
-
ManifestName?: string;
|
|
144
|
+
ManifestName?: string | undefined;
|
|
145
145
|
/**
|
|
146
146
|
* Minimum duration (in seconds) that a player will buffer media before starting the presentation.
|
|
147
147
|
* @public
|
|
148
148
|
*/
|
|
149
|
-
MinBufferTimeSeconds?: number;
|
|
149
|
+
MinBufferTimeSeconds?: number | undefined;
|
|
150
150
|
/**
|
|
151
151
|
* The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to "HBBTV_1_5", HbbTV 1.5 compliant output is enabled.
|
|
152
152
|
* @public
|
|
153
153
|
*/
|
|
154
|
-
Profile?: Profile;
|
|
154
|
+
Profile?: Profile | undefined;
|
|
155
155
|
/**
|
|
156
156
|
* The source of scte markers used. When set to SEGMENTS, the scte markers are sourced from the segments of the ingested content. When set to MANIFEST, the scte markers are sourced from the manifest of the ingested content.
|
|
157
157
|
* @public
|
|
158
158
|
*/
|
|
159
|
-
ScteMarkersSource?: ScteMarkersSource;
|
|
159
|
+
ScteMarkersSource?: ScteMarkersSource | undefined;
|
|
160
160
|
/**
|
|
161
161
|
* A StreamSelection configuration.
|
|
162
162
|
* @public
|
|
163
163
|
*/
|
|
164
|
-
StreamSelection?: StreamSelection;
|
|
164
|
+
StreamSelection?: StreamSelection | undefined;
|
|
165
165
|
}
|
|
166
166
|
/**
|
|
167
167
|
* The endpoint URL used to access an Asset using one PackagingConfiguration.
|
|
@@ -172,17 +172,17 @@ export interface EgressEndpoint {
|
|
|
172
172
|
* The ID of the PackagingConfiguration being applied to the Asset.
|
|
173
173
|
* @public
|
|
174
174
|
*/
|
|
175
|
-
PackagingConfigurationId?: string;
|
|
175
|
+
PackagingConfigurationId?: string | undefined;
|
|
176
176
|
/**
|
|
177
177
|
* The current processing status of the asset used for the packaging configuration. The status can be either QUEUED, PROCESSING, PLAYABLE, or FAILED. Status information won't be available for most assets ingested before 2021-09-30.
|
|
178
178
|
* @public
|
|
179
179
|
*/
|
|
180
|
-
Status?: string;
|
|
180
|
+
Status?: string | undefined;
|
|
181
181
|
/**
|
|
182
182
|
* The URL of the parent manifest for the repackaged Asset.
|
|
183
183
|
* @public
|
|
184
184
|
*/
|
|
185
|
-
Url?: string;
|
|
185
|
+
Url?: string | undefined;
|
|
186
186
|
}
|
|
187
187
|
/**
|
|
188
188
|
* @public
|
|
@@ -211,17 +211,17 @@ export interface HlsManifest {
|
|
|
211
211
|
* messages in the input source.
|
|
212
212
|
* @public
|
|
213
213
|
*/
|
|
214
|
-
AdMarkers?: AdMarkers;
|
|
214
|
+
AdMarkers?: AdMarkers | undefined;
|
|
215
215
|
/**
|
|
216
216
|
* When enabled, an I-Frame only stream will be included in the output.
|
|
217
217
|
* @public
|
|
218
218
|
*/
|
|
219
|
-
IncludeIframeOnlyStream?: boolean;
|
|
219
|
+
IncludeIframeOnlyStream?: boolean | undefined;
|
|
220
220
|
/**
|
|
221
221
|
* An optional string to include in the name of the manifest.
|
|
222
222
|
* @public
|
|
223
223
|
*/
|
|
224
|
-
ManifestName?: string;
|
|
224
|
+
ManifestName?: string | undefined;
|
|
225
225
|
/**
|
|
226
226
|
* The interval (in seconds) between each EXT-X-PROGRAM-DATE-TIME tag
|
|
227
227
|
* inserted into manifests. Additionally, when an interval is specified
|
|
@@ -234,17 +234,17 @@ export interface HlsManifest {
|
|
|
234
234
|
* it will be passed through to HLS output.
|
|
235
235
|
* @public
|
|
236
236
|
*/
|
|
237
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
237
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
238
238
|
/**
|
|
239
239
|
* When enabled, the EXT-X-KEY tag will be repeated in output manifests.
|
|
240
240
|
* @public
|
|
241
241
|
*/
|
|
242
|
-
RepeatExtXKey?: boolean;
|
|
242
|
+
RepeatExtXKey?: boolean | undefined;
|
|
243
243
|
/**
|
|
244
244
|
* A StreamSelection configuration.
|
|
245
245
|
* @public
|
|
246
246
|
*/
|
|
247
|
-
StreamSelection?: StreamSelection;
|
|
247
|
+
StreamSelection?: StreamSelection | undefined;
|
|
248
248
|
}
|
|
249
249
|
/**
|
|
250
250
|
* A Microsoft Smooth Streaming (MSS) manifest configuration.
|
|
@@ -255,12 +255,12 @@ export interface MssManifest {
|
|
|
255
255
|
* An optional string to include in the name of the manifest.
|
|
256
256
|
* @public
|
|
257
257
|
*/
|
|
258
|
-
ManifestName?: string;
|
|
258
|
+
ManifestName?: string | undefined;
|
|
259
259
|
/**
|
|
260
260
|
* A StreamSelection configuration.
|
|
261
261
|
* @public
|
|
262
262
|
*/
|
|
263
|
-
StreamSelection?: StreamSelection;
|
|
263
|
+
StreamSelection?: StreamSelection | undefined;
|
|
264
264
|
}
|
|
265
265
|
/**
|
|
266
266
|
* @public
|
|
@@ -332,7 +332,7 @@ export interface SpekeKeyProvider {
|
|
|
332
332
|
* You must disable key rotation for this endpoint by setting keyRotationIntervalSeconds to 0.
|
|
333
333
|
* @public
|
|
334
334
|
*/
|
|
335
|
-
EncryptionContractConfiguration?: EncryptionContractConfiguration;
|
|
335
|
+
EncryptionContractConfiguration?: EncryptionContractConfiguration | undefined;
|
|
336
336
|
/**
|
|
337
337
|
* An Amazon Resource Name (ARN) of an IAM role that AWS Elemental
|
|
338
338
|
* MediaPackage will assume when accessing the key provider service.
|
|
@@ -359,7 +359,7 @@ export interface CmafEncryption {
|
|
|
359
359
|
* An optional 128-bit, 16-byte hex value represented by a 32-character string, used in conjunction with the key for encrypting blocks. If you don't specify a value, then MediaPackage creates the constant initialization vector (IV).
|
|
360
360
|
* @public
|
|
361
361
|
*/
|
|
362
|
-
ConstantInitializationVector?: string;
|
|
362
|
+
ConstantInitializationVector?: string | undefined;
|
|
363
363
|
/**
|
|
364
364
|
* A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
|
|
365
365
|
* @public
|
|
@@ -375,7 +375,7 @@ export interface CmafPackage {
|
|
|
375
375
|
* A CMAF encryption configuration.
|
|
376
376
|
* @public
|
|
377
377
|
*/
|
|
378
|
-
Encryption?: CmafEncryption;
|
|
378
|
+
Encryption?: CmafEncryption | undefined;
|
|
379
379
|
/**
|
|
380
380
|
* A list of HLS manifest configurations.
|
|
381
381
|
* @public
|
|
@@ -385,13 +385,13 @@ export interface CmafPackage {
|
|
|
385
385
|
* When includeEncoderConfigurationInSegments is set to true, MediaPackage places your encoder's Sequence Parameter Set (SPS), Picture Parameter Set (PPS), and Video Parameter Set (VPS) metadata in every video segment instead of in the init fragment. This lets you use different SPS/PPS/VPS settings for your assets during content playback.
|
|
386
386
|
* @public
|
|
387
387
|
*/
|
|
388
|
-
IncludeEncoderConfigurationInSegments?: boolean;
|
|
388
|
+
IncludeEncoderConfigurationInSegments?: boolean | undefined;
|
|
389
389
|
/**
|
|
390
390
|
* Duration (in seconds) of each fragment. Actual fragments will be
|
|
391
391
|
* rounded to the nearest multiple of the source fragment duration.
|
|
392
392
|
* @public
|
|
393
393
|
*/
|
|
394
|
-
SegmentDurationSeconds?: number;
|
|
394
|
+
SegmentDurationSeconds?: number | undefined;
|
|
395
395
|
}
|
|
396
396
|
/**
|
|
397
397
|
* A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.
|
|
@@ -431,17 +431,17 @@ export interface DashPackage {
|
|
|
431
431
|
* A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.
|
|
432
432
|
* @public
|
|
433
433
|
*/
|
|
434
|
-
Encryption?: DashEncryption;
|
|
434
|
+
Encryption?: DashEncryption | undefined;
|
|
435
435
|
/**
|
|
436
436
|
* When includeEncoderConfigurationInSegments is set to true, MediaPackage places your encoder's Sequence Parameter Set (SPS), Picture Parameter Set (PPS), and Video Parameter Set (VPS) metadata in every video segment instead of in the init fragment. This lets you use different SPS/PPS/VPS settings for your assets during content playback.
|
|
437
437
|
* @public
|
|
438
438
|
*/
|
|
439
|
-
IncludeEncoderConfigurationInSegments?: boolean;
|
|
439
|
+
IncludeEncoderConfigurationInSegments?: boolean | undefined;
|
|
440
440
|
/**
|
|
441
441
|
* When enabled, an I-Frame only stream will be included in the output.
|
|
442
442
|
* @public
|
|
443
443
|
*/
|
|
444
|
-
IncludeIframeOnlyStream?: boolean;
|
|
444
|
+
IncludeIframeOnlyStream?: boolean | undefined;
|
|
445
445
|
/**
|
|
446
446
|
* A list of triggers that controls when the outgoing Dynamic Adaptive Streaming over HTTP (DASH)
|
|
447
447
|
* Media Presentation Description (MPD) will be partitioned into multiple periods. If empty, the content will not
|
|
@@ -449,18 +449,18 @@ export interface DashPackage {
|
|
|
449
449
|
* the Asset contains SCTE-35 ad markers.
|
|
450
450
|
* @public
|
|
451
451
|
*/
|
|
452
|
-
PeriodTriggers?: __PeriodTriggersElement[];
|
|
452
|
+
PeriodTriggers?: __PeriodTriggersElement[] | undefined;
|
|
453
453
|
/**
|
|
454
454
|
* Duration (in seconds) of each segment. Actual segments will be
|
|
455
455
|
* rounded to the nearest multiple of the source segment duration.
|
|
456
456
|
* @public
|
|
457
457
|
*/
|
|
458
|
-
SegmentDurationSeconds?: number;
|
|
458
|
+
SegmentDurationSeconds?: number | undefined;
|
|
459
459
|
/**
|
|
460
460
|
* Determines the type of SegmentTemplate included in the Media Presentation Description (MPD). When set to NUMBER_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Number$ media URLs. When set to TIME_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Time$ media URLs. When set to NUMBER_WITH_DURATION, only a duration is included in each SegmentTemplate, with $Number$ media URLs.
|
|
461
461
|
* @public
|
|
462
462
|
*/
|
|
463
|
-
SegmentTemplateFormat?: SegmentTemplateFormat;
|
|
463
|
+
SegmentTemplateFormat?: SegmentTemplateFormat | undefined;
|
|
464
464
|
}
|
|
465
465
|
/**
|
|
466
466
|
* @public
|
|
@@ -484,12 +484,12 @@ export interface HlsEncryption {
|
|
|
484
484
|
* When not specified the initialization vector will be periodically rotated.
|
|
485
485
|
* @public
|
|
486
486
|
*/
|
|
487
|
-
ConstantInitializationVector?: string;
|
|
487
|
+
ConstantInitializationVector?: string | undefined;
|
|
488
488
|
/**
|
|
489
489
|
* The encryption method to use.
|
|
490
490
|
* @public
|
|
491
491
|
*/
|
|
492
|
-
EncryptionMethod?: EncryptionMethod;
|
|
492
|
+
EncryptionMethod?: EncryptionMethod | undefined;
|
|
493
493
|
/**
|
|
494
494
|
* A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
|
|
495
495
|
* @public
|
|
@@ -505,7 +505,7 @@ export interface HlsPackage {
|
|
|
505
505
|
* An HTTP Live Streaming (HLS) encryption configuration.
|
|
506
506
|
* @public
|
|
507
507
|
*/
|
|
508
|
-
Encryption?: HlsEncryption;
|
|
508
|
+
Encryption?: HlsEncryption | undefined;
|
|
509
509
|
/**
|
|
510
510
|
* A list of HLS manifest configurations.
|
|
511
511
|
* @public
|
|
@@ -515,18 +515,18 @@ export interface HlsPackage {
|
|
|
515
515
|
* When enabled, MediaPackage passes through digital video broadcasting (DVB) subtitles into the output.
|
|
516
516
|
* @public
|
|
517
517
|
*/
|
|
518
|
-
IncludeDvbSubtitles?: boolean;
|
|
518
|
+
IncludeDvbSubtitles?: boolean | undefined;
|
|
519
519
|
/**
|
|
520
520
|
* Duration (in seconds) of each fragment. Actual fragments will be
|
|
521
521
|
* rounded to the nearest multiple of the source fragment duration.
|
|
522
522
|
* @public
|
|
523
523
|
*/
|
|
524
|
-
SegmentDurationSeconds?: number;
|
|
524
|
+
SegmentDurationSeconds?: number | undefined;
|
|
525
525
|
/**
|
|
526
526
|
* When enabled, audio streams will be placed in rendition groups in the output.
|
|
527
527
|
* @public
|
|
528
528
|
*/
|
|
529
|
-
UseAudioRenditionGroup?: boolean;
|
|
529
|
+
UseAudioRenditionGroup?: boolean | undefined;
|
|
530
530
|
}
|
|
531
531
|
/**
|
|
532
532
|
* A Microsoft Smooth Streaming (MSS) encryption configuration.
|
|
@@ -548,7 +548,7 @@ export interface MssPackage {
|
|
|
548
548
|
* A Microsoft Smooth Streaming (MSS) encryption configuration.
|
|
549
549
|
* @public
|
|
550
550
|
*/
|
|
551
|
-
Encryption?: MssEncryption;
|
|
551
|
+
Encryption?: MssEncryption | undefined;
|
|
552
552
|
/**
|
|
553
553
|
* A list of MSS manifest configurations.
|
|
554
554
|
* @public
|
|
@@ -558,7 +558,7 @@ export interface MssPackage {
|
|
|
558
558
|
* The duration (in seconds) of each segment.
|
|
559
559
|
* @public
|
|
560
560
|
*/
|
|
561
|
-
SegmentDurationSeconds?: number;
|
|
561
|
+
SegmentDurationSeconds?: number | undefined;
|
|
562
562
|
}
|
|
563
563
|
/**
|
|
564
564
|
* A MediaPackage VOD PackagingConfiguration resource.
|
|
@@ -569,47 +569,47 @@ export interface PackagingConfiguration {
|
|
|
569
569
|
* The ARN of the PackagingConfiguration.
|
|
570
570
|
* @public
|
|
571
571
|
*/
|
|
572
|
-
Arn?: string;
|
|
572
|
+
Arn?: string | undefined;
|
|
573
573
|
/**
|
|
574
574
|
* A CMAF packaging configuration.
|
|
575
575
|
* @public
|
|
576
576
|
*/
|
|
577
|
-
CmafPackage?: CmafPackage;
|
|
577
|
+
CmafPackage?: CmafPackage | undefined;
|
|
578
578
|
/**
|
|
579
579
|
* The time the PackagingConfiguration was created.
|
|
580
580
|
* @public
|
|
581
581
|
*/
|
|
582
|
-
CreatedAt?: string;
|
|
582
|
+
CreatedAt?: string | undefined;
|
|
583
583
|
/**
|
|
584
584
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
585
585
|
* @public
|
|
586
586
|
*/
|
|
587
|
-
DashPackage?: DashPackage;
|
|
587
|
+
DashPackage?: DashPackage | undefined;
|
|
588
588
|
/**
|
|
589
589
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
590
590
|
* @public
|
|
591
591
|
*/
|
|
592
|
-
HlsPackage?: HlsPackage;
|
|
592
|
+
HlsPackage?: HlsPackage | undefined;
|
|
593
593
|
/**
|
|
594
594
|
* The ID of the PackagingConfiguration.
|
|
595
595
|
* @public
|
|
596
596
|
*/
|
|
597
|
-
Id?: string;
|
|
597
|
+
Id?: string | undefined;
|
|
598
598
|
/**
|
|
599
599
|
* A Microsoft Smooth Streaming (MSS) PackagingConfiguration.
|
|
600
600
|
* @public
|
|
601
601
|
*/
|
|
602
|
-
MssPackage?: MssPackage;
|
|
602
|
+
MssPackage?: MssPackage | undefined;
|
|
603
603
|
/**
|
|
604
604
|
* The ID of a PackagingGroup.
|
|
605
605
|
* @public
|
|
606
606
|
*/
|
|
607
|
-
PackagingGroupId?: string;
|
|
607
|
+
PackagingGroupId?: string | undefined;
|
|
608
608
|
/**
|
|
609
609
|
* A collection of tags associated with a resource
|
|
610
610
|
* @public
|
|
611
611
|
*/
|
|
612
|
-
Tags?: Record<string, string
|
|
612
|
+
Tags?: Record<string, string> | undefined;
|
|
613
613
|
}
|
|
614
614
|
/**
|
|
615
615
|
* CDN Authorization credentials
|
|
@@ -636,7 +636,7 @@ export interface EgressAccessLogs {
|
|
|
636
636
|
* Customize the log group name.
|
|
637
637
|
* @public
|
|
638
638
|
*/
|
|
639
|
-
LogGroupName?: string;
|
|
639
|
+
LogGroupName?: string | undefined;
|
|
640
640
|
}
|
|
641
641
|
/**
|
|
642
642
|
* A MediaPackage VOD PackagingGroup resource.
|
|
@@ -647,42 +647,42 @@ export interface PackagingGroup {
|
|
|
647
647
|
* The approximate asset count of the PackagingGroup.
|
|
648
648
|
* @public
|
|
649
649
|
*/
|
|
650
|
-
ApproximateAssetCount?: number;
|
|
650
|
+
ApproximateAssetCount?: number | undefined;
|
|
651
651
|
/**
|
|
652
652
|
* The ARN of the PackagingGroup.
|
|
653
653
|
* @public
|
|
654
654
|
*/
|
|
655
|
-
Arn?: string;
|
|
655
|
+
Arn?: string | undefined;
|
|
656
656
|
/**
|
|
657
657
|
* CDN Authorization credentials
|
|
658
658
|
* @public
|
|
659
659
|
*/
|
|
660
|
-
Authorization?: Authorization;
|
|
660
|
+
Authorization?: Authorization | undefined;
|
|
661
661
|
/**
|
|
662
662
|
* The time the PackagingGroup was created.
|
|
663
663
|
* @public
|
|
664
664
|
*/
|
|
665
|
-
CreatedAt?: string;
|
|
665
|
+
CreatedAt?: string | undefined;
|
|
666
666
|
/**
|
|
667
667
|
* The fully qualified domain name for Assets in the PackagingGroup.
|
|
668
668
|
* @public
|
|
669
669
|
*/
|
|
670
|
-
DomainName?: string;
|
|
670
|
+
DomainName?: string | undefined;
|
|
671
671
|
/**
|
|
672
672
|
* Configure egress access logging.
|
|
673
673
|
* @public
|
|
674
674
|
*/
|
|
675
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
675
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
676
676
|
/**
|
|
677
677
|
* The ID of the PackagingGroup.
|
|
678
678
|
* @public
|
|
679
679
|
*/
|
|
680
|
-
Id?: string;
|
|
680
|
+
Id?: string | undefined;
|
|
681
681
|
/**
|
|
682
682
|
* A collection of tags associated with a resource
|
|
683
683
|
* @public
|
|
684
684
|
*/
|
|
685
|
-
Tags?: Record<string, string
|
|
685
|
+
Tags?: Record<string, string> | undefined;
|
|
686
686
|
}
|
|
687
687
|
/**
|
|
688
688
|
* The option to configure log subscription.
|
|
@@ -693,7 +693,7 @@ export interface ConfigureLogsRequest {
|
|
|
693
693
|
* Configure egress access logging.
|
|
694
694
|
* @public
|
|
695
695
|
*/
|
|
696
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
696
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
697
697
|
/**
|
|
698
698
|
* The ID of a MediaPackage VOD PackagingGroup resource.
|
|
699
699
|
* @public
|
|
@@ -708,37 +708,37 @@ export interface ConfigureLogsResponse {
|
|
|
708
708
|
* The ARN of the PackagingGroup.
|
|
709
709
|
* @public
|
|
710
710
|
*/
|
|
711
|
-
Arn?: string;
|
|
711
|
+
Arn?: string | undefined;
|
|
712
712
|
/**
|
|
713
713
|
* CDN Authorization credentials
|
|
714
714
|
* @public
|
|
715
715
|
*/
|
|
716
|
-
Authorization?: Authorization;
|
|
716
|
+
Authorization?: Authorization | undefined;
|
|
717
717
|
/**
|
|
718
718
|
* The time the PackagingGroup was created.
|
|
719
719
|
* @public
|
|
720
720
|
*/
|
|
721
|
-
CreatedAt?: string;
|
|
721
|
+
CreatedAt?: string | undefined;
|
|
722
722
|
/**
|
|
723
723
|
* The fully qualified domain name for Assets in the PackagingGroup.
|
|
724
724
|
* @public
|
|
725
725
|
*/
|
|
726
|
-
DomainName?: string;
|
|
726
|
+
DomainName?: string | undefined;
|
|
727
727
|
/**
|
|
728
728
|
* Configure egress access logging.
|
|
729
729
|
* @public
|
|
730
730
|
*/
|
|
731
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
731
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
732
732
|
/**
|
|
733
733
|
* The ID of the PackagingGroup.
|
|
734
734
|
* @public
|
|
735
735
|
*/
|
|
736
|
-
Id?: string;
|
|
736
|
+
Id?: string | undefined;
|
|
737
737
|
/**
|
|
738
738
|
* A collection of tags associated with a resource
|
|
739
739
|
* @public
|
|
740
740
|
*/
|
|
741
|
-
Tags?: Record<string, string
|
|
741
|
+
Tags?: Record<string, string> | undefined;
|
|
742
742
|
}
|
|
743
743
|
/**
|
|
744
744
|
* The client is not authorized to access the requested resource.
|
|
@@ -747,7 +747,7 @@ export interface ConfigureLogsResponse {
|
|
|
747
747
|
export declare class ForbiddenException extends __BaseException {
|
|
748
748
|
readonly name: "ForbiddenException";
|
|
749
749
|
readonly $fault: "client";
|
|
750
|
-
Message?: string;
|
|
750
|
+
Message?: string | undefined;
|
|
751
751
|
/**
|
|
752
752
|
* @internal
|
|
753
753
|
*/
|
|
@@ -760,7 +760,7 @@ export declare class ForbiddenException extends __BaseException {
|
|
|
760
760
|
export declare class InternalServerErrorException extends __BaseException {
|
|
761
761
|
readonly name: "InternalServerErrorException";
|
|
762
762
|
readonly $fault: "server";
|
|
763
|
-
Message?: string;
|
|
763
|
+
Message?: string | undefined;
|
|
764
764
|
/**
|
|
765
765
|
* @internal
|
|
766
766
|
*/
|
|
@@ -773,7 +773,7 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
773
773
|
export declare class NotFoundException extends __BaseException {
|
|
774
774
|
readonly name: "NotFoundException";
|
|
775
775
|
readonly $fault: "client";
|
|
776
|
-
Message?: string;
|
|
776
|
+
Message?: string | undefined;
|
|
777
777
|
/**
|
|
778
778
|
* @internal
|
|
779
779
|
*/
|
|
@@ -786,7 +786,7 @@ export declare class NotFoundException extends __BaseException {
|
|
|
786
786
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
787
787
|
readonly name: "ServiceUnavailableException";
|
|
788
788
|
readonly $fault: "server";
|
|
789
|
-
Message?: string;
|
|
789
|
+
Message?: string | undefined;
|
|
790
790
|
/**
|
|
791
791
|
* @internal
|
|
792
792
|
*/
|
|
@@ -799,7 +799,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
799
799
|
export declare class TooManyRequestsException extends __BaseException {
|
|
800
800
|
readonly name: "TooManyRequestsException";
|
|
801
801
|
readonly $fault: "client";
|
|
802
|
-
Message?: string;
|
|
802
|
+
Message?: string | undefined;
|
|
803
803
|
/**
|
|
804
804
|
* @internal
|
|
805
805
|
*/
|
|
@@ -812,7 +812,7 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
812
812
|
export declare class UnprocessableEntityException extends __BaseException {
|
|
813
813
|
readonly name: "UnprocessableEntityException";
|
|
814
814
|
readonly $fault: "client";
|
|
815
|
-
Message?: string;
|
|
815
|
+
Message?: string | undefined;
|
|
816
816
|
/**
|
|
817
817
|
* @internal
|
|
818
818
|
*/
|
|
@@ -837,7 +837,7 @@ export interface CreateAssetRequest {
|
|
|
837
837
|
* The resource ID to include in SPEKE key requests.
|
|
838
838
|
* @public
|
|
839
839
|
*/
|
|
840
|
-
ResourceId?: string;
|
|
840
|
+
ResourceId?: string | undefined;
|
|
841
841
|
/**
|
|
842
842
|
* ARN of the source object in S3.
|
|
843
843
|
* @public
|
|
@@ -852,7 +852,7 @@ export interface CreateAssetRequest {
|
|
|
852
852
|
* A collection of tags associated with a resource
|
|
853
853
|
* @public
|
|
854
854
|
*/
|
|
855
|
-
Tags?: Record<string, string
|
|
855
|
+
Tags?: Record<string, string> | undefined;
|
|
856
856
|
}
|
|
857
857
|
/**
|
|
858
858
|
* @public
|
|
@@ -862,47 +862,47 @@ export interface CreateAssetResponse {
|
|
|
862
862
|
* The ARN of the Asset.
|
|
863
863
|
* @public
|
|
864
864
|
*/
|
|
865
|
-
Arn?: string;
|
|
865
|
+
Arn?: string | undefined;
|
|
866
866
|
/**
|
|
867
867
|
* The time the Asset was initially submitted for Ingest.
|
|
868
868
|
* @public
|
|
869
869
|
*/
|
|
870
|
-
CreatedAt?: string;
|
|
870
|
+
CreatedAt?: string | undefined;
|
|
871
871
|
/**
|
|
872
872
|
* The list of egress endpoints available for the Asset.
|
|
873
873
|
* @public
|
|
874
874
|
*/
|
|
875
|
-
EgressEndpoints?: EgressEndpoint[];
|
|
875
|
+
EgressEndpoints?: EgressEndpoint[] | undefined;
|
|
876
876
|
/**
|
|
877
877
|
* The unique identifier for the Asset.
|
|
878
878
|
* @public
|
|
879
879
|
*/
|
|
880
|
-
Id?: string;
|
|
880
|
+
Id?: string | undefined;
|
|
881
881
|
/**
|
|
882
882
|
* The ID of the PackagingGroup for the Asset.
|
|
883
883
|
* @public
|
|
884
884
|
*/
|
|
885
|
-
PackagingGroupId?: string;
|
|
885
|
+
PackagingGroupId?: string | undefined;
|
|
886
886
|
/**
|
|
887
887
|
* The resource ID to include in SPEKE key requests.
|
|
888
888
|
* @public
|
|
889
889
|
*/
|
|
890
|
-
ResourceId?: string;
|
|
890
|
+
ResourceId?: string | undefined;
|
|
891
891
|
/**
|
|
892
892
|
* ARN of the source object in S3.
|
|
893
893
|
* @public
|
|
894
894
|
*/
|
|
895
|
-
SourceArn?: string;
|
|
895
|
+
SourceArn?: string | undefined;
|
|
896
896
|
/**
|
|
897
897
|
* The IAM role_arn used to access the source S3 bucket.
|
|
898
898
|
* @public
|
|
899
899
|
*/
|
|
900
|
-
SourceRoleArn?: string;
|
|
900
|
+
SourceRoleArn?: string | undefined;
|
|
901
901
|
/**
|
|
902
902
|
* A collection of tags associated with a resource
|
|
903
903
|
* @public
|
|
904
904
|
*/
|
|
905
|
-
Tags?: Record<string, string
|
|
905
|
+
Tags?: Record<string, string> | undefined;
|
|
906
906
|
}
|
|
907
907
|
/**
|
|
908
908
|
* A new MediaPackage VOD PackagingConfiguration resource configuration.
|
|
@@ -913,17 +913,17 @@ export interface CreatePackagingConfigurationRequest {
|
|
|
913
913
|
* A CMAF packaging configuration.
|
|
914
914
|
* @public
|
|
915
915
|
*/
|
|
916
|
-
CmafPackage?: CmafPackage;
|
|
916
|
+
CmafPackage?: CmafPackage | undefined;
|
|
917
917
|
/**
|
|
918
918
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
919
919
|
* @public
|
|
920
920
|
*/
|
|
921
|
-
DashPackage?: DashPackage;
|
|
921
|
+
DashPackage?: DashPackage | undefined;
|
|
922
922
|
/**
|
|
923
923
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
924
924
|
* @public
|
|
925
925
|
*/
|
|
926
|
-
HlsPackage?: HlsPackage;
|
|
926
|
+
HlsPackage?: HlsPackage | undefined;
|
|
927
927
|
/**
|
|
928
928
|
* The ID of the PackagingConfiguration.
|
|
929
929
|
* @public
|
|
@@ -933,7 +933,7 @@ export interface CreatePackagingConfigurationRequest {
|
|
|
933
933
|
* A Microsoft Smooth Streaming (MSS) PackagingConfiguration.
|
|
934
934
|
* @public
|
|
935
935
|
*/
|
|
936
|
-
MssPackage?: MssPackage;
|
|
936
|
+
MssPackage?: MssPackage | undefined;
|
|
937
937
|
/**
|
|
938
938
|
* The ID of a PackagingGroup.
|
|
939
939
|
* @public
|
|
@@ -943,7 +943,7 @@ export interface CreatePackagingConfigurationRequest {
|
|
|
943
943
|
* A collection of tags associated with a resource
|
|
944
944
|
* @public
|
|
945
945
|
*/
|
|
946
|
-
Tags?: Record<string, string
|
|
946
|
+
Tags?: Record<string, string> | undefined;
|
|
947
947
|
}
|
|
948
948
|
/**
|
|
949
949
|
* @public
|
|
@@ -953,47 +953,47 @@ export interface CreatePackagingConfigurationResponse {
|
|
|
953
953
|
* The ARN of the PackagingConfiguration.
|
|
954
954
|
* @public
|
|
955
955
|
*/
|
|
956
|
-
Arn?: string;
|
|
956
|
+
Arn?: string | undefined;
|
|
957
957
|
/**
|
|
958
958
|
* A CMAF packaging configuration.
|
|
959
959
|
* @public
|
|
960
960
|
*/
|
|
961
|
-
CmafPackage?: CmafPackage;
|
|
961
|
+
CmafPackage?: CmafPackage | undefined;
|
|
962
962
|
/**
|
|
963
963
|
* The time the PackagingConfiguration was created.
|
|
964
964
|
* @public
|
|
965
965
|
*/
|
|
966
|
-
CreatedAt?: string;
|
|
966
|
+
CreatedAt?: string | undefined;
|
|
967
967
|
/**
|
|
968
968
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
969
969
|
* @public
|
|
970
970
|
*/
|
|
971
|
-
DashPackage?: DashPackage;
|
|
971
|
+
DashPackage?: DashPackage | undefined;
|
|
972
972
|
/**
|
|
973
973
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
974
974
|
* @public
|
|
975
975
|
*/
|
|
976
|
-
HlsPackage?: HlsPackage;
|
|
976
|
+
HlsPackage?: HlsPackage | undefined;
|
|
977
977
|
/**
|
|
978
978
|
* The ID of the PackagingConfiguration.
|
|
979
979
|
* @public
|
|
980
980
|
*/
|
|
981
|
-
Id?: string;
|
|
981
|
+
Id?: string | undefined;
|
|
982
982
|
/**
|
|
983
983
|
* A Microsoft Smooth Streaming (MSS) PackagingConfiguration.
|
|
984
984
|
* @public
|
|
985
985
|
*/
|
|
986
|
-
MssPackage?: MssPackage;
|
|
986
|
+
MssPackage?: MssPackage | undefined;
|
|
987
987
|
/**
|
|
988
988
|
* The ID of a PackagingGroup.
|
|
989
989
|
* @public
|
|
990
990
|
*/
|
|
991
|
-
PackagingGroupId?: string;
|
|
991
|
+
PackagingGroupId?: string | undefined;
|
|
992
992
|
/**
|
|
993
993
|
* A collection of tags associated with a resource
|
|
994
994
|
* @public
|
|
995
995
|
*/
|
|
996
|
-
Tags?: Record<string, string
|
|
996
|
+
Tags?: Record<string, string> | undefined;
|
|
997
997
|
}
|
|
998
998
|
/**
|
|
999
999
|
* A new MediaPackage VOD PackagingGroup resource configuration.
|
|
@@ -1004,12 +1004,12 @@ export interface CreatePackagingGroupRequest {
|
|
|
1004
1004
|
* CDN Authorization credentials
|
|
1005
1005
|
* @public
|
|
1006
1006
|
*/
|
|
1007
|
-
Authorization?: Authorization;
|
|
1007
|
+
Authorization?: Authorization | undefined;
|
|
1008
1008
|
/**
|
|
1009
1009
|
* Configure egress access logging.
|
|
1010
1010
|
* @public
|
|
1011
1011
|
*/
|
|
1012
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
1012
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
1013
1013
|
/**
|
|
1014
1014
|
* The ID of the PackagingGroup.
|
|
1015
1015
|
* @public
|
|
@@ -1019,7 +1019,7 @@ export interface CreatePackagingGroupRequest {
|
|
|
1019
1019
|
* A collection of tags associated with a resource
|
|
1020
1020
|
* @public
|
|
1021
1021
|
*/
|
|
1022
|
-
Tags?: Record<string, string
|
|
1022
|
+
Tags?: Record<string, string> | undefined;
|
|
1023
1023
|
}
|
|
1024
1024
|
/**
|
|
1025
1025
|
* @public
|
|
@@ -1029,37 +1029,37 @@ export interface CreatePackagingGroupResponse {
|
|
|
1029
1029
|
* The ARN of the PackagingGroup.
|
|
1030
1030
|
* @public
|
|
1031
1031
|
*/
|
|
1032
|
-
Arn?: string;
|
|
1032
|
+
Arn?: string | undefined;
|
|
1033
1033
|
/**
|
|
1034
1034
|
* CDN Authorization credentials
|
|
1035
1035
|
* @public
|
|
1036
1036
|
*/
|
|
1037
|
-
Authorization?: Authorization;
|
|
1037
|
+
Authorization?: Authorization | undefined;
|
|
1038
1038
|
/**
|
|
1039
1039
|
* The time the PackagingGroup was created.
|
|
1040
1040
|
* @public
|
|
1041
1041
|
*/
|
|
1042
|
-
CreatedAt?: string;
|
|
1042
|
+
CreatedAt?: string | undefined;
|
|
1043
1043
|
/**
|
|
1044
1044
|
* The fully qualified domain name for Assets in the PackagingGroup.
|
|
1045
1045
|
* @public
|
|
1046
1046
|
*/
|
|
1047
|
-
DomainName?: string;
|
|
1047
|
+
DomainName?: string | undefined;
|
|
1048
1048
|
/**
|
|
1049
1049
|
* Configure egress access logging.
|
|
1050
1050
|
* @public
|
|
1051
1051
|
*/
|
|
1052
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
1052
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
1053
1053
|
/**
|
|
1054
1054
|
* The ID of the PackagingGroup.
|
|
1055
1055
|
* @public
|
|
1056
1056
|
*/
|
|
1057
|
-
Id?: string;
|
|
1057
|
+
Id?: string | undefined;
|
|
1058
1058
|
/**
|
|
1059
1059
|
* A collection of tags associated with a resource
|
|
1060
1060
|
* @public
|
|
1061
1061
|
*/
|
|
1062
|
-
Tags?: Record<string, string
|
|
1062
|
+
Tags?: Record<string, string> | undefined;
|
|
1063
1063
|
}
|
|
1064
1064
|
/**
|
|
1065
1065
|
* @public
|
|
@@ -1124,47 +1124,47 @@ export interface DescribeAssetResponse {
|
|
|
1124
1124
|
* The ARN of the Asset.
|
|
1125
1125
|
* @public
|
|
1126
1126
|
*/
|
|
1127
|
-
Arn?: string;
|
|
1127
|
+
Arn?: string | undefined;
|
|
1128
1128
|
/**
|
|
1129
1129
|
* The time the Asset was initially submitted for Ingest.
|
|
1130
1130
|
* @public
|
|
1131
1131
|
*/
|
|
1132
|
-
CreatedAt?: string;
|
|
1132
|
+
CreatedAt?: string | undefined;
|
|
1133
1133
|
/**
|
|
1134
1134
|
* The list of egress endpoints available for the Asset.
|
|
1135
1135
|
* @public
|
|
1136
1136
|
*/
|
|
1137
|
-
EgressEndpoints?: EgressEndpoint[];
|
|
1137
|
+
EgressEndpoints?: EgressEndpoint[] | undefined;
|
|
1138
1138
|
/**
|
|
1139
1139
|
* The unique identifier for the Asset.
|
|
1140
1140
|
* @public
|
|
1141
1141
|
*/
|
|
1142
|
-
Id?: string;
|
|
1142
|
+
Id?: string | undefined;
|
|
1143
1143
|
/**
|
|
1144
1144
|
* The ID of the PackagingGroup for the Asset.
|
|
1145
1145
|
* @public
|
|
1146
1146
|
*/
|
|
1147
|
-
PackagingGroupId?: string;
|
|
1147
|
+
PackagingGroupId?: string | undefined;
|
|
1148
1148
|
/**
|
|
1149
1149
|
* The resource ID to include in SPEKE key requests.
|
|
1150
1150
|
* @public
|
|
1151
1151
|
*/
|
|
1152
|
-
ResourceId?: string;
|
|
1152
|
+
ResourceId?: string | undefined;
|
|
1153
1153
|
/**
|
|
1154
1154
|
* ARN of the source object in S3.
|
|
1155
1155
|
* @public
|
|
1156
1156
|
*/
|
|
1157
|
-
SourceArn?: string;
|
|
1157
|
+
SourceArn?: string | undefined;
|
|
1158
1158
|
/**
|
|
1159
1159
|
* The IAM role_arn used to access the source S3 bucket.
|
|
1160
1160
|
* @public
|
|
1161
1161
|
*/
|
|
1162
|
-
SourceRoleArn?: string;
|
|
1162
|
+
SourceRoleArn?: string | undefined;
|
|
1163
1163
|
/**
|
|
1164
1164
|
* A collection of tags associated with a resource
|
|
1165
1165
|
* @public
|
|
1166
1166
|
*/
|
|
1167
|
-
Tags?: Record<string, string
|
|
1167
|
+
Tags?: Record<string, string> | undefined;
|
|
1168
1168
|
}
|
|
1169
1169
|
/**
|
|
1170
1170
|
* @public
|
|
@@ -1184,47 +1184,47 @@ export interface DescribePackagingConfigurationResponse {
|
|
|
1184
1184
|
* The ARN of the PackagingConfiguration.
|
|
1185
1185
|
* @public
|
|
1186
1186
|
*/
|
|
1187
|
-
Arn?: string;
|
|
1187
|
+
Arn?: string | undefined;
|
|
1188
1188
|
/**
|
|
1189
1189
|
* A CMAF packaging configuration.
|
|
1190
1190
|
* @public
|
|
1191
1191
|
*/
|
|
1192
|
-
CmafPackage?: CmafPackage;
|
|
1192
|
+
CmafPackage?: CmafPackage | undefined;
|
|
1193
1193
|
/**
|
|
1194
1194
|
* The time the PackagingConfiguration was created.
|
|
1195
1195
|
* @public
|
|
1196
1196
|
*/
|
|
1197
|
-
CreatedAt?: string;
|
|
1197
|
+
CreatedAt?: string | undefined;
|
|
1198
1198
|
/**
|
|
1199
1199
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
1200
1200
|
* @public
|
|
1201
1201
|
*/
|
|
1202
|
-
DashPackage?: DashPackage;
|
|
1202
|
+
DashPackage?: DashPackage | undefined;
|
|
1203
1203
|
/**
|
|
1204
1204
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
1205
1205
|
* @public
|
|
1206
1206
|
*/
|
|
1207
|
-
HlsPackage?: HlsPackage;
|
|
1207
|
+
HlsPackage?: HlsPackage | undefined;
|
|
1208
1208
|
/**
|
|
1209
1209
|
* The ID of the PackagingConfiguration.
|
|
1210
1210
|
* @public
|
|
1211
1211
|
*/
|
|
1212
|
-
Id?: string;
|
|
1212
|
+
Id?: string | undefined;
|
|
1213
1213
|
/**
|
|
1214
1214
|
* A Microsoft Smooth Streaming (MSS) PackagingConfiguration.
|
|
1215
1215
|
* @public
|
|
1216
1216
|
*/
|
|
1217
|
-
MssPackage?: MssPackage;
|
|
1217
|
+
MssPackage?: MssPackage | undefined;
|
|
1218
1218
|
/**
|
|
1219
1219
|
* The ID of a PackagingGroup.
|
|
1220
1220
|
* @public
|
|
1221
1221
|
*/
|
|
1222
|
-
PackagingGroupId?: string;
|
|
1222
|
+
PackagingGroupId?: string | undefined;
|
|
1223
1223
|
/**
|
|
1224
1224
|
* A collection of tags associated with a resource
|
|
1225
1225
|
* @public
|
|
1226
1226
|
*/
|
|
1227
|
-
Tags?: Record<string, string
|
|
1227
|
+
Tags?: Record<string, string> | undefined;
|
|
1228
1228
|
}
|
|
1229
1229
|
/**
|
|
1230
1230
|
* @public
|
|
@@ -1244,42 +1244,42 @@ export interface DescribePackagingGroupResponse {
|
|
|
1244
1244
|
* The approximate asset count of the PackagingGroup.
|
|
1245
1245
|
* @public
|
|
1246
1246
|
*/
|
|
1247
|
-
ApproximateAssetCount?: number;
|
|
1247
|
+
ApproximateAssetCount?: number | undefined;
|
|
1248
1248
|
/**
|
|
1249
1249
|
* The ARN of the PackagingGroup.
|
|
1250
1250
|
* @public
|
|
1251
1251
|
*/
|
|
1252
|
-
Arn?: string;
|
|
1252
|
+
Arn?: string | undefined;
|
|
1253
1253
|
/**
|
|
1254
1254
|
* CDN Authorization credentials
|
|
1255
1255
|
* @public
|
|
1256
1256
|
*/
|
|
1257
|
-
Authorization?: Authorization;
|
|
1257
|
+
Authorization?: Authorization | undefined;
|
|
1258
1258
|
/**
|
|
1259
1259
|
* The time the PackagingGroup was created.
|
|
1260
1260
|
* @public
|
|
1261
1261
|
*/
|
|
1262
|
-
CreatedAt?: string;
|
|
1262
|
+
CreatedAt?: string | undefined;
|
|
1263
1263
|
/**
|
|
1264
1264
|
* The fully qualified domain name for Assets in the PackagingGroup.
|
|
1265
1265
|
* @public
|
|
1266
1266
|
*/
|
|
1267
|
-
DomainName?: string;
|
|
1267
|
+
DomainName?: string | undefined;
|
|
1268
1268
|
/**
|
|
1269
1269
|
* Configure egress access logging.
|
|
1270
1270
|
* @public
|
|
1271
1271
|
*/
|
|
1272
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
1272
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
1273
1273
|
/**
|
|
1274
1274
|
* The ID of the PackagingGroup.
|
|
1275
1275
|
* @public
|
|
1276
1276
|
*/
|
|
1277
|
-
Id?: string;
|
|
1277
|
+
Id?: string | undefined;
|
|
1278
1278
|
/**
|
|
1279
1279
|
* A collection of tags associated with a resource
|
|
1280
1280
|
* @public
|
|
1281
1281
|
*/
|
|
1282
|
-
Tags?: Record<string, string
|
|
1282
|
+
Tags?: Record<string, string> | undefined;
|
|
1283
1283
|
}
|
|
1284
1284
|
/**
|
|
1285
1285
|
* @public
|
|
@@ -1289,17 +1289,17 @@ export interface ListAssetsRequest {
|
|
|
1289
1289
|
* Upper bound on number of records to return.
|
|
1290
1290
|
* @public
|
|
1291
1291
|
*/
|
|
1292
|
-
MaxResults?: number;
|
|
1292
|
+
MaxResults?: number | undefined;
|
|
1293
1293
|
/**
|
|
1294
1294
|
* A token used to resume pagination from the end of a previous request.
|
|
1295
1295
|
* @public
|
|
1296
1296
|
*/
|
|
1297
|
-
NextToken?: string;
|
|
1297
|
+
NextToken?: string | undefined;
|
|
1298
1298
|
/**
|
|
1299
1299
|
* Returns Assets associated with the specified PackagingGroup.
|
|
1300
1300
|
* @public
|
|
1301
1301
|
*/
|
|
1302
|
-
PackagingGroupId?: string;
|
|
1302
|
+
PackagingGroupId?: string | undefined;
|
|
1303
1303
|
}
|
|
1304
1304
|
/**
|
|
1305
1305
|
* @public
|
|
@@ -1309,12 +1309,12 @@ export interface ListAssetsResponse {
|
|
|
1309
1309
|
* A list of MediaPackage VOD Asset resources.
|
|
1310
1310
|
* @public
|
|
1311
1311
|
*/
|
|
1312
|
-
Assets?: AssetShallow[];
|
|
1312
|
+
Assets?: AssetShallow[] | undefined;
|
|
1313
1313
|
/**
|
|
1314
1314
|
* A token that can be used to resume pagination from the end of the collection.
|
|
1315
1315
|
* @public
|
|
1316
1316
|
*/
|
|
1317
|
-
NextToken?: string;
|
|
1317
|
+
NextToken?: string | undefined;
|
|
1318
1318
|
}
|
|
1319
1319
|
/**
|
|
1320
1320
|
* @public
|
|
@@ -1324,17 +1324,17 @@ export interface ListPackagingConfigurationsRequest {
|
|
|
1324
1324
|
* Upper bound on number of records to return.
|
|
1325
1325
|
* @public
|
|
1326
1326
|
*/
|
|
1327
|
-
MaxResults?: number;
|
|
1327
|
+
MaxResults?: number | undefined;
|
|
1328
1328
|
/**
|
|
1329
1329
|
* A token used to resume pagination from the end of a previous request.
|
|
1330
1330
|
* @public
|
|
1331
1331
|
*/
|
|
1332
|
-
NextToken?: string;
|
|
1332
|
+
NextToken?: string | undefined;
|
|
1333
1333
|
/**
|
|
1334
1334
|
* Returns MediaPackage VOD PackagingConfigurations associated with the specified PackagingGroup.
|
|
1335
1335
|
* @public
|
|
1336
1336
|
*/
|
|
1337
|
-
PackagingGroupId?: string;
|
|
1337
|
+
PackagingGroupId?: string | undefined;
|
|
1338
1338
|
}
|
|
1339
1339
|
/**
|
|
1340
1340
|
* @public
|
|
@@ -1344,12 +1344,12 @@ export interface ListPackagingConfigurationsResponse {
|
|
|
1344
1344
|
* A token that can be used to resume pagination from the end of the collection.
|
|
1345
1345
|
* @public
|
|
1346
1346
|
*/
|
|
1347
|
-
NextToken?: string;
|
|
1347
|
+
NextToken?: string | undefined;
|
|
1348
1348
|
/**
|
|
1349
1349
|
* A list of MediaPackage VOD PackagingConfiguration resources.
|
|
1350
1350
|
* @public
|
|
1351
1351
|
*/
|
|
1352
|
-
PackagingConfigurations?: PackagingConfiguration[];
|
|
1352
|
+
PackagingConfigurations?: PackagingConfiguration[] | undefined;
|
|
1353
1353
|
}
|
|
1354
1354
|
/**
|
|
1355
1355
|
* @public
|
|
@@ -1359,12 +1359,12 @@ export interface ListPackagingGroupsRequest {
|
|
|
1359
1359
|
* Upper bound on number of records to return.
|
|
1360
1360
|
* @public
|
|
1361
1361
|
*/
|
|
1362
|
-
MaxResults?: number;
|
|
1362
|
+
MaxResults?: number | undefined;
|
|
1363
1363
|
/**
|
|
1364
1364
|
* A token used to resume pagination from the end of a previous request.
|
|
1365
1365
|
* @public
|
|
1366
1366
|
*/
|
|
1367
|
-
NextToken?: string;
|
|
1367
|
+
NextToken?: string | undefined;
|
|
1368
1368
|
}
|
|
1369
1369
|
/**
|
|
1370
1370
|
* @public
|
|
@@ -1374,12 +1374,12 @@ export interface ListPackagingGroupsResponse {
|
|
|
1374
1374
|
* A token that can be used to resume pagination from the end of the collection.
|
|
1375
1375
|
* @public
|
|
1376
1376
|
*/
|
|
1377
|
-
NextToken?: string;
|
|
1377
|
+
NextToken?: string | undefined;
|
|
1378
1378
|
/**
|
|
1379
1379
|
* A list of MediaPackage VOD PackagingGroup resources.
|
|
1380
1380
|
* @public
|
|
1381
1381
|
*/
|
|
1382
|
-
PackagingGroups?: PackagingGroup[];
|
|
1382
|
+
PackagingGroups?: PackagingGroup[] | undefined;
|
|
1383
1383
|
}
|
|
1384
1384
|
/**
|
|
1385
1385
|
* @public
|
|
@@ -1399,7 +1399,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1399
1399
|
* A collection of tags associated with a resource
|
|
1400
1400
|
* @public
|
|
1401
1401
|
*/
|
|
1402
|
-
Tags?: Record<string, string
|
|
1402
|
+
Tags?: Record<string, string> | undefined;
|
|
1403
1403
|
}
|
|
1404
1404
|
/**
|
|
1405
1405
|
* @public
|
|
@@ -1440,7 +1440,7 @@ export interface UpdatePackagingGroupRequest {
|
|
|
1440
1440
|
* CDN Authorization credentials
|
|
1441
1441
|
* @public
|
|
1442
1442
|
*/
|
|
1443
|
-
Authorization?: Authorization;
|
|
1443
|
+
Authorization?: Authorization | undefined;
|
|
1444
1444
|
/**
|
|
1445
1445
|
* The ID of a MediaPackage VOD PackagingGroup resource.
|
|
1446
1446
|
* @public
|
|
@@ -1455,40 +1455,40 @@ export interface UpdatePackagingGroupResponse {
|
|
|
1455
1455
|
* The approximate asset count of the PackagingGroup.
|
|
1456
1456
|
* @public
|
|
1457
1457
|
*/
|
|
1458
|
-
ApproximateAssetCount?: number;
|
|
1458
|
+
ApproximateAssetCount?: number | undefined;
|
|
1459
1459
|
/**
|
|
1460
1460
|
* The ARN of the PackagingGroup.
|
|
1461
1461
|
* @public
|
|
1462
1462
|
*/
|
|
1463
|
-
Arn?: string;
|
|
1463
|
+
Arn?: string | undefined;
|
|
1464
1464
|
/**
|
|
1465
1465
|
* CDN Authorization credentials
|
|
1466
1466
|
* @public
|
|
1467
1467
|
*/
|
|
1468
|
-
Authorization?: Authorization;
|
|
1468
|
+
Authorization?: Authorization | undefined;
|
|
1469
1469
|
/**
|
|
1470
1470
|
* The time the PackagingGroup was created.
|
|
1471
1471
|
* @public
|
|
1472
1472
|
*/
|
|
1473
|
-
CreatedAt?: string;
|
|
1473
|
+
CreatedAt?: string | undefined;
|
|
1474
1474
|
/**
|
|
1475
1475
|
* The fully qualified domain name for Assets in the PackagingGroup.
|
|
1476
1476
|
* @public
|
|
1477
1477
|
*/
|
|
1478
|
-
DomainName?: string;
|
|
1478
|
+
DomainName?: string | undefined;
|
|
1479
1479
|
/**
|
|
1480
1480
|
* Configure egress access logging.
|
|
1481
1481
|
* @public
|
|
1482
1482
|
*/
|
|
1483
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
1483
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
1484
1484
|
/**
|
|
1485
1485
|
* The ID of the PackagingGroup.
|
|
1486
1486
|
* @public
|
|
1487
1487
|
*/
|
|
1488
|
-
Id?: string;
|
|
1488
|
+
Id?: string | undefined;
|
|
1489
1489
|
/**
|
|
1490
1490
|
* A collection of tags associated with a resource
|
|
1491
1491
|
* @public
|
|
1492
1492
|
*/
|
|
1493
|
-
Tags?: Record<string, string
|
|
1493
|
+
Tags?: Record<string, string> | undefined;
|
|
1494
1494
|
}
|