@aws-sdk/client-mediatailor 3.686.0 → 3.691.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.
@@ -37,12 +37,12 @@ export interface SlateSource {
37
37
  * <p>The name of the source location where the slate VOD source is stored.</p>
38
38
  * @public
39
39
  */
40
- SourceLocationName?: string;
40
+ SourceLocationName?: string | undefined;
41
41
  /**
42
42
  * <p>The slate VOD source name. The VOD source must already exist in a source location before it can be used for slate.</p>
43
43
  * @public
44
44
  */
45
- VodSourceName?: string;
45
+ VodSourceName?: string | undefined;
46
46
  }
47
47
  /**
48
48
  * <p>Splice insert message configuration.</p>
@@ -53,22 +53,22 @@ export interface SpliceInsertMessage {
53
53
  * <p>This is written to <code>splice_insert.avail_num</code>, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is <code>0</code>. Values must be between <code>0</code> and <code>256</code>, inclusive.</p>
54
54
  * @public
55
55
  */
56
- AvailNum?: number;
56
+ AvailNum?: number | undefined;
57
57
  /**
58
58
  * <p>This is written to <code>splice_insert.avails_expected</code>, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is <code>0</code>. Values must be between <code>0</code> and <code>256</code>, inclusive.</p>
59
59
  * @public
60
60
  */
61
- AvailsExpected?: number;
61
+ AvailsExpected?: number | undefined;
62
62
  /**
63
63
  * <p>This is written to <code>splice_insert.splice_event_id</code>, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is <code>1</code>.</p>
64
64
  * @public
65
65
  */
66
- SpliceEventId?: number;
66
+ SpliceEventId?: number | undefined;
67
67
  /**
68
68
  * <p>This is written to <code>splice_insert.unique_program_id</code>, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is <code>0</code>. Values must be between <code>0</code> and <code>256</code>, inclusive.</p>
69
69
  * @public
70
70
  */
71
- UniqueProgramId?: number;
71
+ UniqueProgramId?: number | undefined;
72
72
  }
73
73
  /**
74
74
  * <p>The <code>segmentation_descriptor</code> message can contain advanced metadata fields, like content identifiers, to convey a wide range of information about the ad break. MediaTailor writes the ad metadata in the egress manifest as part of the <code>EXT-X-DATERANGE</code> or <code>EventStream</code> ad marker's SCTE-35 data.</p>
@@ -82,42 +82,42 @@ export interface SegmentationDescriptor {
82
82
  * <p>The Event Identifier to assign to the <code>segmentation_descriptor.segmentation_event_id</code> message, as defined in section 10.3.3.1 of the 2022 SCTE-35 specification. The default value is 1.</p>
83
83
  * @public
84
84
  */
85
- SegmentationEventId?: number;
85
+ SegmentationEventId?: number | undefined;
86
86
  /**
87
87
  * <p>The Upid Type to assign to the <code>segmentation_descriptor.segmentation_upid_type</code> message, as defined in section 10.3.3.1 of the 2022 SCTE-35 specification. Values must be between 0 and 256, inclusive. The default value is 14.</p>
88
88
  * @public
89
89
  */
90
- SegmentationUpidType?: number;
90
+ SegmentationUpidType?: number | undefined;
91
91
  /**
92
92
  * <p>The Upid to assign to the <code>segmentation_descriptor.segmentation_upid</code> message, as defined in section 10.3.3.1 of the 2022 SCTE-35 specification. The value must be a hexadecimal string containing only the characters 0 though 9 and A through F. The default value is "" (an empty string).</p>
93
93
  * @public
94
94
  */
95
- SegmentationUpid?: string;
95
+ SegmentationUpid?: string | undefined;
96
96
  /**
97
97
  * <p>The Type Identifier to assign to the <code>segmentation_descriptor.segmentation_type_id</code> message, as defined in section 10.3.3.1 of the 2022 SCTE-35 specification. Values must be between 0 and 256, inclusive. The default value is 48.</p>
98
98
  * @public
99
99
  */
100
- SegmentationTypeId?: number;
100
+ SegmentationTypeId?: number | undefined;
101
101
  /**
102
102
  * <p>The segment number to assign to the <code>segmentation_descriptor.segment_num</code> message, as defined in section 10.3.3.1 of the 2022 SCTE-35 specification Values must be between 0 and 256, inclusive. The default value is 0.</p>
103
103
  * @public
104
104
  */
105
- SegmentNum?: number;
105
+ SegmentNum?: number | undefined;
106
106
  /**
107
107
  * <p>The number of segments expected, which is assigned to the <code>segmentation_descriptor.segments_expectedS</code> message, as defined in section 10.3.3.1 of the 2022 SCTE-35 specification Values must be between 0 and 256, inclusive. The default value is 0.</p>
108
108
  * @public
109
109
  */
110
- SegmentsExpected?: number;
110
+ SegmentsExpected?: number | undefined;
111
111
  /**
112
112
  * <p>The sub-segment number to assign to the <code>segmentation_descriptor.sub_segment_num</code> message, as defined in section 10.3.3.1 of the 2022 SCTE-35 specification. Values must be between 0 and 256, inclusive. The defualt value is null.</p>
113
113
  * @public
114
114
  */
115
- SubSegmentNum?: number;
115
+ SubSegmentNum?: number | undefined;
116
116
  /**
117
117
  * <p>The number of sub-segments expected, which is assigned to the <code>segmentation_descriptor.sub_segments_expected</code> message, as defined in section 10.3.3.1 of the 2022 SCTE-35 specification. Values must be between 0 and 256, inclusive. The default value is null.</p>
118
118
  * @public
119
119
  */
120
- SubSegmentsExpected?: number;
120
+ SubSegmentsExpected?: number | undefined;
121
121
  }
122
122
  /**
123
123
  * <p>The SCTE-35 <code>time_signal</code> message can be sent with one or more <code>segmentation_descriptor</code> messages. A <code>time_signal</code> message can be sent only if a single <code>segmentation_descriptor</code> message is sent.</p>
@@ -130,7 +130,7 @@ export interface TimeSignalMessage {
130
130
  * <p>The configurations for the SCTE-35 <code>segmentation_descriptor</code> message(s) sent with the <code>time_signal</code> message.</p>
131
131
  * @public
132
132
  */
133
- SegmentationDescriptors?: SegmentationDescriptor[];
133
+ SegmentationDescriptors?: SegmentationDescriptor[] | undefined;
134
134
  }
135
135
  /**
136
136
  * <p>Ad break configuration parameters.</p>
@@ -141,7 +141,7 @@ export interface AdBreak {
141
141
  * <p>The SCTE-35 ad insertion type. Accepted value: <code>SPLICE_INSERT</code>, <code>TIME_SIGNAL</code>.</p>
142
142
  * @public
143
143
  */
144
- MessageType?: MessageType;
144
+ MessageType?: MessageType | undefined;
145
145
  /**
146
146
  * <p>How long (in milliseconds) after the beginning of the program that an ad starts. This value must fall within 100ms of a segment boundary, otherwise the ad break will be skipped.</p>
147
147
  * @public
@@ -151,24 +151,24 @@ export interface AdBreak {
151
151
  * <p>Ad break slate configuration.</p>
152
152
  * @public
153
153
  */
154
- Slate?: SlateSource;
154
+ Slate?: SlateSource | undefined;
155
155
  /**
156
156
  * <p>This defines the SCTE-35 <code>splice_insert()</code> message inserted around the ad. For information about using <code>splice_insert()</code>, see the SCTE-35 specficiaiton, section 9.7.3.1.</p>
157
157
  * @public
158
158
  */
159
- SpliceInsertMessage?: SpliceInsertMessage;
159
+ SpliceInsertMessage?: SpliceInsertMessage | undefined;
160
160
  /**
161
161
  * <p>Defines the SCTE-35 <code>time_signal</code> message inserted around the ad.</p>
162
162
  * <p>Programs on a channel's schedule can be configured with one or more ad breaks. You can attach a <code>splice_insert</code> SCTE-35 message to the ad break. This message provides basic metadata about the ad break.</p>
163
163
  * <p>See section 9.7.4 of the 2022 SCTE-35 specification for more information.</p>
164
164
  * @public
165
165
  */
166
- TimeSignalMessage?: TimeSignalMessage;
166
+ TimeSignalMessage?: TimeSignalMessage | undefined;
167
167
  /**
168
168
  * <p>Defines a list of key/value pairs that MediaTailor generates within the <code>EXT-X-ASSET</code>tag for <code>SCTE35_ENHANCED</code> output.</p>
169
169
  * @public
170
170
  */
171
- AdBreakMetadata?: KeyValuePair[];
171
+ AdBreakMetadata?: KeyValuePair[] | undefined;
172
172
  }
173
173
  /**
174
174
  * @public
@@ -217,7 +217,7 @@ export interface Alert {
217
217
  * <p>The category that MediaTailor assigns to the alert.</p>
218
218
  * @public
219
219
  */
220
- Category?: AlertCategory;
220
+ Category?: AlertCategory | undefined;
221
221
  }
222
222
  /**
223
223
  * <p>Clip range configuration for the VOD source associated with the program.</p>
@@ -228,12 +228,12 @@ export interface ClipRange {
228
228
  * <p>The end offset of the clip range, in milliseconds, starting from the beginning of the VOD source associated with the program.</p>
229
229
  * @public
230
230
  */
231
- EndOffsetMillis?: number;
231
+ EndOffsetMillis?: number | undefined;
232
232
  /**
233
233
  * <p>The start offset of the clip range, in milliseconds. This offset truncates the start at the number of milliseconds into the duration of the VOD source.</p>
234
234
  * @public
235
235
  */
236
- StartOffsetMillis?: number;
236
+ StartOffsetMillis?: number | undefined;
237
237
  }
238
238
  /**
239
239
  * <p>A playlist of media (VOD and/or live) to be played instead of the default media on a particular program.</p>
@@ -244,37 +244,37 @@ export interface AlternateMedia {
244
244
  * <p>The name of the source location for alternateMedia.</p>
245
245
  * @public
246
246
  */
247
- SourceLocationName?: string;
247
+ SourceLocationName?: string | undefined;
248
248
  /**
249
249
  * <p>The name of the live source for alternateMedia.</p>
250
250
  * @public
251
251
  */
252
- LiveSourceName?: string;
252
+ LiveSourceName?: string | undefined;
253
253
  /**
254
254
  * <p>The name of the VOD source for alternateMedia.</p>
255
255
  * @public
256
256
  */
257
- VodSourceName?: string;
257
+ VodSourceName?: string | undefined;
258
258
  /**
259
259
  * <p>Clip range configuration for the VOD source associated with the program.</p>
260
260
  * @public
261
261
  */
262
- ClipRange?: ClipRange;
262
+ ClipRange?: ClipRange | undefined;
263
263
  /**
264
264
  * <p>The date and time that the alternateMedia is scheduled to start, in epoch milliseconds.</p>
265
265
  * @public
266
266
  */
267
- ScheduledStartTimeMillis?: number;
267
+ ScheduledStartTimeMillis?: number | undefined;
268
268
  /**
269
269
  * <p>Ad break configuration parameters defined in AlternateMedia.</p>
270
270
  * @public
271
271
  */
272
- AdBreaks?: AdBreak[];
272
+ AdBreaks?: AdBreak[] | undefined;
273
273
  /**
274
274
  * <p>The duration of the alternateMedia in milliseconds.</p>
275
275
  * @public
276
276
  */
277
- DurationMillis?: number;
277
+ DurationMillis?: number | undefined;
278
278
  }
279
279
  /**
280
280
  * <p>An AudienceMedia object contains an Audience and a list of AlternateMedia.</p>
@@ -285,12 +285,12 @@ export interface AudienceMedia {
285
285
  * <p>The Audience defined in AudienceMedia.</p>
286
286
  * @public
287
287
  */
288
- Audience?: string;
288
+ Audience?: string | undefined;
289
289
  /**
290
290
  * <p>The list of AlternateMedia defined in AudienceMedia.</p>
291
291
  * @public
292
292
  */
293
- AlternateMedia?: AlternateMedia[];
293
+ AlternateMedia?: AlternateMedia[] | undefined;
294
294
  }
295
295
  /**
296
296
  * @public
@@ -342,7 +342,7 @@ export interface LogConfigurationForChannel {
342
342
  * <p>The log types.</p>
343
343
  * @public
344
344
  */
345
- LogTypes?: LogType[];
345
+ LogTypes?: LogType[] | undefined;
346
346
  }
347
347
  /**
348
348
  * <p>Dash manifest configuration parameters.</p>
@@ -353,22 +353,22 @@ export interface DashPlaylistSettings {
353
353
  * <p>The total duration (in seconds) of each manifest. Minimum value: <code>30</code> seconds. Maximum value: <code>3600</code> seconds.</p>
354
354
  * @public
355
355
  */
356
- ManifestWindowSeconds?: number;
356
+ ManifestWindowSeconds?: number | undefined;
357
357
  /**
358
358
  * <p>Minimum amount of content (measured in seconds) that a player must keep available in the buffer. Minimum value: <code>2</code> seconds. Maximum value: <code>60</code> seconds.</p>
359
359
  * @public
360
360
  */
361
- MinBufferTimeSeconds?: number;
361
+ MinBufferTimeSeconds?: number | undefined;
362
362
  /**
363
363
  * <p>Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest. Minimum value: <code>2</code> seconds. Maximum value: <code>60</code> seconds.</p>
364
364
  * @public
365
365
  */
366
- MinUpdatePeriodSeconds?: number;
366
+ MinUpdatePeriodSeconds?: number | undefined;
367
367
  /**
368
368
  * <p>Amount of time (in seconds) that the player should be from the live point at the end of the manifest. Minimum value: <code>2</code> seconds. Maximum value: <code>60</code> seconds.</p>
369
369
  * @public
370
370
  */
371
- SuggestedPresentationDelaySeconds?: number;
371
+ SuggestedPresentationDelaySeconds?: number | undefined;
372
372
  }
373
373
  /**
374
374
  * @public
@@ -391,12 +391,12 @@ export interface HlsPlaylistSettings {
391
391
  * <p>The total duration (in seconds) of each manifest. Minimum value: <code>30</code> seconds. Maximum value: <code>3600</code> seconds.</p>
392
392
  * @public
393
393
  */
394
- ManifestWindowSeconds?: number;
394
+ ManifestWindowSeconds?: number | undefined;
395
395
  /**
396
396
  * <p>Determines the type of SCTE 35 tags to use in ad markup. Specify <code>DATERANGE</code> to use <code>DATERANGE</code> tags (for live or VOD content). Specify <code>SCTE35_ENHANCED</code> to use <code>EXT-X-CUE-OUT</code> and <code>EXT-X-CUE-IN</code> tags (for VOD content only).</p>
397
397
  * @public
398
398
  */
399
- AdMarkupType?: AdMarkupType[];
399
+ AdMarkupType?: AdMarkupType[] | undefined;
400
400
  }
401
401
  /**
402
402
  * <p>The output item response.</p>
@@ -407,12 +407,12 @@ export interface ResponseOutputItem {
407
407
  * <p>DASH manifest configuration settings.</p>
408
408
  * @public
409
409
  */
410
- DashPlaylistSettings?: DashPlaylistSettings;
410
+ DashPlaylistSettings?: DashPlaylistSettings | undefined;
411
411
  /**
412
412
  * <p>HLS manifest configuration settings.</p>
413
413
  * @public
414
414
  */
415
- HlsPlaylistSettings?: HlsPlaylistSettings;
415
+ HlsPlaylistSettings?: HlsPlaylistSettings | undefined;
416
416
  /**
417
417
  * <p>The name of the manifest for the channel that will appear in the channel output's playback URL.</p>
418
418
  * @public
@@ -453,19 +453,19 @@ export interface Channel {
453
453
  * <p>The timestamp of when the channel was created.</p>
454
454
  * @public
455
455
  */
456
- CreationTime?: Date;
456
+ CreationTime?: Date | undefined;
457
457
  /**
458
458
  * <p>The slate used to fill gaps between programs in the schedule. You must configure filler slate if your channel uses the <code>LINEAR</code>
459
459
  * <code>PlaybackMode</code>. MediaTailor doesn't support filler slate for channels using the <code>LOOP</code>
460
460
  * <code>PlaybackMode</code>.</p>
461
461
  * @public
462
462
  */
463
- FillerSlate?: SlateSource;
463
+ FillerSlate?: SlateSource | undefined;
464
464
  /**
465
465
  * <p>The timestamp of when the channel was last modified.</p>
466
466
  * @public
467
467
  */
468
- LastModifiedTime?: Date;
468
+ LastModifiedTime?: Date | undefined;
469
469
  /**
470
470
  * <p>The channel's output properties.</p>
471
471
  * @public
@@ -484,7 +484,7 @@ export interface Channel {
484
484
  * <p>The tags to assign to the channel. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
485
485
  * @public
486
486
  */
487
- Tags?: Record<string, string>;
487
+ Tags?: Record<string, string> | undefined;
488
488
  /**
489
489
  * <p>The tier for this channel. STANDARD tier channels can contain live programs.</p>
490
490
  * @public
@@ -499,7 +499,7 @@ export interface Channel {
499
499
  * <p>The list of audiences defined in channel.</p>
500
500
  * @public
501
501
  */
502
- Audiences?: string[];
502
+ Audiences?: string[] | undefined;
503
503
  }
504
504
  /**
505
505
  * @public
@@ -548,7 +548,7 @@ export interface LiveSource {
548
548
  * <p>The timestamp that indicates when the live source was created.</p>
549
549
  * @public
550
550
  */
551
- CreationTime?: Date;
551
+ CreationTime?: Date | undefined;
552
552
  /**
553
553
  * <p>The HTTP package configurations for the live source.</p>
554
554
  * @public
@@ -558,7 +558,7 @@ export interface LiveSource {
558
558
  * <p>The timestamp that indicates when the live source was last modified.</p>
559
559
  * @public
560
560
  */
561
- LastModifiedTime?: Date;
561
+ LastModifiedTime?: Date | undefined;
562
562
  /**
563
563
  * <p>The name that's used to refer to a live source.</p>
564
564
  * @public
@@ -573,7 +573,7 @@ export interface LiveSource {
573
573
  * <p>The tags assigned to the live source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
574
574
  * @public
575
575
  */
576
- Tags?: Record<string, string>;
576
+ Tags?: Record<string, string> | undefined;
577
577
  }
578
578
  /**
579
579
  * @public
@@ -609,17 +609,17 @@ export interface AvailSuppression {
609
609
  * <p>Sets the ad suppression mode. By default, ad suppression is off and all ad breaks are filled with ads or slate. When Mode is set to <code>BEHIND_LIVE_EDGE</code>, ad suppression is active and MediaTailor won't fill ad breaks on or behind the ad suppression Value time in the manifest lookback window. When Mode is set to <code>AFTER_LIVE_EDGE</code>, ad suppression is active and MediaTailor won't fill ad breaks that are within the live edge plus the avail suppression value.</p>
610
610
  * @public
611
611
  */
612
- Mode?: Mode;
612
+ Mode?: Mode | undefined;
613
613
  /**
614
614
  * <p>A live edge offset time in HH:MM:SS. MediaTailor won't fill ad breaks on or behind this time in the manifest lookback window. If Value is set to 00:00:00, it is in sync with the live edge, and MediaTailor won't fill any ad breaks on or behind the live edge. If you set a Value time, MediaTailor won't fill any ad breaks on or behind this time in the manifest lookback window. For example, if you set 00:45:00, then MediaTailor will fill ad breaks that occur within 45 minutes behind the live edge, but won't fill ad breaks on or behind 45 minutes behind the live edge.</p>
615
615
  * @public
616
616
  */
617
- Value?: string;
617
+ Value?: string | undefined;
618
618
  /**
619
619
  * <p>Defines the policy to apply to the avail suppression mode. <code>BEHIND_LIVE_EDGE</code> will always use the full avail suppression policy. <code>AFTER_LIVE_EDGE</code> mode can be used to invoke partial ad break fills when a session starts mid-break.</p>
620
620
  * @public
621
621
  */
622
- FillPolicy?: FillPolicy;
622
+ FillPolicy?: FillPolicy | undefined;
623
623
  }
624
624
  /**
625
625
  * <p>The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/bumpers.html">Bumpers</a>.</p>
@@ -630,12 +630,12 @@ export interface Bumper {
630
630
  * <p>The URL for the end bumper asset.</p>
631
631
  * @public
632
632
  */
633
- EndUrl?: string;
633
+ EndUrl?: string | undefined;
634
634
  /**
635
635
  * <p>The URL for the start bumper asset.</p>
636
636
  * @public
637
637
  */
638
- StartUrl?: string;
638
+ StartUrl?: string | undefined;
639
639
  }
640
640
  /**
641
641
  * <p>The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.</p>
@@ -646,12 +646,12 @@ export interface CdnConfiguration {
646
646
  * <p>A non-default content delivery network (CDN) to serve ad segments. By default, AWS Elemental MediaTailor uses Amazon CloudFront with default cache settings as its CDN for ad segments. To set up an alternate CDN, create a rule in your CDN for the origin ads.mediatailor.<i>&lt;region&gt;</i>.amazonaws.com. Then specify the rule's name in this <code>AdSegmentUrlPrefix</code>. When AWS Elemental MediaTailor serves a manifest, it reports your CDN as the source for ad segments.</p>
647
647
  * @public
648
648
  */
649
- AdSegmentUrlPrefix?: string;
649
+ AdSegmentUrlPrefix?: string | undefined;
650
650
  /**
651
651
  * <p>A content delivery network (CDN) to cache content segments, so that content requests don’t always have to go to the origin server. First, create a rule in your CDN for the content segment origin server. Then specify the rule's name in this <code>ContentSegmentUrlPrefix</code>. When AWS Elemental MediaTailor serves a manifest, it reports your CDN as the source for content segments.</p>
652
652
  * @public
653
653
  */
654
- ContentSegmentUrlPrefix?: string;
654
+ ContentSegmentUrlPrefix?: string | undefined;
655
655
  }
656
656
  /**
657
657
  * @public
@@ -674,17 +674,17 @@ export interface DashConfiguration {
674
674
  * <p>The URL generated by MediaTailor to initiate a playback session. The session uses server-side reporting. This setting is ignored in PUT operations.</p>
675
675
  * @public
676
676
  */
677
- ManifestEndpointPrefix?: string;
677
+ ManifestEndpointPrefix?: string | undefined;
678
678
  /**
679
679
  * <p>The setting that controls whether MediaTailor includes the Location tag in DASH manifests. MediaTailor populates the Location tag with the URL for manifest update requests, to be used by players that don't support sticky redirects. Disable this if you have CDN routing rules set up for accessing MediaTailor manifests, and you are either using client-side reporting or your players support sticky HTTP redirects. Valid values are <code>DISABLED</code> and <code>EMT_DEFAULT</code>. The <code>EMT_DEFAULT</code> setting enables the inclusion of the tag and is the default value.</p>
680
680
  * @public
681
681
  */
682
- MpdLocation?: string;
682
+ MpdLocation?: string | undefined;
683
683
  /**
684
684
  * <p>The setting that controls whether MediaTailor handles manifests from the origin server as multi-period manifests or single-period manifests. If your origin server produces single-period manifests, set this to <code>SINGLE_PERIOD</code>. The default setting is <code>MULTI_PERIOD</code>. For multi-period manifests, omit this setting or set it to <code>MULTI_PERIOD</code>.</p>
685
685
  * @public
686
686
  */
687
- OriginManifestType?: OriginManifestType;
687
+ OriginManifestType?: OriginManifestType | undefined;
688
688
  }
689
689
  /**
690
690
  * <p>The configuration for HLS content.</p>
@@ -695,7 +695,7 @@ export interface HlsConfiguration {
695
695
  * <p>The URL that is used to initiate a playback session for devices that support Apple HLS. The session uses server-side reporting.</p>
696
696
  * @public
697
697
  */
698
- ManifestEndpointPrefix?: string;
698
+ ManifestEndpointPrefix?: string | undefined;
699
699
  }
700
700
  /**
701
701
  * @public
@@ -718,12 +718,12 @@ export interface LivePreRollConfiguration {
718
718
  * <p>The URL for the ad decision server (ADS) for pre-roll ads. This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing, you can provide a static VAST URL. The maximum length is 25,000 characters.</p>
719
719
  * @public
720
720
  */
721
- AdDecisionServerUrl?: string;
721
+ AdDecisionServerUrl?: string | undefined;
722
722
  /**
723
723
  * <p>The maximum allowed duration for the pre-roll ad avail. AWS Elemental MediaTailor won't play pre-roll ads to exceed this duration, regardless of the total duration of ads that the ADS returns.</p>
724
724
  * @public
725
725
  */
726
- MaxDurationSeconds?: number;
726
+ MaxDurationSeconds?: number | undefined;
727
727
  }
728
728
  /**
729
729
  * <p>Returns Amazon CloudWatch log settings for a playback configuration.</p>
@@ -748,7 +748,7 @@ export interface AdMarkerPassthrough {
748
748
  * <p>Enables ad marker passthrough for your configuration.</p>
749
749
  * @public
750
750
  */
751
- Enabled?: boolean;
751
+ Enabled?: boolean | undefined;
752
752
  }
753
753
  /**
754
754
  * <p>The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.</p>
@@ -760,7 +760,7 @@ export interface ManifestProcessingRules {
760
760
  * <p>No logic is applied to these ad markers. For example, if <code>EXT-X-CUE-OUT</code> has a value of <code>60</code>, but no ads are filled for that ad break, MediaTailor will not set the value to <code>0</code>.</p>
761
761
  * @public
762
762
  */
763
- AdMarkerPassthrough?: AdMarkerPassthrough;
763
+ AdMarkerPassthrough?: AdMarkerPassthrough | undefined;
764
764
  }
765
765
  /**
766
766
  * <p>A playback configuration. For information about MediaTailor configurations, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/configurations.html">Working with configurations in AWS Elemental MediaTailor</a>.</p>
@@ -771,102 +771,102 @@ export interface PlaybackConfiguration {
771
771
  * <p>The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing you can provide a static VAST URL. The maximum length is 25,000 characters.</p>
772
772
  * @public
773
773
  */
774
- AdDecisionServerUrl?: string;
774
+ AdDecisionServerUrl?: string | undefined;
775
775
  /**
776
776
  * <p>The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html">Ad Suppression</a>.</p>
777
777
  * @public
778
778
  */
779
- AvailSuppression?: AvailSuppression;
779
+ AvailSuppression?: AvailSuppression | undefined;
780
780
  /**
781
781
  * <p>The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/bumpers.html">Bumpers</a>.</p>
782
782
  * @public
783
783
  */
784
- Bumper?: Bumper;
784
+ Bumper?: Bumper | undefined;
785
785
  /**
786
786
  * <p>The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.</p>
787
787
  * @public
788
788
  */
789
- CdnConfiguration?: CdnConfiguration;
789
+ CdnConfiguration?: CdnConfiguration | undefined;
790
790
  /**
791
791
  * <p>The player parameters and aliases used as dynamic variables during session initialization. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domain.html">Domain Variables</a>.</p>
792
792
  * @public
793
793
  */
794
- ConfigurationAliases?: Record<string, Record<string, string>>;
794
+ ConfigurationAliases?: Record<string, Record<string, string>> | undefined;
795
795
  /**
796
796
  * <p>The configuration for a DASH source.</p>
797
797
  * @public
798
798
  */
799
- DashConfiguration?: DashConfiguration;
799
+ DashConfiguration?: DashConfiguration | undefined;
800
800
  /**
801
801
  * <p>The configuration for HLS content.</p>
802
802
  * @public
803
803
  */
804
- HlsConfiguration?: HlsConfiguration;
804
+ HlsConfiguration?: HlsConfiguration | undefined;
805
805
  /**
806
806
  * <p>The setting that controls whether players can use stitched or guided ad insertion. The default, <code>STITCHED_ONLY</code>, forces all player sessions to use stitched (server-side) ad insertion. Choosing <code>PLAYER_SELECT</code> allows players to select either stitched or guided ad insertion at session-initialization time. The default for players that do not specify an insertion mode is stitched.</p>
807
807
  * @public
808
808
  */
809
- InsertionMode?: InsertionMode;
809
+ InsertionMode?: InsertionMode | undefined;
810
810
  /**
811
811
  * <p>The configuration for pre-roll ad insertion.</p>
812
812
  * @public
813
813
  */
814
- LivePreRollConfiguration?: LivePreRollConfiguration;
814
+ LivePreRollConfiguration?: LivePreRollConfiguration | undefined;
815
815
  /**
816
816
  * <p>The Amazon CloudWatch log settings for a playback configuration.</p>
817
817
  * @public
818
818
  */
819
- LogConfiguration?: LogConfiguration;
819
+ LogConfiguration?: LogConfiguration | undefined;
820
820
  /**
821
821
  * <p>The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.</p>
822
822
  * @public
823
823
  */
824
- ManifestProcessingRules?: ManifestProcessingRules;
824
+ ManifestProcessingRules?: ManifestProcessingRules | undefined;
825
825
  /**
826
826
  * <p>The identifier for the playback configuration.</p>
827
827
  * @public
828
828
  */
829
- Name?: string;
829
+ Name?: string | undefined;
830
830
  /**
831
831
  * <p>Defines the maximum duration of underfilled ad time (in seconds) allowed in an ad break. If the duration of underfilled ad time exceeds the personalization threshold, then the personalization of the ad break is abandoned and the underlying content is shown. This feature applies to <i>ad replacement</i> in live and VOD streams, rather than ad insertion, because it relies on an underlying content stream. For more information about ad break behavior, including ad replacement and insertion, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html">Ad Behavior in AWS Elemental MediaTailor</a>.</p>
832
832
  * @public
833
833
  */
834
- PersonalizationThresholdSeconds?: number;
834
+ PersonalizationThresholdSeconds?: number | undefined;
835
835
  /**
836
836
  * <p>The Amazon Resource Name (ARN) for the playback configuration.</p>
837
837
  * @public
838
838
  */
839
- PlaybackConfigurationArn?: string;
839
+ PlaybackConfigurationArn?: string | undefined;
840
840
  /**
841
841
  * <p>The URL that the player accesses to get a manifest from AWS Elemental MediaTailor.</p>
842
842
  * @public
843
843
  */
844
- PlaybackEndpointPrefix?: string;
844
+ PlaybackEndpointPrefix?: string | undefined;
845
845
  /**
846
846
  * <p>The URL that the player uses to initialize a session that uses client-side reporting.</p>
847
847
  * @public
848
848
  */
849
- SessionInitializationEndpointPrefix?: string;
849
+ SessionInitializationEndpointPrefix?: string | undefined;
850
850
  /**
851
851
  * <p>The URL for a video asset to transcode and use to fill in time that's not used by ads. AWS Elemental MediaTailor shows the slate to fill in gaps in media content. Configuring the slate is optional for non-VPAID playback configurations. For VPAID, the slate is required because MediaTailor provides it in the slots designated for dynamic ad content. The slate must be a high-quality asset that contains both audio and video.</p>
852
852
  * @public
853
853
  */
854
- SlateAdUrl?: string;
854
+ SlateAdUrl?: string | undefined;
855
855
  /**
856
856
  * <p>The tags to assign to the playback configuration. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
857
857
  * @public
858
858
  */
859
- Tags?: Record<string, string>;
859
+ Tags?: Record<string, string> | undefined;
860
860
  /**
861
861
  * <p>The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support.</p>
862
862
  * @public
863
863
  */
864
- TranscodeProfileName?: string;
864
+ TranscodeProfileName?: string | undefined;
865
865
  /**
866
866
  * <p>The URL prefix for the parent manifest for the stream, minus the asset ID. The maximum length is 512 characters.</p>
867
867
  * @public
868
868
  */
869
- VideoContentSourceUrl?: string;
869
+ VideoContentSourceUrl?: string | undefined;
870
870
  }
871
871
  /**
872
872
  * <p>A complex type that contains settings that determine how and when that MediaTailor places prefetched ads into upcoming ad breaks.</p>
@@ -877,7 +877,7 @@ export interface PrefetchConsumption {
877
877
  * <p>If you only want MediaTailor to insert prefetched ads into avails (ad breaks) that match specific dynamic variables, such as <code>scte.event_id</code>, set the avail matching criteria.</p>
878
878
  * @public
879
879
  */
880
- AvailMatchingCriteria?: AvailMatchingCriteria[];
880
+ AvailMatchingCriteria?: AvailMatchingCriteria[] | undefined;
881
881
  /**
882
882
  * <p>The time when MediaTailor no longer considers the prefetched ads for use in an ad break. MediaTailor automatically deletes prefetch schedules no less than seven days after the end time. If you'd like to manually delete the prefetch schedule, you can call <code>DeletePrefetchSchedule</code>.</p>
883
883
  * @public
@@ -887,7 +887,7 @@ export interface PrefetchConsumption {
887
887
  * <p>The time when prefetched ads are considered for use in an ad break. If you don't specify <code>StartTime</code>, the prefetched ads are available after MediaTailor retrives them from the ad decision server.</p>
888
888
  * @public
889
889
  */
890
- StartTime?: Date;
890
+ StartTime?: Date | undefined;
891
891
  }
892
892
  /**
893
893
  * <p>A complex type that contains settings governing when MediaTailor prefetches ads, and which dynamic variables that MediaTailor includes in the request to the ad decision server.</p>
@@ -899,7 +899,7 @@ export interface PrefetchRetrieval {
899
899
  * <p>You initially configure <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/variables.html">dynamic variables</a> for the ADS URL when you set up your playback configuration. When you specify <code>DynamicVariables</code> for prefetch retrieval, MediaTailor includes the dynamic variables in the request to the ADS.</p>
900
900
  * @public
901
901
  */
902
- DynamicVariables?: Record<string, string>;
902
+ DynamicVariables?: Record<string, string> | undefined;
903
903
  /**
904
904
  * <p>The time when prefetch retrieval ends for the ad break. Prefetching will be attempted for manifest requests that occur at or before this time.</p>
905
905
  * @public
@@ -909,7 +909,7 @@ export interface PrefetchRetrieval {
909
909
  * <p>The time when prefetch retrievals can start for this break. Ad prefetching will be attempted for manifest requests that occur at or after this time. Defaults to the current time. If not specified, the prefetch retrieval starts as soon as possible.</p>
910
910
  * @public
911
911
  */
912
- StartTime?: Date;
912
+ StartTime?: Date | undefined;
913
913
  }
914
914
  /**
915
915
  * <p>A prefetch schedule allows you to tell MediaTailor to fetch and prepare certain ads before an ad break happens. For more information about ad prefetching, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/prefetching-ads.html">Using ad prefetching</a> in the <i>MediaTailor User Guide</i>.</p>
@@ -945,7 +945,7 @@ export interface PrefetchSchedule {
945
945
  * <p>An optional stream identifier that you can specify in order to prefetch for multiple streams that use the same playback configuration.</p>
946
946
  * @public
947
947
  */
948
- StreamId?: string;
948
+ StreamId?: string | undefined;
949
949
  }
950
950
  /**
951
951
  * <p>The schedule's ad break properties.</p>
@@ -956,22 +956,22 @@ export interface ScheduleAdBreak {
956
956
  * <p>The approximate duration of the ad break, in seconds.</p>
957
957
  * @public
958
958
  */
959
- ApproximateDurationSeconds?: number;
959
+ ApproximateDurationSeconds?: number | undefined;
960
960
  /**
961
961
  * <p>The approximate time that the ad will start playing.</p>
962
962
  * @public
963
963
  */
964
- ApproximateStartTime?: Date;
964
+ ApproximateStartTime?: Date | undefined;
965
965
  /**
966
966
  * <p>The name of the source location containing the VOD source used for the ad break.</p>
967
967
  * @public
968
968
  */
969
- SourceLocationName?: string;
969
+ SourceLocationName?: string | undefined;
970
970
  /**
971
971
  * <p>The name of the VOD source used for the ad break.</p>
972
972
  * @public
973
973
  */
974
- VodSourceName?: string;
974
+ VodSourceName?: string | undefined;
975
975
  }
976
976
  /**
977
977
  * @public
@@ -995,12 +995,12 @@ export interface ScheduleEntry {
995
995
  * <p>The approximate duration of this program, in seconds.</p>
996
996
  * @public
997
997
  */
998
- ApproximateDurationSeconds?: number;
998
+ ApproximateDurationSeconds?: number | undefined;
999
999
  /**
1000
1000
  * <p>The approximate time that the program will start playing.</p>
1001
1001
  * @public
1002
1002
  */
1003
- ApproximateStartTime?: Date;
1003
+ ApproximateStartTime?: Date | undefined;
1004
1004
  /**
1005
1005
  * <p>The ARN of the program.</p>
1006
1006
  * @public
@@ -1015,7 +1015,7 @@ export interface ScheduleEntry {
1015
1015
  * <p>The name of the live source used for the program.</p>
1016
1016
  * @public
1017
1017
  */
1018
- LiveSourceName?: string;
1018
+ LiveSourceName?: string | undefined;
1019
1019
  /**
1020
1020
  * <p>The name of the program.</p>
1021
1021
  * @public
@@ -1025,12 +1025,12 @@ export interface ScheduleEntry {
1025
1025
  * <p>The schedule's ad break properties.</p>
1026
1026
  * @public
1027
1027
  */
1028
- ScheduleAdBreaks?: ScheduleAdBreak[];
1028
+ ScheduleAdBreaks?: ScheduleAdBreak[] | undefined;
1029
1029
  /**
1030
1030
  * <p>The type of schedule entry.</p>
1031
1031
  * @public
1032
1032
  */
1033
- ScheduleEntryType?: ScheduleEntryType;
1033
+ ScheduleEntryType?: ScheduleEntryType | undefined;
1034
1034
  /**
1035
1035
  * <p>The name of the source location.</p>
1036
1036
  * @public
@@ -1040,12 +1040,12 @@ export interface ScheduleEntry {
1040
1040
  * <p>The name of the VOD source.</p>
1041
1041
  * @public
1042
1042
  */
1043
- VodSourceName?: string;
1043
+ VodSourceName?: string | undefined;
1044
1044
  /**
1045
1045
  * <p>The list of audiences defined in ScheduleEntry.</p>
1046
1046
  * @public
1047
1047
  */
1048
- Audiences?: string[];
1048
+ Audiences?: string[] | undefined;
1049
1049
  }
1050
1050
  /**
1051
1051
  * <p>The segment delivery configuration settings.</p>
@@ -1056,12 +1056,12 @@ export interface SegmentDeliveryConfiguration {
1056
1056
  * <p>The base URL of the host or path of the segment delivery server that you're using to serve segments. This is typically a content delivery network (CDN). The URL can be absolute or relative. To use an absolute URL include the protocol, such as <code>https://example.com/some/path</code>. To use a relative URL specify the relative path, such as <code>/some/path*</code>.</p>
1057
1057
  * @public
1058
1058
  */
1059
- BaseUrl?: string;
1059
+ BaseUrl?: string | undefined;
1060
1060
  /**
1061
1061
  * <p>A unique identifier used to distinguish between multiple segment delivery configurations in a source location.</p>
1062
1062
  * @public
1063
1063
  */
1064
- Name?: string;
1064
+ Name?: string | undefined;
1065
1065
  }
1066
1066
  /**
1067
1067
  * @public
@@ -1085,17 +1085,17 @@ export interface SecretsManagerAccessTokenConfiguration {
1085
1085
  * <p>The name of the HTTP header used to supply the access token in requests to the source location.</p>
1086
1086
  * @public
1087
1087
  */
1088
- HeaderName?: string;
1088
+ HeaderName?: string | undefined;
1089
1089
  /**
1090
1090
  * <p>The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the access token.</p>
1091
1091
  * @public
1092
1092
  */
1093
- SecretArn?: string;
1093
+ SecretArn?: string | undefined;
1094
1094
  /**
1095
1095
  * <p>The AWS Secrets Manager <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_CreateSecret.html#SecretsManager-CreateSecret-request-SecretString.html">SecretString</a> key associated with the access token. MediaTailor uses the key to look up SecretString key and value pair containing the access token.</p>
1096
1096
  * @public
1097
1097
  */
1098
- SecretStringKey?: string;
1098
+ SecretStringKey?: string | undefined;
1099
1099
  }
1100
1100
  /**
1101
1101
  * <p>Access configuration parameters.</p>
@@ -1122,12 +1122,12 @@ export interface AccessConfiguration {
1122
1122
  * <p>• The caller of the API must have <code>s3:GetObject</code> IAM permissions to read all top level manifests referenced by your MediaTailor <code>VodSource</code> packaging configurations.</p>
1123
1123
  * @public
1124
1124
  */
1125
- AccessType?: AccessType;
1125
+ AccessType?: AccessType | undefined;
1126
1126
  /**
1127
1127
  * <p>AWS Secrets Manager access token configuration parameters.</p>
1128
1128
  * @public
1129
1129
  */
1130
- SecretsManagerAccessTokenConfiguration?: SecretsManagerAccessTokenConfiguration;
1130
+ SecretsManagerAccessTokenConfiguration?: SecretsManagerAccessTokenConfiguration | undefined;
1131
1131
  }
1132
1132
  /**
1133
1133
  * <p>The optional configuration for a server that serves segments. Use this if you want the segment delivery server to be different from the source location server. For example, you can configure your source location server to be an origination server, such as MediaPackage, and the segment delivery server to be a content delivery network (CDN), such as CloudFront. If you don't specify a segment delivery server, then the source location server is used.</p>
@@ -1138,7 +1138,7 @@ export interface DefaultSegmentDeliveryConfiguration {
1138
1138
  * <p>The hostname of the server that will be used to serve segments. This string must include the protocol, such as <b>https://</b>.</p>
1139
1139
  * @public
1140
1140
  */
1141
- BaseUrl?: string;
1141
+ BaseUrl?: string | undefined;
1142
1142
  }
1143
1143
  /**
1144
1144
  * <p>The HTTP configuration for the source location.</p>
@@ -1160,7 +1160,7 @@ export interface SourceLocation {
1160
1160
  * <p>The access configuration for the source location.</p>
1161
1161
  * @public
1162
1162
  */
1163
- AccessConfiguration?: AccessConfiguration;
1163
+ AccessConfiguration?: AccessConfiguration | undefined;
1164
1164
  /**
1165
1165
  * <p>The ARN of the SourceLocation.</p>
1166
1166
  * @public
@@ -1170,12 +1170,12 @@ export interface SourceLocation {
1170
1170
  * <p>The timestamp that indicates when the source location was created.</p>
1171
1171
  * @public
1172
1172
  */
1173
- CreationTime?: Date;
1173
+ CreationTime?: Date | undefined;
1174
1174
  /**
1175
1175
  * <p>The default segment delivery configuration.</p>
1176
1176
  * @public
1177
1177
  */
1178
- DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration;
1178
+ DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration | undefined;
1179
1179
  /**
1180
1180
  * <p>The HTTP configuration for the source location.</p>
1181
1181
  * @public
@@ -1185,12 +1185,12 @@ export interface SourceLocation {
1185
1185
  * <p>The timestamp that indicates when the source location was last modified.</p>
1186
1186
  * @public
1187
1187
  */
1188
- LastModifiedTime?: Date;
1188
+ LastModifiedTime?: Date | undefined;
1189
1189
  /**
1190
1190
  * <p>The segment delivery configurations for the source location.</p>
1191
1191
  * @public
1192
1192
  */
1193
- SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
1193
+ SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[] | undefined;
1194
1194
  /**
1195
1195
  * <p>The name of the source location.</p>
1196
1196
  * @public
@@ -1200,7 +1200,7 @@ export interface SourceLocation {
1200
1200
  * <p>The tags assigned to the source location. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
1201
1201
  * @public
1202
1202
  */
1203
- Tags?: Record<string, string>;
1203
+ Tags?: Record<string, string> | undefined;
1204
1204
  }
1205
1205
  /**
1206
1206
  * <p>VOD source configuration parameters.</p>
@@ -1216,7 +1216,7 @@ export interface VodSource {
1216
1216
  * <p>The timestamp that indicates when the VOD source was created.</p>
1217
1217
  * @public
1218
1218
  */
1219
- CreationTime?: Date;
1219
+ CreationTime?: Date | undefined;
1220
1220
  /**
1221
1221
  * <p>The HTTP package configurations for the VOD source.</p>
1222
1222
  * @public
@@ -1226,7 +1226,7 @@ export interface VodSource {
1226
1226
  * <p>The timestamp that indicates when the VOD source was last modified.</p>
1227
1227
  * @public
1228
1228
  */
1229
- LastModifiedTime?: Date;
1229
+ LastModifiedTime?: Date | undefined;
1230
1230
  /**
1231
1231
  * <p>The name of the source location that the VOD source is associated with.</p>
1232
1232
  * @public
@@ -1236,7 +1236,7 @@ export interface VodSource {
1236
1236
  * <p>The tags assigned to the VOD source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
1237
1237
  * @public
1238
1238
  */
1239
- Tags?: Record<string, string>;
1239
+ Tags?: Record<string, string> | undefined;
1240
1240
  /**
1241
1241
  * <p>The name of the VOD source.</p>
1242
1242
  * @public
@@ -1261,7 +1261,7 @@ export interface AdBreakOpportunity {
1261
1261
  export declare class BadRequestException extends __BaseException {
1262
1262
  readonly name: "BadRequestException";
1263
1263
  readonly $fault: "client";
1264
- Message?: string;
1264
+ Message?: string | undefined;
1265
1265
  /**
1266
1266
  * @internal
1267
1267
  */
@@ -1300,7 +1300,7 @@ export interface GetChannelPolicyResponse {
1300
1300
  * <p>The IAM policy for the channel. IAM policies are used to control access to your channel.</p>
1301
1301
  * @public
1302
1302
  */
1303
- Policy?: string;
1303
+ Policy?: string | undefined;
1304
1304
  }
1305
1305
  /**
1306
1306
  * @public
@@ -1345,12 +1345,12 @@ export interface ConfigureLogsForChannelResponse {
1345
1345
  * <p>The name of the channel.</p>
1346
1346
  * @public
1347
1347
  */
1348
- ChannelName?: string;
1348
+ ChannelName?: string | undefined;
1349
1349
  /**
1350
1350
  * <p>The types of logs collected.</p>
1351
1351
  * @public
1352
1352
  */
1353
- LogTypes?: LogType[];
1353
+ LogTypes?: LogType[] | undefined;
1354
1354
  }
1355
1355
  /**
1356
1356
  * <p>The output configuration for this channel.</p>
@@ -1361,12 +1361,12 @@ export interface RequestOutputItem {
1361
1361
  * <p>DASH manifest configuration parameters.</p>
1362
1362
  * @public
1363
1363
  */
1364
- DashPlaylistSettings?: DashPlaylistSettings;
1364
+ DashPlaylistSettings?: DashPlaylistSettings | undefined;
1365
1365
  /**
1366
1366
  * <p>HLS playlist configuration parameters.</p>
1367
1367
  * @public
1368
1368
  */
1369
- HlsPlaylistSettings?: HlsPlaylistSettings;
1369
+ HlsPlaylistSettings?: HlsPlaylistSettings | undefined;
1370
1370
  /**
1371
1371
  * <p>The name of the manifest for the channel. The name appears in the <code>PlaybackUrl</code>.</p>
1372
1372
  * @public
@@ -1433,7 +1433,7 @@ export interface CreateChannelRequest {
1433
1433
  * <code>PlaybackMode</code>.</p>
1434
1434
  * @public
1435
1435
  */
1436
- FillerSlate?: SlateSource;
1436
+ FillerSlate?: SlateSource | undefined;
1437
1437
  /**
1438
1438
  * <p>The channel's output properties.</p>
1439
1439
  * @public
@@ -1452,24 +1452,24 @@ export interface CreateChannelRequest {
1452
1452
  * <p>The tags to assign to the channel. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
1453
1453
  * @public
1454
1454
  */
1455
- Tags?: Record<string, string>;
1455
+ Tags?: Record<string, string> | undefined;
1456
1456
  /**
1457
1457
  * <p>The tier of the channel.</p>
1458
1458
  * @public
1459
1459
  */
1460
- Tier?: Tier;
1460
+ Tier?: Tier | undefined;
1461
1461
  /**
1462
1462
  * <p>
1463
1463
  * The time-shifted viewing configuration you want to associate to the channel.
1464
1464
  * </p>
1465
1465
  * @public
1466
1466
  */
1467
- TimeShiftConfiguration?: TimeShiftConfiguration;
1467
+ TimeShiftConfiguration?: TimeShiftConfiguration | undefined;
1468
1468
  /**
1469
1469
  * <p>The list of audiences defined in channel.</p>
1470
1470
  * @public
1471
1471
  */
1472
- Audiences?: string[];
1472
+ Audiences?: string[] | undefined;
1473
1473
  }
1474
1474
  /**
1475
1475
  * @public
@@ -1491,64 +1491,64 @@ export interface CreateChannelResponse {
1491
1491
  * <p>The Amazon Resource Name (ARN) to assign to the channel.</p>
1492
1492
  * @public
1493
1493
  */
1494
- Arn?: string;
1494
+ Arn?: string | undefined;
1495
1495
  /**
1496
1496
  * <p>The name to assign to the channel.</p>
1497
1497
  * @public
1498
1498
  */
1499
- ChannelName?: string;
1499
+ ChannelName?: string | undefined;
1500
1500
  /**
1501
1501
  * <p>Indicates whether the channel is in a running state or not.</p>
1502
1502
  * @public
1503
1503
  */
1504
- ChannelState?: ChannelState;
1504
+ ChannelState?: ChannelState | undefined;
1505
1505
  /**
1506
1506
  * <p>The timestamp of when the channel was created.</p>
1507
1507
  * @public
1508
1508
  */
1509
- CreationTime?: Date;
1509
+ CreationTime?: Date | undefined;
1510
1510
  /**
1511
1511
  * <p>Contains information about the slate used to fill gaps between programs in the schedule.</p>
1512
1512
  * @public
1513
1513
  */
1514
- FillerSlate?: SlateSource;
1514
+ FillerSlate?: SlateSource | undefined;
1515
1515
  /**
1516
1516
  * <p>The timestamp of when the channel was last modified.</p>
1517
1517
  * @public
1518
1518
  */
1519
- LastModifiedTime?: Date;
1519
+ LastModifiedTime?: Date | undefined;
1520
1520
  /**
1521
1521
  * <p>The output properties to assign to the channel.</p>
1522
1522
  * @public
1523
1523
  */
1524
- Outputs?: ResponseOutputItem[];
1524
+ Outputs?: ResponseOutputItem[] | undefined;
1525
1525
  /**
1526
1526
  * <p>The playback mode to assign to the channel.</p>
1527
1527
  * @public
1528
1528
  */
1529
- PlaybackMode?: string;
1529
+ PlaybackMode?: string | undefined;
1530
1530
  /**
1531
1531
  * <p>The tags to assign to the channel. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
1532
1532
  * @public
1533
1533
  */
1534
- Tags?: Record<string, string>;
1534
+ Tags?: Record<string, string> | undefined;
1535
1535
  /**
1536
1536
  * <p>The tier of the channel.</p>
1537
1537
  * @public
1538
1538
  */
1539
- Tier?: string;
1539
+ Tier?: string | undefined;
1540
1540
  /**
1541
1541
  * <p>
1542
1542
  * The time-shifted viewing configuration assigned to the channel.
1543
1543
  * </p>
1544
1544
  * @public
1545
1545
  */
1546
- TimeShiftConfiguration?: TimeShiftConfiguration;
1546
+ TimeShiftConfiguration?: TimeShiftConfiguration | undefined;
1547
1547
  /**
1548
1548
  * <p>The list of audiences defined in channel.</p>
1549
1549
  * @public
1550
1550
  */
1551
- Audiences?: string[];
1551
+ Audiences?: string[] | undefined;
1552
1552
  }
1553
1553
  /**
1554
1554
  * @public
@@ -1583,52 +1583,52 @@ export interface DescribeChannelResponse {
1583
1583
  * <p>The ARN of the channel.</p>
1584
1584
  * @public
1585
1585
  */
1586
- Arn?: string;
1586
+ Arn?: string | undefined;
1587
1587
  /**
1588
1588
  * <p>The name of the channel.</p>
1589
1589
  * @public
1590
1590
  */
1591
- ChannelName?: string;
1591
+ ChannelName?: string | undefined;
1592
1592
  /**
1593
1593
  * <p>Indicates whether the channel is in a running state or not.</p>
1594
1594
  * @public
1595
1595
  */
1596
- ChannelState?: ChannelState;
1596
+ ChannelState?: ChannelState | undefined;
1597
1597
  /**
1598
1598
  * <p>The timestamp of when the channel was created.</p>
1599
1599
  * @public
1600
1600
  */
1601
- CreationTime?: Date;
1601
+ CreationTime?: Date | undefined;
1602
1602
  /**
1603
1603
  * <p>Contains information about the slate used to fill gaps between programs in the schedule.</p>
1604
1604
  * @public
1605
1605
  */
1606
- FillerSlate?: SlateSource;
1606
+ FillerSlate?: SlateSource | undefined;
1607
1607
  /**
1608
1608
  * <p>The timestamp of when the channel was last modified.</p>
1609
1609
  * @public
1610
1610
  */
1611
- LastModifiedTime?: Date;
1611
+ LastModifiedTime?: Date | undefined;
1612
1612
  /**
1613
1613
  * <p>The channel's output properties.</p>
1614
1614
  * @public
1615
1615
  */
1616
- Outputs?: ResponseOutputItem[];
1616
+ Outputs?: ResponseOutputItem[] | undefined;
1617
1617
  /**
1618
1618
  * <p>The channel's playback mode.</p>
1619
1619
  * @public
1620
1620
  */
1621
- PlaybackMode?: string;
1621
+ PlaybackMode?: string | undefined;
1622
1622
  /**
1623
1623
  * <p>The tags assigned to the channel. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
1624
1624
  * @public
1625
1625
  */
1626
- Tags?: Record<string, string>;
1626
+ Tags?: Record<string, string> | undefined;
1627
1627
  /**
1628
1628
  * <p>The channel's tier.</p>
1629
1629
  * @public
1630
1630
  */
1631
- Tier?: string;
1631
+ Tier?: string | undefined;
1632
1632
  /**
1633
1633
  * <p>The log configuration for the channel.</p>
1634
1634
  * @public
@@ -1640,12 +1640,12 @@ export interface DescribeChannelResponse {
1640
1640
  * </p>
1641
1641
  * @public
1642
1642
  */
1643
- TimeShiftConfiguration?: TimeShiftConfiguration;
1643
+ TimeShiftConfiguration?: TimeShiftConfiguration | undefined;
1644
1644
  /**
1645
1645
  * <p>The list of audiences defined in channel.</p>
1646
1646
  * @public
1647
1647
  */
1648
- Audiences?: string[];
1648
+ Audiences?: string[] | undefined;
1649
1649
  }
1650
1650
  /**
1651
1651
  * @public
@@ -1660,12 +1660,12 @@ export interface GetChannelScheduleRequest {
1660
1660
  * <p>The duration in minutes of the channel schedule.</p>
1661
1661
  * @public
1662
1662
  */
1663
- DurationMinutes?: string;
1663
+ DurationMinutes?: string | undefined;
1664
1664
  /**
1665
1665
  * <p>The maximum number of channel schedules that you want MediaTailor to return in response to the current request. If there are more than <code>MaxResults</code> channel schedules, use the value of <code>NextToken</code> in the response to get the next page of results.</p>
1666
1666
  * @public
1667
1667
  */
1668
- MaxResults?: number;
1668
+ MaxResults?: number | undefined;
1669
1669
  /**
1670
1670
  * <p>(Optional) If the playback configuration has more than <code>MaxResults</code> channel schedules, use <code>NextToken</code> to get the second and subsequent pages of results.</p>
1671
1671
  * <p>For the first <code>GetChannelScheduleRequest</code> request, omit this value.</p>
@@ -1673,12 +1673,12 @@ export interface GetChannelScheduleRequest {
1673
1673
  * <p>If the previous response didn't include a <code>NextToken</code> element, there are no more channel schedules to get.</p>
1674
1674
  * @public
1675
1675
  */
1676
- NextToken?: string;
1676
+ NextToken?: string | undefined;
1677
1677
  /**
1678
1678
  * <p>The single audience for GetChannelScheduleRequest.</p>
1679
1679
  * @public
1680
1680
  */
1681
- Audience?: string;
1681
+ Audience?: string | undefined;
1682
1682
  }
1683
1683
  /**
1684
1684
  * @public
@@ -1688,12 +1688,12 @@ export interface GetChannelScheduleResponse {
1688
1688
  * <p>A list of schedule entries for the channel.</p>
1689
1689
  * @public
1690
1690
  */
1691
- Items?: ScheduleEntry[];
1691
+ Items?: ScheduleEntry[] | undefined;
1692
1692
  /**
1693
1693
  * <p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
1694
1694
  * @public
1695
1695
  */
1696
- NextToken?: string;
1696
+ NextToken?: string | undefined;
1697
1697
  }
1698
1698
  /**
1699
1699
  * @public
@@ -1703,12 +1703,12 @@ export interface ListChannelsRequest {
1703
1703
  * <p>The maximum number of channels that you want MediaTailor to return in response to the current request. If there are more than <code>MaxResults</code> channels, use the value of <code>NextToken</code> in the response to get the next page of results.</p>
1704
1704
  * @public
1705
1705
  */
1706
- MaxResults?: number;
1706
+ MaxResults?: number | undefined;
1707
1707
  /**
1708
1708
  * <p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
1709
1709
  * @public
1710
1710
  */
1711
- NextToken?: string;
1711
+ NextToken?: string | undefined;
1712
1712
  }
1713
1713
  /**
1714
1714
  * @public
@@ -1718,12 +1718,12 @@ export interface ListChannelsResponse {
1718
1718
  * <p>A list of channels that are associated with this account.</p>
1719
1719
  * @public
1720
1720
  */
1721
- Items?: Channel[];
1721
+ Items?: Channel[] | undefined;
1722
1722
  /**
1723
1723
  * <p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
1724
1724
  * @public
1725
1725
  */
1726
- NextToken?: string;
1726
+ NextToken?: string | undefined;
1727
1727
  }
1728
1728
  /**
1729
1729
  * @public
@@ -1746,7 +1746,7 @@ export interface Transition {
1746
1746
  * <p>The duration of the live program in seconds.</p>
1747
1747
  * @public
1748
1748
  */
1749
- DurationMillis?: number;
1749
+ DurationMillis?: number | undefined;
1750
1750
  /**
1751
1751
  * <p>The position where this program will be inserted relative to the <code>RelativePosition</code>.</p>
1752
1752
  * @public
@@ -1756,12 +1756,12 @@ export interface Transition {
1756
1756
  * <p>The name of the program that this program will be inserted next to, as defined by <code>RelativePosition</code>.</p>
1757
1757
  * @public
1758
1758
  */
1759
- RelativeProgram?: string;
1759
+ RelativeProgram?: string | undefined;
1760
1760
  /**
1761
1761
  * <p>The date and time that the program is scheduled to start, in epoch milliseconds.</p>
1762
1762
  * @public
1763
1763
  */
1764
- ScheduledStartTimeMillis?: number;
1764
+ ScheduledStartTimeMillis?: number | undefined;
1765
1765
  /**
1766
1766
  * <p>Defines when the program plays in the schedule. You can set the value to <code>ABSOLUTE</code> or <code>RELATIVE</code>.</p>
1767
1767
  * <p>
@@ -1790,7 +1790,7 @@ export interface ScheduleConfiguration {
1790
1790
  * <p>Program clip range configuration.</p>
1791
1791
  * @public
1792
1792
  */
1793
- ClipRange?: ClipRange;
1793
+ ClipRange?: ClipRange | undefined;
1794
1794
  }
1795
1795
  /**
1796
1796
  * @public
@@ -1800,7 +1800,7 @@ export interface CreateProgramRequest {
1800
1800
  * <p>The ad break configuration settings.</p>
1801
1801
  * @public
1802
1802
  */
1803
- AdBreaks?: AdBreak[];
1803
+ AdBreaks?: AdBreak[] | undefined;
1804
1804
  /**
1805
1805
  * <p>The name of the channel for this Program.</p>
1806
1806
  * @public
@@ -1810,7 +1810,7 @@ export interface CreateProgramRequest {
1810
1810
  * <p>The name of the LiveSource for this Program.</p>
1811
1811
  * @public
1812
1812
  */
1813
- LiveSourceName?: string;
1813
+ LiveSourceName?: string | undefined;
1814
1814
  /**
1815
1815
  * <p>The name of the Program.</p>
1816
1816
  * @public
@@ -1830,12 +1830,12 @@ export interface CreateProgramRequest {
1830
1830
  * <p>The name that's used to refer to a VOD source.</p>
1831
1831
  * @public
1832
1832
  */
1833
- VodSourceName?: string;
1833
+ VodSourceName?: string | undefined;
1834
1834
  /**
1835
1835
  * <p>The list of AudienceMedia defined in program.</p>
1836
1836
  * @public
1837
1837
  */
1838
- AudienceMedia?: AudienceMedia[];
1838
+ AudienceMedia?: AudienceMedia[] | undefined;
1839
1839
  }
1840
1840
  /**
1841
1841
  * @public
@@ -1845,62 +1845,62 @@ export interface CreateProgramResponse {
1845
1845
  * <p>The ad break configuration settings.</p>
1846
1846
  * @public
1847
1847
  */
1848
- AdBreaks?: AdBreak[];
1848
+ AdBreaks?: AdBreak[] | undefined;
1849
1849
  /**
1850
1850
  * <p>The ARN to assign to the program.</p>
1851
1851
  * @public
1852
1852
  */
1853
- Arn?: string;
1853
+ Arn?: string | undefined;
1854
1854
  /**
1855
1855
  * <p>The name to assign to the channel for this program.</p>
1856
1856
  * @public
1857
1857
  */
1858
- ChannelName?: string;
1858
+ ChannelName?: string | undefined;
1859
1859
  /**
1860
1860
  * <p>The time the program was created.</p>
1861
1861
  * @public
1862
1862
  */
1863
- CreationTime?: Date;
1863
+ CreationTime?: Date | undefined;
1864
1864
  /**
1865
1865
  * <p>The name of the LiveSource for this Program.</p>
1866
1866
  * @public
1867
1867
  */
1868
- LiveSourceName?: string;
1868
+ LiveSourceName?: string | undefined;
1869
1869
  /**
1870
1870
  * <p>The name to assign to this program.</p>
1871
1871
  * @public
1872
1872
  */
1873
- ProgramName?: string;
1873
+ ProgramName?: string | undefined;
1874
1874
  /**
1875
1875
  * <p>The scheduled start time for this Program.</p>
1876
1876
  * @public
1877
1877
  */
1878
- ScheduledStartTime?: Date;
1878
+ ScheduledStartTime?: Date | undefined;
1879
1879
  /**
1880
1880
  * <p>The name to assign to the source location for this program.</p>
1881
1881
  * @public
1882
1882
  */
1883
- SourceLocationName?: string;
1883
+ SourceLocationName?: string | undefined;
1884
1884
  /**
1885
1885
  * <p>The name that's used to refer to a VOD source.</p>
1886
1886
  * @public
1887
1887
  */
1888
- VodSourceName?: string;
1888
+ VodSourceName?: string | undefined;
1889
1889
  /**
1890
1890
  * <p>The clip range configuration settings.</p>
1891
1891
  * @public
1892
1892
  */
1893
- ClipRange?: ClipRange;
1893
+ ClipRange?: ClipRange | undefined;
1894
1894
  /**
1895
1895
  * <p>The duration of the live program in milliseconds.</p>
1896
1896
  * @public
1897
1897
  */
1898
- DurationMillis?: number;
1898
+ DurationMillis?: number | undefined;
1899
1899
  /**
1900
1900
  * <p>The list of AudienceMedia defined in program.</p>
1901
1901
  * @public
1902
1902
  */
1903
- AudienceMedia?: AudienceMedia[];
1903
+ AudienceMedia?: AudienceMedia[] | undefined;
1904
1904
  }
1905
1905
  /**
1906
1906
  * @public
@@ -1945,62 +1945,62 @@ export interface DescribeProgramResponse {
1945
1945
  * <p>The ad break configuration settings.</p>
1946
1946
  * @public
1947
1947
  */
1948
- AdBreaks?: AdBreak[];
1948
+ AdBreaks?: AdBreak[] | undefined;
1949
1949
  /**
1950
1950
  * <p>The ARN of the program.</p>
1951
1951
  * @public
1952
1952
  */
1953
- Arn?: string;
1953
+ Arn?: string | undefined;
1954
1954
  /**
1955
1955
  * <p>The name of the channel that the program belongs to.</p>
1956
1956
  * @public
1957
1957
  */
1958
- ChannelName?: string;
1958
+ ChannelName?: string | undefined;
1959
1959
  /**
1960
1960
  * <p>The timestamp of when the program was created.</p>
1961
1961
  * @public
1962
1962
  */
1963
- CreationTime?: Date;
1963
+ CreationTime?: Date | undefined;
1964
1964
  /**
1965
1965
  * <p>The name of the LiveSource for this Program.</p>
1966
1966
  * @public
1967
1967
  */
1968
- LiveSourceName?: string;
1968
+ LiveSourceName?: string | undefined;
1969
1969
  /**
1970
1970
  * <p>The name of the program.</p>
1971
1971
  * @public
1972
1972
  */
1973
- ProgramName?: string;
1973
+ ProgramName?: string | undefined;
1974
1974
  /**
1975
1975
  * <p>The date and time that the program is scheduled to start in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751 UTC.</p>
1976
1976
  * @public
1977
1977
  */
1978
- ScheduledStartTime?: Date;
1978
+ ScheduledStartTime?: Date | undefined;
1979
1979
  /**
1980
1980
  * <p>The source location name.</p>
1981
1981
  * @public
1982
1982
  */
1983
- SourceLocationName?: string;
1983
+ SourceLocationName?: string | undefined;
1984
1984
  /**
1985
1985
  * <p>The name that's used to refer to a VOD source.</p>
1986
1986
  * @public
1987
1987
  */
1988
- VodSourceName?: string;
1988
+ VodSourceName?: string | undefined;
1989
1989
  /**
1990
1990
  * <p>The clip range configuration settings.</p>
1991
1991
  * @public
1992
1992
  */
1993
- ClipRange?: ClipRange;
1993
+ ClipRange?: ClipRange | undefined;
1994
1994
  /**
1995
1995
  * <p>The duration of the live program in milliseconds.</p>
1996
1996
  * @public
1997
1997
  */
1998
- DurationMillis?: number;
1998
+ DurationMillis?: number | undefined;
1999
1999
  /**
2000
2000
  * <p>The list of AudienceMedia defined in program.</p>
2001
2001
  * @public
2002
2002
  */
2003
- AudienceMedia?: AudienceMedia[];
2003
+ AudienceMedia?: AudienceMedia[] | undefined;
2004
2004
  }
2005
2005
  /**
2006
2006
  * <p>Program transition configuration.</p>
@@ -2011,12 +2011,12 @@ export interface UpdateProgramTransition {
2011
2011
  * <p>The date and time that the program is scheduled to start, in epoch milliseconds.</p>
2012
2012
  * @public
2013
2013
  */
2014
- ScheduledStartTimeMillis?: number;
2014
+ ScheduledStartTimeMillis?: number | undefined;
2015
2015
  /**
2016
2016
  * <p>The duration of the live program in seconds.</p>
2017
2017
  * @public
2018
2018
  */
2019
- DurationMillis?: number;
2019
+ DurationMillis?: number | undefined;
2020
2020
  }
2021
2021
  /**
2022
2022
  * <p>Schedule configuration parameters.</p>
@@ -2027,12 +2027,12 @@ export interface UpdateProgramScheduleConfiguration {
2027
2027
  * <p>Program transition configuration.</p>
2028
2028
  * @public
2029
2029
  */
2030
- Transition?: UpdateProgramTransition;
2030
+ Transition?: UpdateProgramTransition | undefined;
2031
2031
  /**
2032
2032
  * <p>Program clip range configuration.</p>
2033
2033
  * @public
2034
2034
  */
2035
- ClipRange?: ClipRange;
2035
+ ClipRange?: ClipRange | undefined;
2036
2036
  }
2037
2037
  /**
2038
2038
  * @public
@@ -2042,7 +2042,7 @@ export interface UpdateProgramRequest {
2042
2042
  * <p>The ad break configuration settings.</p>
2043
2043
  * @public
2044
2044
  */
2045
- AdBreaks?: AdBreak[];
2045
+ AdBreaks?: AdBreak[] | undefined;
2046
2046
  /**
2047
2047
  * <p>The name of the channel for this Program.</p>
2048
2048
  * @public
@@ -2062,7 +2062,7 @@ export interface UpdateProgramRequest {
2062
2062
  * <p>The list of AudienceMedia defined in program.</p>
2063
2063
  * @public
2064
2064
  */
2065
- AudienceMedia?: AudienceMedia[];
2065
+ AudienceMedia?: AudienceMedia[] | undefined;
2066
2066
  }
2067
2067
  /**
2068
2068
  * @public
@@ -2072,62 +2072,62 @@ export interface UpdateProgramResponse {
2072
2072
  * <p>The ad break configuration settings.</p>
2073
2073
  * @public
2074
2074
  */
2075
- AdBreaks?: AdBreak[];
2075
+ AdBreaks?: AdBreak[] | undefined;
2076
2076
  /**
2077
2077
  * <p>The ARN to assign to the program.</p>
2078
2078
  * @public
2079
2079
  */
2080
- Arn?: string;
2080
+ Arn?: string | undefined;
2081
2081
  /**
2082
2082
  * <p>The name to assign to the channel for this program.</p>
2083
2083
  * @public
2084
2084
  */
2085
- ChannelName?: string;
2085
+ ChannelName?: string | undefined;
2086
2086
  /**
2087
2087
  * <p>The time the program was created.</p>
2088
2088
  * @public
2089
2089
  */
2090
- CreationTime?: Date;
2090
+ CreationTime?: Date | undefined;
2091
2091
  /**
2092
2092
  * <p>The name to assign to this program.</p>
2093
2093
  * @public
2094
2094
  */
2095
- ProgramName?: string;
2095
+ ProgramName?: string | undefined;
2096
2096
  /**
2097
2097
  * <p>The name to assign to the source location for this program.</p>
2098
2098
  * @public
2099
2099
  */
2100
- SourceLocationName?: string;
2100
+ SourceLocationName?: string | undefined;
2101
2101
  /**
2102
2102
  * <p>The name that's used to refer to a VOD source.</p>
2103
2103
  * @public
2104
2104
  */
2105
- VodSourceName?: string;
2105
+ VodSourceName?: string | undefined;
2106
2106
  /**
2107
2107
  * <p>The name of the LiveSource for this Program.</p>
2108
2108
  * @public
2109
2109
  */
2110
- LiveSourceName?: string;
2110
+ LiveSourceName?: string | undefined;
2111
2111
  /**
2112
2112
  * <p>The clip range configuration settings.</p>
2113
2113
  * @public
2114
2114
  */
2115
- ClipRange?: ClipRange;
2115
+ ClipRange?: ClipRange | undefined;
2116
2116
  /**
2117
2117
  * <p>The duration of the live program in milliseconds.</p>
2118
2118
  * @public
2119
2119
  */
2120
- DurationMillis?: number;
2120
+ DurationMillis?: number | undefined;
2121
2121
  /**
2122
2122
  * <p>The scheduled start time for this Program.</p>
2123
2123
  * @public
2124
2124
  */
2125
- ScheduledStartTime?: Date;
2125
+ ScheduledStartTime?: Date | undefined;
2126
2126
  /**
2127
2127
  * <p>The list of AudienceMedia defined in program.</p>
2128
2128
  * @public
2129
2129
  */
2130
- AudienceMedia?: AudienceMedia[];
2130
+ AudienceMedia?: AudienceMedia[] | undefined;
2131
2131
  }
2132
2132
  /**
2133
2133
  * @public
@@ -2174,7 +2174,7 @@ export interface UpdateChannelRequest {
2174
2174
  * <code>PlaybackMode</code>.</p>
2175
2175
  * @public
2176
2176
  */
2177
- FillerSlate?: SlateSource;
2177
+ FillerSlate?: SlateSource | undefined;
2178
2178
  /**
2179
2179
  * <p>The channel's output properties.</p>
2180
2180
  * @public
@@ -2186,12 +2186,12 @@ export interface UpdateChannelRequest {
2186
2186
  * </p>
2187
2187
  * @public
2188
2188
  */
2189
- TimeShiftConfiguration?: TimeShiftConfiguration;
2189
+ TimeShiftConfiguration?: TimeShiftConfiguration | undefined;
2190
2190
  /**
2191
2191
  * <p>The list of audiences defined in channel.</p>
2192
2192
  * @public
2193
2193
  */
2194
- Audiences?: string[];
2194
+ Audiences?: string[] | undefined;
2195
2195
  }
2196
2196
  /**
2197
2197
  * @public
@@ -2201,39 +2201,39 @@ export interface UpdateChannelResponse {
2201
2201
  * <p>The Amazon Resource Name (ARN) associated with the channel.</p>
2202
2202
  * @public
2203
2203
  */
2204
- Arn?: string;
2204
+ Arn?: string | undefined;
2205
2205
  /**
2206
2206
  * <p>The name of the channel.</p>
2207
2207
  * @public
2208
2208
  */
2209
- ChannelName?: string;
2209
+ ChannelName?: string | undefined;
2210
2210
  /**
2211
2211
  * <p>Returns the state whether the channel is running or not.</p>
2212
2212
  * @public
2213
2213
  */
2214
- ChannelState?: ChannelState;
2214
+ ChannelState?: ChannelState | undefined;
2215
2215
  /**
2216
2216
  * <p>The timestamp of when the channel was created.</p>
2217
2217
  * @public
2218
2218
  */
2219
- CreationTime?: Date;
2219
+ CreationTime?: Date | undefined;
2220
2220
  /**
2221
2221
  * <p>The slate used to fill gaps between programs in the schedule. You must configure filler slate if your channel uses the <code>LINEAR</code>
2222
2222
  * <code>PlaybackMode</code>. MediaTailor doesn't support filler slate for channels using the <code>LOOP</code>
2223
2223
  * <code>PlaybackMode</code>.</p>
2224
2224
  * @public
2225
2225
  */
2226
- FillerSlate?: SlateSource;
2226
+ FillerSlate?: SlateSource | undefined;
2227
2227
  /**
2228
2228
  * <p>The timestamp that indicates when the channel was last modified.</p>
2229
2229
  * @public
2230
2230
  */
2231
- LastModifiedTime?: Date;
2231
+ LastModifiedTime?: Date | undefined;
2232
2232
  /**
2233
2233
  * <p>The channel's output properties.</p>
2234
2234
  * @public
2235
2235
  */
2236
- Outputs?: ResponseOutputItem[];
2236
+ Outputs?: ResponseOutputItem[] | undefined;
2237
2237
  /**
2238
2238
  * <p>The type of playback mode for this channel.</p>
2239
2239
  * <p>
@@ -2242,29 +2242,29 @@ export interface UpdateChannelResponse {
2242
2242
  * <code>LOOP</code> - Programs play back-to-back in an endless loop. When the last program in the schedule plays, playback loops back to the first program in the schedule.</p>
2243
2243
  * @public
2244
2244
  */
2245
- PlaybackMode?: string;
2245
+ PlaybackMode?: string | undefined;
2246
2246
  /**
2247
2247
  * <p>The tags to assign to the channel. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
2248
2248
  * @public
2249
2249
  */
2250
- Tags?: Record<string, string>;
2250
+ Tags?: Record<string, string> | undefined;
2251
2251
  /**
2252
2252
  * <p>The tier associated with this Channel.</p>
2253
2253
  * @public
2254
2254
  */
2255
- Tier?: string;
2255
+ Tier?: string | undefined;
2256
2256
  /**
2257
2257
  * <p>
2258
2258
  * The time-shifted viewing configuration for the channel.
2259
2259
  * </p>
2260
2260
  * @public
2261
2261
  */
2262
- TimeShiftConfiguration?: TimeShiftConfiguration;
2262
+ TimeShiftConfiguration?: TimeShiftConfiguration | undefined;
2263
2263
  /**
2264
2264
  * <p>The list of audiences defined in channel.</p>
2265
2265
  * @public
2266
2266
  */
2267
- Audiences?: string[];
2267
+ Audiences?: string[] | undefined;
2268
2268
  }
2269
2269
  /**
2270
2270
  * <p>Configures Amazon CloudWatch log settings for a playback configuration.</p>
@@ -2297,7 +2297,7 @@ export interface ConfigureLogsForPlaybackConfigurationResponse {
2297
2297
  * <p>The name of the playback configuration.</p>
2298
2298
  * @public
2299
2299
  */
2300
- PlaybackConfigurationName?: string;
2300
+ PlaybackConfigurationName?: string | undefined;
2301
2301
  }
2302
2302
  /**
2303
2303
  * @public
@@ -2322,7 +2322,7 @@ export interface CreateLiveSourceRequest {
2322
2322
  * <p>The tags to assign to the live source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
2323
2323
  * @public
2324
2324
  */
2325
- Tags?: Record<string, string>;
2325
+ Tags?: Record<string, string> | undefined;
2326
2326
  }
2327
2327
  /**
2328
2328
  * @public
@@ -2332,37 +2332,37 @@ export interface CreateLiveSourceResponse {
2332
2332
  * <p>The ARN to assign to the live source.</p>
2333
2333
  * @public
2334
2334
  */
2335
- Arn?: string;
2335
+ Arn?: string | undefined;
2336
2336
  /**
2337
2337
  * <p>The time the live source was created.</p>
2338
2338
  * @public
2339
2339
  */
2340
- CreationTime?: Date;
2340
+ CreationTime?: Date | undefined;
2341
2341
  /**
2342
2342
  * <p>A list of HTTP package configuration parameters for this live source.</p>
2343
2343
  * @public
2344
2344
  */
2345
- HttpPackageConfigurations?: HttpPackageConfiguration[];
2345
+ HttpPackageConfigurations?: HttpPackageConfiguration[] | undefined;
2346
2346
  /**
2347
2347
  * <p>The time the live source was last modified.</p>
2348
2348
  * @public
2349
2349
  */
2350
- LastModifiedTime?: Date;
2350
+ LastModifiedTime?: Date | undefined;
2351
2351
  /**
2352
2352
  * <p>The name to assign to the live source.</p>
2353
2353
  * @public
2354
2354
  */
2355
- LiveSourceName?: string;
2355
+ LiveSourceName?: string | undefined;
2356
2356
  /**
2357
2357
  * <p>The name to assign to the source location of the live source.</p>
2358
2358
  * @public
2359
2359
  */
2360
- SourceLocationName?: string;
2360
+ SourceLocationName?: string | undefined;
2361
2361
  /**
2362
2362
  * <p>The tags to assign to the live source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
2363
2363
  * @public
2364
2364
  */
2365
- Tags?: Record<string, string>;
2365
+ Tags?: Record<string, string> | undefined;
2366
2366
  }
2367
2367
  /**
2368
2368
  * @public
@@ -2392,7 +2392,7 @@ export interface CreatePrefetchScheduleRequest {
2392
2392
  * <p>An optional stream identifier that MediaTailor uses to prefetch ads for multiple streams that use the same playback configuration. If <code>StreamId</code> is specified, MediaTailor returns all of the prefetch schedules with an exact match on <code>StreamId</code>. If not specified, MediaTailor returns all of the prefetch schedules for the playback configuration, regardless of <code>StreamId</code>.</p>
2393
2393
  * @public
2394
2394
  */
2395
- StreamId?: string;
2395
+ StreamId?: string | undefined;
2396
2396
  }
2397
2397
  /**
2398
2398
  * @public
@@ -2402,32 +2402,32 @@ export interface CreatePrefetchScheduleResponse {
2402
2402
  * <p>The ARN to assign to the prefetch schedule.</p>
2403
2403
  * @public
2404
2404
  */
2405
- Arn?: string;
2405
+ Arn?: string | undefined;
2406
2406
  /**
2407
2407
  * <p>The configuration settings for MediaTailor's <i>consumption</i> of the prefetched ads from the ad decision server. Each consumption configuration contains an end time and an optional start time that define the <i>consumption window</i>. Prefetch schedules automatically expire no earlier than seven days after the end time.</p>
2408
2408
  * @public
2409
2409
  */
2410
- Consumption?: PrefetchConsumption;
2410
+ Consumption?: PrefetchConsumption | undefined;
2411
2411
  /**
2412
2412
  * <p>The name to assign to the prefetch schedule.</p>
2413
2413
  * @public
2414
2414
  */
2415
- Name?: string;
2415
+ Name?: string | undefined;
2416
2416
  /**
2417
2417
  * <p>The name to assign to the playback configuration.</p>
2418
2418
  * @public
2419
2419
  */
2420
- PlaybackConfigurationName?: string;
2420
+ PlaybackConfigurationName?: string | undefined;
2421
2421
  /**
2422
2422
  * <p>The configuration settings for retrieval of prefetched ads from the ad decision server. Only one set of prefetched ads will be retrieved and subsequently consumed for each ad break.</p>
2423
2423
  * @public
2424
2424
  */
2425
- Retrieval?: PrefetchRetrieval;
2425
+ Retrieval?: PrefetchRetrieval | undefined;
2426
2426
  /**
2427
2427
  * <p>An optional stream identifier that MediaTailor uses to prefetch ads for multiple streams that use the same playback configuration. If <code>StreamId</code> is specified, MediaTailor returns all of the prefetch schedules with an exact match on <code>StreamId</code>. If not specified, MediaTailor returns all of the prefetch schedules for the playback configuration, regardless of <code>StreamId</code>.</p>
2428
2428
  * @public
2429
2429
  */
2430
- StreamId?: string;
2430
+ StreamId?: string | undefined;
2431
2431
  }
2432
2432
  /**
2433
2433
  * @public
@@ -2437,12 +2437,12 @@ export interface CreateSourceLocationRequest {
2437
2437
  * <p>Access configuration parameters. Configures the type of authentication used to access content from your source location.</p>
2438
2438
  * @public
2439
2439
  */
2440
- AccessConfiguration?: AccessConfiguration;
2440
+ AccessConfiguration?: AccessConfiguration | undefined;
2441
2441
  /**
2442
2442
  * <p>The optional configuration for the server that serves segments.</p>
2443
2443
  * @public
2444
2444
  */
2445
- DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration;
2445
+ DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration | undefined;
2446
2446
  /**
2447
2447
  * <p>The source's HTTP package configurations.</p>
2448
2448
  * @public
@@ -2452,7 +2452,7 @@ export interface CreateSourceLocationRequest {
2452
2452
  * <p>A list of the segment delivery configurations associated with this resource.</p>
2453
2453
  * @public
2454
2454
  */
2455
- SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
2455
+ SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[] | undefined;
2456
2456
  /**
2457
2457
  * <p>The name associated with the source location.</p>
2458
2458
  * @public
@@ -2462,7 +2462,7 @@ export interface CreateSourceLocationRequest {
2462
2462
  * <p>The tags to assign to the source location. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
2463
2463
  * @public
2464
2464
  */
2465
- Tags?: Record<string, string>;
2465
+ Tags?: Record<string, string> | undefined;
2466
2466
  }
2467
2467
  /**
2468
2468
  * @public
@@ -2472,47 +2472,47 @@ export interface CreateSourceLocationResponse {
2472
2472
  * <p>Access configuration parameters. Configures the type of authentication used to access content from your source location.</p>
2473
2473
  * @public
2474
2474
  */
2475
- AccessConfiguration?: AccessConfiguration;
2475
+ AccessConfiguration?: AccessConfiguration | undefined;
2476
2476
  /**
2477
2477
  * <p>The ARN to assign to the source location.</p>
2478
2478
  * @public
2479
2479
  */
2480
- Arn?: string;
2480
+ Arn?: string | undefined;
2481
2481
  /**
2482
2482
  * <p>The time the source location was created.</p>
2483
2483
  * @public
2484
2484
  */
2485
- CreationTime?: Date;
2485
+ CreationTime?: Date | undefined;
2486
2486
  /**
2487
2487
  * <p>The optional configuration for the server that serves segments.</p>
2488
2488
  * @public
2489
2489
  */
2490
- DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration;
2490
+ DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration | undefined;
2491
2491
  /**
2492
2492
  * <p>The source's HTTP package configurations.</p>
2493
2493
  * @public
2494
2494
  */
2495
- HttpConfiguration?: HttpConfiguration;
2495
+ HttpConfiguration?: HttpConfiguration | undefined;
2496
2496
  /**
2497
2497
  * <p>The time the source location was last modified.</p>
2498
2498
  * @public
2499
2499
  */
2500
- LastModifiedTime?: Date;
2500
+ LastModifiedTime?: Date | undefined;
2501
2501
  /**
2502
2502
  * <p>The segment delivery configurations for the source location. For information about MediaTailor configurations, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/configurations.html">Working with configurations in AWS Elemental MediaTailor</a>.</p>
2503
2503
  * @public
2504
2504
  */
2505
- SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
2505
+ SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[] | undefined;
2506
2506
  /**
2507
2507
  * <p>The name to assign to the source location.</p>
2508
2508
  * @public
2509
2509
  */
2510
- SourceLocationName?: string;
2510
+ SourceLocationName?: string | undefined;
2511
2511
  /**
2512
2512
  * <p>The tags to assign to the source location. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
2513
2513
  * @public
2514
2514
  */
2515
- Tags?: Record<string, string>;
2515
+ Tags?: Record<string, string> | undefined;
2516
2516
  }
2517
2517
  /**
2518
2518
  * @public
@@ -2532,7 +2532,7 @@ export interface CreateVodSourceRequest {
2532
2532
  * <p>The tags to assign to the VOD source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
2533
2533
  * @public
2534
2534
  */
2535
- Tags?: Record<string, string>;
2535
+ Tags?: Record<string, string> | undefined;
2536
2536
  /**
2537
2537
  * <p>The name associated with the VOD source.&gt;</p>
2538
2538
  * @public
@@ -2547,37 +2547,37 @@ export interface CreateVodSourceResponse {
2547
2547
  * <p>The ARN to assign to this VOD source.</p>
2548
2548
  * @public
2549
2549
  */
2550
- Arn?: string;
2550
+ Arn?: string | undefined;
2551
2551
  /**
2552
2552
  * <p>The time the VOD source was created.</p>
2553
2553
  * @public
2554
2554
  */
2555
- CreationTime?: Date;
2555
+ CreationTime?: Date | undefined;
2556
2556
  /**
2557
2557
  * <p>A list of HTTP package configuration parameters for this VOD source.</p>
2558
2558
  * @public
2559
2559
  */
2560
- HttpPackageConfigurations?: HttpPackageConfiguration[];
2560
+ HttpPackageConfigurations?: HttpPackageConfiguration[] | undefined;
2561
2561
  /**
2562
2562
  * <p>The time the VOD source was last modified.</p>
2563
2563
  * @public
2564
2564
  */
2565
- LastModifiedTime?: Date;
2565
+ LastModifiedTime?: Date | undefined;
2566
2566
  /**
2567
2567
  * <p>The name to assign to the source location for this VOD source.</p>
2568
2568
  * @public
2569
2569
  */
2570
- SourceLocationName?: string;
2570
+ SourceLocationName?: string | undefined;
2571
2571
  /**
2572
2572
  * <p>The tags to assign to the VOD source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
2573
2573
  * @public
2574
2574
  */
2575
- Tags?: Record<string, string>;
2575
+ Tags?: Record<string, string> | undefined;
2576
2576
  /**
2577
2577
  * <p>The name to assign to the VOD source.</p>
2578
2578
  * @public
2579
2579
  */
2580
- VodSourceName?: string;
2580
+ VodSourceName?: string | undefined;
2581
2581
  }
2582
2582
  /**
2583
2583
  * <p>The configuration for DASH PUT operations.</p>
@@ -2588,12 +2588,12 @@ export interface DashConfigurationForPut {
2588
2588
  * <p>The setting that controls whether MediaTailor includes the Location tag in DASH manifests. MediaTailor populates the Location tag with the URL for manifest update requests, to be used by players that don't support sticky redirects. Disable this if you have CDN routing rules set up for accessing MediaTailor manifests, and you are either using client-side reporting or your players support sticky HTTP redirects. Valid values are <code>DISABLED</code> and <code>EMT_DEFAULT</code>. The <code>EMT_DEFAULT</code> setting enables the inclusion of the tag and is the default value.</p>
2589
2589
  * @public
2590
2590
  */
2591
- MpdLocation?: string;
2591
+ MpdLocation?: string | undefined;
2592
2592
  /**
2593
2593
  * <p>The setting that controls whether MediaTailor handles manifests from the origin server as multi-period manifests or single-period manifests. If your origin server produces single-period manifests, set this to <code>SINGLE_PERIOD</code>. The default setting is <code>MULTI_PERIOD</code>. For multi-period manifests, omit this setting or set it to <code>MULTI_PERIOD</code>.</p>
2594
2594
  * @public
2595
2595
  */
2596
- OriginManifestType?: OriginManifestType;
2596
+ OriginManifestType?: OriginManifestType | undefined;
2597
2597
  }
2598
2598
  /**
2599
2599
  * @public
@@ -2708,37 +2708,37 @@ export interface DescribeLiveSourceResponse {
2708
2708
  * <p>The ARN of the live source.</p>
2709
2709
  * @public
2710
2710
  */
2711
- Arn?: string;
2711
+ Arn?: string | undefined;
2712
2712
  /**
2713
2713
  * <p>The timestamp that indicates when the live source was created.</p>
2714
2714
  * @public
2715
2715
  */
2716
- CreationTime?: Date;
2716
+ CreationTime?: Date | undefined;
2717
2717
  /**
2718
2718
  * <p>The HTTP package configurations.</p>
2719
2719
  * @public
2720
2720
  */
2721
- HttpPackageConfigurations?: HttpPackageConfiguration[];
2721
+ HttpPackageConfigurations?: HttpPackageConfiguration[] | undefined;
2722
2722
  /**
2723
2723
  * <p>The timestamp that indicates when the live source was modified.</p>
2724
2724
  * @public
2725
2725
  */
2726
- LastModifiedTime?: Date;
2726
+ LastModifiedTime?: Date | undefined;
2727
2727
  /**
2728
2728
  * <p>The name of the live source.</p>
2729
2729
  * @public
2730
2730
  */
2731
- LiveSourceName?: string;
2731
+ LiveSourceName?: string | undefined;
2732
2732
  /**
2733
2733
  * <p>The name of the source location associated with the live source.</p>
2734
2734
  * @public
2735
2735
  */
2736
- SourceLocationName?: string;
2736
+ SourceLocationName?: string | undefined;
2737
2737
  /**
2738
2738
  * <p>The tags assigned to the live source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
2739
2739
  * @public
2740
2740
  */
2741
- Tags?: Record<string, string>;
2741
+ Tags?: Record<string, string> | undefined;
2742
2742
  }
2743
2743
  /**
2744
2744
  * @public
@@ -2758,47 +2758,47 @@ export interface DescribeSourceLocationResponse {
2758
2758
  * <p>The access configuration for the source location.</p>
2759
2759
  * @public
2760
2760
  */
2761
- AccessConfiguration?: AccessConfiguration;
2761
+ AccessConfiguration?: AccessConfiguration | undefined;
2762
2762
  /**
2763
2763
  * <p>The ARN of the source location.</p>
2764
2764
  * @public
2765
2765
  */
2766
- Arn?: string;
2766
+ Arn?: string | undefined;
2767
2767
  /**
2768
2768
  * <p>The timestamp that indicates when the source location was created.</p>
2769
2769
  * @public
2770
2770
  */
2771
- CreationTime?: Date;
2771
+ CreationTime?: Date | undefined;
2772
2772
  /**
2773
2773
  * <p>The default segment delivery configuration settings.</p>
2774
2774
  * @public
2775
2775
  */
2776
- DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration;
2776
+ DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration | undefined;
2777
2777
  /**
2778
2778
  * <p>The HTTP package configuration settings for the source location.</p>
2779
2779
  * @public
2780
2780
  */
2781
- HttpConfiguration?: HttpConfiguration;
2781
+ HttpConfiguration?: HttpConfiguration | undefined;
2782
2782
  /**
2783
2783
  * <p>The timestamp that indicates when the source location was last modified.</p>
2784
2784
  * @public
2785
2785
  */
2786
- LastModifiedTime?: Date;
2786
+ LastModifiedTime?: Date | undefined;
2787
2787
  /**
2788
2788
  * <p>A list of the segment delivery configurations associated with this resource.</p>
2789
2789
  * @public
2790
2790
  */
2791
- SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
2791
+ SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[] | undefined;
2792
2792
  /**
2793
2793
  * <p>The name of the source location.</p>
2794
2794
  * @public
2795
2795
  */
2796
- SourceLocationName?: string;
2796
+ SourceLocationName?: string | undefined;
2797
2797
  /**
2798
2798
  * <p>The tags assigned to the source location. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
2799
2799
  * @public
2800
2800
  */
2801
- Tags?: Record<string, string>;
2801
+ Tags?: Record<string, string> | undefined;
2802
2802
  }
2803
2803
  /**
2804
2804
  * @public
@@ -2823,42 +2823,42 @@ export interface DescribeVodSourceResponse {
2823
2823
  * <p>The ad break opportunities within the VOD source.</p>
2824
2824
  * @public
2825
2825
  */
2826
- AdBreakOpportunities?: AdBreakOpportunity[];
2826
+ AdBreakOpportunities?: AdBreakOpportunity[] | undefined;
2827
2827
  /**
2828
2828
  * <p>The ARN of the VOD source.</p>
2829
2829
  * @public
2830
2830
  */
2831
- Arn?: string;
2831
+ Arn?: string | undefined;
2832
2832
  /**
2833
2833
  * <p>The timestamp that indicates when the VOD source was created.</p>
2834
2834
  * @public
2835
2835
  */
2836
- CreationTime?: Date;
2836
+ CreationTime?: Date | undefined;
2837
2837
  /**
2838
2838
  * <p>The HTTP package configurations.</p>
2839
2839
  * @public
2840
2840
  */
2841
- HttpPackageConfigurations?: HttpPackageConfiguration[];
2841
+ HttpPackageConfigurations?: HttpPackageConfiguration[] | undefined;
2842
2842
  /**
2843
2843
  * <p>The last modified time of the VOD source.</p>
2844
2844
  * @public
2845
2845
  */
2846
- LastModifiedTime?: Date;
2846
+ LastModifiedTime?: Date | undefined;
2847
2847
  /**
2848
2848
  * <p>The name of the source location associated with the VOD source.</p>
2849
2849
  * @public
2850
2850
  */
2851
- SourceLocationName?: string;
2851
+ SourceLocationName?: string | undefined;
2852
2852
  /**
2853
2853
  * <p>The tags assigned to the VOD source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
2854
2854
  * @public
2855
2855
  */
2856
- Tags?: Record<string, string>;
2856
+ Tags?: Record<string, string> | undefined;
2857
2857
  /**
2858
2858
  * <p>The name of the VOD source.</p>
2859
2859
  * @public
2860
2860
  */
2861
- VodSourceName?: string;
2861
+ VodSourceName?: string | undefined;
2862
2862
  }
2863
2863
  /**
2864
2864
  * @public
@@ -2878,102 +2878,102 @@ export interface GetPlaybackConfigurationResponse {
2878
2878
  * <p>The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing, you can provide a static VAST URL. The maximum length is 25,000 characters.</p>
2879
2879
  * @public
2880
2880
  */
2881
- AdDecisionServerUrl?: string;
2881
+ AdDecisionServerUrl?: string | undefined;
2882
2882
  /**
2883
2883
  * <p>The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html">Ad Suppression</a>.</p>
2884
2884
  * @public
2885
2885
  */
2886
- AvailSuppression?: AvailSuppression;
2886
+ AvailSuppression?: AvailSuppression | undefined;
2887
2887
  /**
2888
2888
  * <p>The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/bumpers.html">Bumpers</a>.</p>
2889
2889
  * @public
2890
2890
  */
2891
- Bumper?: Bumper;
2891
+ Bumper?: Bumper | undefined;
2892
2892
  /**
2893
2893
  * <p>The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.</p>
2894
2894
  * @public
2895
2895
  */
2896
- CdnConfiguration?: CdnConfiguration;
2896
+ CdnConfiguration?: CdnConfiguration | undefined;
2897
2897
  /**
2898
2898
  * <p>The player parameters and aliases used as dynamic variables during session initialization. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domain.html">Domain Variables</a>.</p>
2899
2899
  * @public
2900
2900
  */
2901
- ConfigurationAliases?: Record<string, Record<string, string>>;
2901
+ ConfigurationAliases?: Record<string, Record<string, string>> | undefined;
2902
2902
  /**
2903
2903
  * <p>The configuration for DASH content.</p>
2904
2904
  * @public
2905
2905
  */
2906
- DashConfiguration?: DashConfiguration;
2906
+ DashConfiguration?: DashConfiguration | undefined;
2907
2907
  /**
2908
2908
  * <p>The configuration for HLS content.</p>
2909
2909
  * @public
2910
2910
  */
2911
- HlsConfiguration?: HlsConfiguration;
2911
+ HlsConfiguration?: HlsConfiguration | undefined;
2912
2912
  /**
2913
2913
  * <p>The setting that controls whether players can use stitched or guided ad insertion. The default, <code>STITCHED_ONLY</code>, forces all player sessions to use stitched (server-side) ad insertion. Choosing <code>PLAYER_SELECT</code> allows players to select either stitched or guided ad insertion at session-initialization time. The default for players that do not specify an insertion mode is stitched.</p>
2914
2914
  * @public
2915
2915
  */
2916
- InsertionMode?: InsertionMode;
2916
+ InsertionMode?: InsertionMode | undefined;
2917
2917
  /**
2918
2918
  * <p>The configuration for pre-roll ad insertion.</p>
2919
2919
  * @public
2920
2920
  */
2921
- LivePreRollConfiguration?: LivePreRollConfiguration;
2921
+ LivePreRollConfiguration?: LivePreRollConfiguration | undefined;
2922
2922
  /**
2923
2923
  * <p>The Amazon CloudWatch log settings for a playback configuration.</p>
2924
2924
  * @public
2925
2925
  */
2926
- LogConfiguration?: LogConfiguration;
2926
+ LogConfiguration?: LogConfiguration | undefined;
2927
2927
  /**
2928
2928
  * <p>The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.</p>
2929
2929
  * @public
2930
2930
  */
2931
- ManifestProcessingRules?: ManifestProcessingRules;
2931
+ ManifestProcessingRules?: ManifestProcessingRules | undefined;
2932
2932
  /**
2933
2933
  * <p>The identifier for the playback configuration.</p>
2934
2934
  * @public
2935
2935
  */
2936
- Name?: string;
2936
+ Name?: string | undefined;
2937
2937
  /**
2938
2938
  * <p>Defines the maximum duration of underfilled ad time (in seconds) allowed in an ad break. If the duration of underfilled ad time exceeds the personalization threshold, then the personalization of the ad break is abandoned and the underlying content is shown. This feature applies to <i>ad replacement</i> in live and VOD streams, rather than ad insertion, because it relies on an underlying content stream. For more information about ad break behavior, including ad replacement and insertion, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html">Ad Behavior in AWS Elemental MediaTailor</a>.</p>
2939
2939
  * @public
2940
2940
  */
2941
- PersonalizationThresholdSeconds?: number;
2941
+ PersonalizationThresholdSeconds?: number | undefined;
2942
2942
  /**
2943
2943
  * <p>The Amazon Resource Name (ARN) for the playback configuration.</p>
2944
2944
  * @public
2945
2945
  */
2946
- PlaybackConfigurationArn?: string;
2946
+ PlaybackConfigurationArn?: string | undefined;
2947
2947
  /**
2948
2948
  * <p>The URL that the player accesses to get a manifest from AWS Elemental MediaTailor. This session will use server-side reporting.</p>
2949
2949
  * @public
2950
2950
  */
2951
- PlaybackEndpointPrefix?: string;
2951
+ PlaybackEndpointPrefix?: string | undefined;
2952
2952
  /**
2953
2953
  * <p>The URL that the player uses to initialize a session that uses client-side reporting.</p>
2954
2954
  * @public
2955
2955
  */
2956
- SessionInitializationEndpointPrefix?: string;
2956
+ SessionInitializationEndpointPrefix?: string | undefined;
2957
2957
  /**
2958
2958
  * <p>The URL for a high-quality video asset to transcode and use to fill in time that's not used by ads. AWS Elemental MediaTailor shows the slate to fill in gaps in media content. Configuring the slate is optional for non-VPAID playback configurations. For VPAID, the slate is required because MediaTailor provides it in the slots designated for dynamic ad content. The slate must be a high-quality asset that contains both audio and video.</p>
2959
2959
  * @public
2960
2960
  */
2961
- SlateAdUrl?: string;
2961
+ SlateAdUrl?: string | undefined;
2962
2962
  /**
2963
2963
  * <p>The tags assigned to the playback configuration. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
2964
2964
  * @public
2965
2965
  */
2966
- Tags?: Record<string, string>;
2966
+ Tags?: Record<string, string> | undefined;
2967
2967
  /**
2968
2968
  * <p>The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support.</p>
2969
2969
  * @public
2970
2970
  */
2971
- TranscodeProfileName?: string;
2971
+ TranscodeProfileName?: string | undefined;
2972
2972
  /**
2973
2973
  * <p>The URL prefix for the parent manifest for the stream, minus the asset ID. The maximum length is 512 characters.</p>
2974
2974
  * @public
2975
2975
  */
2976
- VideoContentSourceUrl?: string;
2976
+ VideoContentSourceUrl?: string | undefined;
2977
2977
  }
2978
2978
  /**
2979
2979
  * @public
@@ -2998,32 +2998,32 @@ export interface GetPrefetchScheduleResponse {
2998
2998
  * <p>The Amazon Resource Name (ARN) of the prefetch schedule.</p>
2999
2999
  * @public
3000
3000
  */
3001
- Arn?: string;
3001
+ Arn?: string | undefined;
3002
3002
  /**
3003
3003
  * <p>Consumption settings determine how, and when, MediaTailor places the prefetched ads into ad breaks. Ad consumption occurs within a span of time that you define, called a <i>consumption window</i>. You can designate which ad breaks that MediaTailor fills with prefetch ads by setting avail matching criteria.</p>
3004
3004
  * @public
3005
3005
  */
3006
- Consumption?: PrefetchConsumption;
3006
+ Consumption?: PrefetchConsumption | undefined;
3007
3007
  /**
3008
3008
  * <p>The name of the prefetch schedule. The name must be unique among all prefetch schedules that are associated with the specified playback configuration.</p>
3009
3009
  * @public
3010
3010
  */
3011
- Name?: string;
3011
+ Name?: string | undefined;
3012
3012
  /**
3013
3013
  * <p>The name of the playback configuration to create the prefetch schedule for.</p>
3014
3014
  * @public
3015
3015
  */
3016
- PlaybackConfigurationName?: string;
3016
+ PlaybackConfigurationName?: string | undefined;
3017
3017
  /**
3018
3018
  * <p>A complex type that contains settings for prefetch retrieval from the ad decision server (ADS).</p>
3019
3019
  * @public
3020
3020
  */
3021
- Retrieval?: PrefetchRetrieval;
3021
+ Retrieval?: PrefetchRetrieval | undefined;
3022
3022
  /**
3023
3023
  * <p>An optional stream identifier that you can specify in order to prefetch for multiple streams that use the same playback configuration.</p>
3024
3024
  * @public
3025
3025
  */
3026
- StreamId?: string;
3026
+ StreamId?: string | undefined;
3027
3027
  }
3028
3028
  /**
3029
3029
  * @public
@@ -3033,12 +3033,12 @@ export interface ListAlertsRequest {
3033
3033
  * <p>The maximum number of alerts that you want MediaTailor to return in response to the current request. If there are more than <code>MaxResults</code> alerts, use the value of <code>NextToken</code> in the response to get the next page of results.</p>
3034
3034
  * @public
3035
3035
  */
3036
- MaxResults?: number;
3036
+ MaxResults?: number | undefined;
3037
3037
  /**
3038
3038
  * <p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
3039
3039
  * @public
3040
3040
  */
3041
- NextToken?: string;
3041
+ NextToken?: string | undefined;
3042
3042
  /**
3043
3043
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
3044
3044
  * @public
@@ -3053,12 +3053,12 @@ export interface ListAlertsResponse {
3053
3053
  * <p>A list of alerts that are associated with this resource.</p>
3054
3054
  * @public
3055
3055
  */
3056
- Items?: Alert[];
3056
+ Items?: Alert[] | undefined;
3057
3057
  /**
3058
3058
  * <p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
3059
3059
  * @public
3060
3060
  */
3061
- NextToken?: string;
3061
+ NextToken?: string | undefined;
3062
3062
  }
3063
3063
  /**
3064
3064
  * @public
@@ -3068,12 +3068,12 @@ export interface ListLiveSourcesRequest {
3068
3068
  * <p>The maximum number of live sources that you want MediaTailor to return in response to the current request. If there are more than <code>MaxResults</code> live sources, use the value of <code>NextToken</code> in the response to get the next page of results.</p>
3069
3069
  * @public
3070
3070
  */
3071
- MaxResults?: number;
3071
+ MaxResults?: number | undefined;
3072
3072
  /**
3073
3073
  * <p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
3074
3074
  * @public
3075
3075
  */
3076
- NextToken?: string;
3076
+ NextToken?: string | undefined;
3077
3077
  /**
3078
3078
  * <p>The name of the source location associated with this Live Sources list.</p>
3079
3079
  * @public
@@ -3088,12 +3088,12 @@ export interface ListLiveSourcesResponse {
3088
3088
  * <p>Lists the live sources.</p>
3089
3089
  * @public
3090
3090
  */
3091
- Items?: LiveSource[];
3091
+ Items?: LiveSource[] | undefined;
3092
3092
  /**
3093
3093
  * <p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
3094
3094
  * @public
3095
3095
  */
3096
- NextToken?: string;
3096
+ NextToken?: string | undefined;
3097
3097
  }
3098
3098
  /**
3099
3099
  * @public
@@ -3103,12 +3103,12 @@ export interface ListPlaybackConfigurationsRequest {
3103
3103
  * <p>The maximum number of playback configurations that you want MediaTailor to return in response to the current request. If there are more than <code>MaxResults</code> playback configurations, use the value of <code>NextToken</code> in the response to get the next page of results.</p>
3104
3104
  * @public
3105
3105
  */
3106
- MaxResults?: number;
3106
+ MaxResults?: number | undefined;
3107
3107
  /**
3108
3108
  * <p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
3109
3109
  * @public
3110
3110
  */
3111
- NextToken?: string;
3111
+ NextToken?: string | undefined;
3112
3112
  }
3113
3113
  /**
3114
3114
  * @public
@@ -3118,12 +3118,12 @@ export interface ListPlaybackConfigurationsResponse {
3118
3118
  * <p>Array of playback configurations. This might be all the available configurations or a subset, depending on the settings that you provide and the total number of configurations stored.</p>
3119
3119
  * @public
3120
3120
  */
3121
- Items?: PlaybackConfiguration[];
3121
+ Items?: PlaybackConfiguration[] | undefined;
3122
3122
  /**
3123
3123
  * <p>Pagination token returned by the GET list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
3124
3124
  * @public
3125
3125
  */
3126
- NextToken?: string;
3126
+ NextToken?: string | undefined;
3127
3127
  }
3128
3128
  /**
3129
3129
  * @public
@@ -3133,7 +3133,7 @@ export interface ListPrefetchSchedulesRequest {
3133
3133
  * <p>The maximum number of prefetch schedules that you want MediaTailor to return in response to the current request. If there are more than <code>MaxResults</code> prefetch schedules, use the value of <code>NextToken</code> in the response to get the next page of results.</p>
3134
3134
  * @public
3135
3135
  */
3136
- MaxResults?: number;
3136
+ MaxResults?: number | undefined;
3137
3137
  /**
3138
3138
  * <p>(Optional) If the playback configuration has more than <code>MaxResults</code> prefetch schedules, use <code>NextToken</code> to get the second and subsequent pages of results.</p>
3139
3139
  * <p> For the first <code>ListPrefetchSchedulesRequest</code> request, omit this value.</p>
@@ -3141,7 +3141,7 @@ export interface ListPrefetchSchedulesRequest {
3141
3141
  * <p> If the previous response didn't include a <code>NextToken</code> element, there are no more prefetch schedules to get.</p>
3142
3142
  * @public
3143
3143
  */
3144
- NextToken?: string;
3144
+ NextToken?: string | undefined;
3145
3145
  /**
3146
3146
  * <p>Retrieves the prefetch schedule(s) for a specific playback configuration.</p>
3147
3147
  * @public
@@ -3151,7 +3151,7 @@ export interface ListPrefetchSchedulesRequest {
3151
3151
  * <p>An optional filtering parameter whereby MediaTailor filters the prefetch schedules to include only specific streams.</p>
3152
3152
  * @public
3153
3153
  */
3154
- StreamId?: string;
3154
+ StreamId?: string | undefined;
3155
3155
  }
3156
3156
  /**
3157
3157
  * @public
@@ -3161,12 +3161,12 @@ export interface ListPrefetchSchedulesResponse {
3161
3161
  * <p>Lists the prefetch schedules. An empty <code>Items</code> list doesn't mean there aren't more items to fetch, just that that page was empty.</p>
3162
3162
  * @public
3163
3163
  */
3164
- Items?: PrefetchSchedule[];
3164
+ Items?: PrefetchSchedule[] | undefined;
3165
3165
  /**
3166
3166
  * <p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
3167
3167
  * @public
3168
3168
  */
3169
- NextToken?: string;
3169
+ NextToken?: string | undefined;
3170
3170
  }
3171
3171
  /**
3172
3172
  * @public
@@ -3176,12 +3176,12 @@ export interface ListSourceLocationsRequest {
3176
3176
  * <p> The maximum number of source locations that you want MediaTailor to return in response to the current request. If there are more than <code>MaxResults</code> source locations, use the value of <code>NextToken</code> in the response to get the next page of results.</p>
3177
3177
  * @public
3178
3178
  */
3179
- MaxResults?: number;
3179
+ MaxResults?: number | undefined;
3180
3180
  /**
3181
3181
  * <p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
3182
3182
  * @public
3183
3183
  */
3184
- NextToken?: string;
3184
+ NextToken?: string | undefined;
3185
3185
  }
3186
3186
  /**
3187
3187
  * @public
@@ -3191,12 +3191,12 @@ export interface ListSourceLocationsResponse {
3191
3191
  * <p>A list of source locations.</p>
3192
3192
  * @public
3193
3193
  */
3194
- Items?: SourceLocation[];
3194
+ Items?: SourceLocation[] | undefined;
3195
3195
  /**
3196
3196
  * <p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
3197
3197
  * @public
3198
3198
  */
3199
- NextToken?: string;
3199
+ NextToken?: string | undefined;
3200
3200
  }
3201
3201
  /**
3202
3202
  * @public
@@ -3216,7 +3216,7 @@ export interface ListTagsForResourceResponse {
3216
3216
  * <p>The tags associated with this resource. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
3217
3217
  * @public
3218
3218
  */
3219
- Tags?: Record<string, string>;
3219
+ Tags?: Record<string, string> | undefined;
3220
3220
  }
3221
3221
  /**
3222
3222
  * @public
@@ -3226,12 +3226,12 @@ export interface ListVodSourcesRequest {
3226
3226
  * <p> The maximum number of VOD sources that you want MediaTailor to return in response to the current request. If there are more than <code>MaxResults</code> VOD sources, use the value of <code>NextToken</code> in the response to get the next page of results.</p>
3227
3227
  * @public
3228
3228
  */
3229
- MaxResults?: number;
3229
+ MaxResults?: number | undefined;
3230
3230
  /**
3231
3231
  * <p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
3232
3232
  * @public
3233
3233
  */
3234
- NextToken?: string;
3234
+ NextToken?: string | undefined;
3235
3235
  /**
3236
3236
  * <p>The name of the source location associated with this VOD Source list.</p>
3237
3237
  * @public
@@ -3246,12 +3246,12 @@ export interface ListVodSourcesResponse {
3246
3246
  * <p>Lists the VOD sources.</p>
3247
3247
  * @public
3248
3248
  */
3249
- Items?: VodSource[];
3249
+ Items?: VodSource[] | undefined;
3250
3250
  /**
3251
3251
  * <p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
3252
3252
  * @public
3253
3253
  */
3254
- NextToken?: string;
3254
+ NextToken?: string | undefined;
3255
3255
  }
3256
3256
  /**
3257
3257
  * @public
@@ -3281,37 +3281,37 @@ export interface UpdateLiveSourceResponse {
3281
3281
  * <p>The Amazon Resource Name (ARN) associated with this live source.</p>
3282
3282
  * @public
3283
3283
  */
3284
- Arn?: string;
3284
+ Arn?: string | undefined;
3285
3285
  /**
3286
3286
  * <p>The timestamp that indicates when the live source was created.</p>
3287
3287
  * @public
3288
3288
  */
3289
- CreationTime?: Date;
3289
+ CreationTime?: Date | undefined;
3290
3290
  /**
3291
3291
  * <p>A list of HTTP package configurations for the live source on this account.</p>
3292
3292
  * @public
3293
3293
  */
3294
- HttpPackageConfigurations?: HttpPackageConfiguration[];
3294
+ HttpPackageConfigurations?: HttpPackageConfiguration[] | undefined;
3295
3295
  /**
3296
3296
  * <p>The timestamp that indicates when the live source was last modified.</p>
3297
3297
  * @public
3298
3298
  */
3299
- LastModifiedTime?: Date;
3299
+ LastModifiedTime?: Date | undefined;
3300
3300
  /**
3301
3301
  * <p>The name of the live source.</p>
3302
3302
  * @public
3303
3303
  */
3304
- LiveSourceName?: string;
3304
+ LiveSourceName?: string | undefined;
3305
3305
  /**
3306
3306
  * <p>The name of the source location associated with the live source.</p>
3307
3307
  * @public
3308
3308
  */
3309
- SourceLocationName?: string;
3309
+ SourceLocationName?: string | undefined;
3310
3310
  /**
3311
3311
  * <p>The tags to assign to the live source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
3312
3312
  * @public
3313
3313
  */
3314
- Tags?: Record<string, string>;
3314
+ Tags?: Record<string, string> | undefined;
3315
3315
  }
3316
3316
  /**
3317
3317
  * @public
@@ -3321,47 +3321,47 @@ export interface PutPlaybackConfigurationRequest {
3321
3321
  * <p>The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing you can provide a static VAST URL. The maximum length is 25,000 characters.</p>
3322
3322
  * @public
3323
3323
  */
3324
- AdDecisionServerUrl?: string;
3324
+ AdDecisionServerUrl?: string | undefined;
3325
3325
  /**
3326
3326
  * <p>The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html">Ad Suppression</a>.</p>
3327
3327
  * @public
3328
3328
  */
3329
- AvailSuppression?: AvailSuppression;
3329
+ AvailSuppression?: AvailSuppression | undefined;
3330
3330
  /**
3331
3331
  * <p>The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/bumpers.html">Bumpers</a>.</p>
3332
3332
  * @public
3333
3333
  */
3334
- Bumper?: Bumper;
3334
+ Bumper?: Bumper | undefined;
3335
3335
  /**
3336
3336
  * <p>The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.</p>
3337
3337
  * @public
3338
3338
  */
3339
- CdnConfiguration?: CdnConfiguration;
3339
+ CdnConfiguration?: CdnConfiguration | undefined;
3340
3340
  /**
3341
3341
  * <p>The player parameters and aliases used as dynamic variables during session initialization. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domain.html">Domain Variables</a>.</p>
3342
3342
  * @public
3343
3343
  */
3344
- ConfigurationAliases?: Record<string, Record<string, string>>;
3344
+ ConfigurationAliases?: Record<string, Record<string, string>> | undefined;
3345
3345
  /**
3346
3346
  * <p>The configuration for DASH content.</p>
3347
3347
  * @public
3348
3348
  */
3349
- DashConfiguration?: DashConfigurationForPut;
3349
+ DashConfiguration?: DashConfigurationForPut | undefined;
3350
3350
  /**
3351
3351
  * <p>The setting that controls whether players can use stitched or guided ad insertion. The default, <code>STITCHED_ONLY</code>, forces all player sessions to use stitched (server-side) ad insertion. Choosing <code>PLAYER_SELECT</code> allows players to select either stitched or guided ad insertion at session-initialization time. The default for players that do not specify an insertion mode is stitched.</p>
3352
3352
  * @public
3353
3353
  */
3354
- InsertionMode?: InsertionMode;
3354
+ InsertionMode?: InsertionMode | undefined;
3355
3355
  /**
3356
3356
  * <p>The configuration for pre-roll ad insertion.</p>
3357
3357
  * @public
3358
3358
  */
3359
- LivePreRollConfiguration?: LivePreRollConfiguration;
3359
+ LivePreRollConfiguration?: LivePreRollConfiguration | undefined;
3360
3360
  /**
3361
3361
  * <p>The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.</p>
3362
3362
  * @public
3363
3363
  */
3364
- ManifestProcessingRules?: ManifestProcessingRules;
3364
+ ManifestProcessingRules?: ManifestProcessingRules | undefined;
3365
3365
  /**
3366
3366
  * <p>The identifier for the playback configuration.</p>
3367
3367
  * @public
@@ -3371,27 +3371,27 @@ export interface PutPlaybackConfigurationRequest {
3371
3371
  * <p>Defines the maximum duration of underfilled ad time (in seconds) allowed in an ad break. If the duration of underfilled ad time exceeds the personalization threshold, then the personalization of the ad break is abandoned and the underlying content is shown. This feature applies to <i>ad replacement</i> in live and VOD streams, rather than ad insertion, because it relies on an underlying content stream. For more information about ad break behavior, including ad replacement and insertion, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html">Ad Behavior in AWS Elemental MediaTailor</a>.</p>
3372
3372
  * @public
3373
3373
  */
3374
- PersonalizationThresholdSeconds?: number;
3374
+ PersonalizationThresholdSeconds?: number | undefined;
3375
3375
  /**
3376
3376
  * <p>The URL for a high-quality video asset to transcode and use to fill in time that's not used by ads. AWS Elemental MediaTailor shows the slate to fill in gaps in media content. Configuring the slate is optional for non-VPAID configurations. For VPAID, the slate is required because MediaTailor provides it in the slots that are designated for dynamic ad content. The slate must be a high-quality asset that contains both audio and video.</p>
3377
3377
  * @public
3378
3378
  */
3379
- SlateAdUrl?: string;
3379
+ SlateAdUrl?: string | undefined;
3380
3380
  /**
3381
3381
  * <p>The tags to assign to the playback configuration. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
3382
3382
  * @public
3383
3383
  */
3384
- Tags?: Record<string, string>;
3384
+ Tags?: Record<string, string> | undefined;
3385
3385
  /**
3386
3386
  * <p>The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support.</p>
3387
3387
  * @public
3388
3388
  */
3389
- TranscodeProfileName?: string;
3389
+ TranscodeProfileName?: string | undefined;
3390
3390
  /**
3391
3391
  * <p>The URL prefix for the parent manifest for the stream, minus the asset ID. The maximum length is 512 characters.</p>
3392
3392
  * @public
3393
3393
  */
3394
- VideoContentSourceUrl?: string;
3394
+ VideoContentSourceUrl?: string | undefined;
3395
3395
  }
3396
3396
  /**
3397
3397
  * @public
@@ -3401,102 +3401,102 @@ export interface PutPlaybackConfigurationResponse {
3401
3401
  * <p>The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing you can provide a static VAST URL. The maximum length is 25,000 characters.</p>
3402
3402
  * @public
3403
3403
  */
3404
- AdDecisionServerUrl?: string;
3404
+ AdDecisionServerUrl?: string | undefined;
3405
3405
  /**
3406
3406
  * <p>The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html">Ad Suppression</a>.</p>
3407
3407
  * @public
3408
3408
  */
3409
- AvailSuppression?: AvailSuppression;
3409
+ AvailSuppression?: AvailSuppression | undefined;
3410
3410
  /**
3411
3411
  * <p>The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/bumpers.html">Bumpers</a>.</p>
3412
3412
  * @public
3413
3413
  */
3414
- Bumper?: Bumper;
3414
+ Bumper?: Bumper | undefined;
3415
3415
  /**
3416
3416
  * <p>The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.</p>
3417
3417
  * @public
3418
3418
  */
3419
- CdnConfiguration?: CdnConfiguration;
3419
+ CdnConfiguration?: CdnConfiguration | undefined;
3420
3420
  /**
3421
3421
  * <p>The player parameters and aliases used as dynamic variables during session initialization. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domain.html">Domain Variables</a>.</p>
3422
3422
  * @public
3423
3423
  */
3424
- ConfigurationAliases?: Record<string, Record<string, string>>;
3424
+ ConfigurationAliases?: Record<string, Record<string, string>> | undefined;
3425
3425
  /**
3426
3426
  * <p>The configuration for DASH content.</p>
3427
3427
  * @public
3428
3428
  */
3429
- DashConfiguration?: DashConfiguration;
3429
+ DashConfiguration?: DashConfiguration | undefined;
3430
3430
  /**
3431
3431
  * <p>The configuration for HLS content.</p>
3432
3432
  * @public
3433
3433
  */
3434
- HlsConfiguration?: HlsConfiguration;
3434
+ HlsConfiguration?: HlsConfiguration | undefined;
3435
3435
  /**
3436
3436
  * <p>The setting that controls whether players can use stitched or guided ad insertion. The default, <code>STITCHED_ONLY</code>, forces all player sessions to use stitched (server-side) ad insertion. Choosing <code>PLAYER_SELECT</code> allows players to select either stitched or guided ad insertion at session-initialization time. The default for players that do not specify an insertion mode is stitched.</p>
3437
3437
  * @public
3438
3438
  */
3439
- InsertionMode?: InsertionMode;
3439
+ InsertionMode?: InsertionMode | undefined;
3440
3440
  /**
3441
3441
  * <p>The configuration for pre-roll ad insertion.</p>
3442
3442
  * @public
3443
3443
  */
3444
- LivePreRollConfiguration?: LivePreRollConfiguration;
3444
+ LivePreRollConfiguration?: LivePreRollConfiguration | undefined;
3445
3445
  /**
3446
3446
  * <p>The Amazon CloudWatch log settings for a playback configuration.</p>
3447
3447
  * @public
3448
3448
  */
3449
- LogConfiguration?: LogConfiguration;
3449
+ LogConfiguration?: LogConfiguration | undefined;
3450
3450
  /**
3451
3451
  * <p>The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.</p>
3452
3452
  * @public
3453
3453
  */
3454
- ManifestProcessingRules?: ManifestProcessingRules;
3454
+ ManifestProcessingRules?: ManifestProcessingRules | undefined;
3455
3455
  /**
3456
3456
  * <p>The identifier for the playback configuration.</p>
3457
3457
  * @public
3458
3458
  */
3459
- Name?: string;
3459
+ Name?: string | undefined;
3460
3460
  /**
3461
3461
  * <p>Defines the maximum duration of underfilled ad time (in seconds) allowed in an ad break. If the duration of underfilled ad time exceeds the personalization threshold, then the personalization of the ad break is abandoned and the underlying content is shown. This feature applies to <i>ad replacement</i> in live and VOD streams, rather than ad insertion, because it relies on an underlying content stream. For more information about ad break behavior, including ad replacement and insertion, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html">Ad Behavior in AWS Elemental MediaTailor</a>.</p>
3462
3462
  * @public
3463
3463
  */
3464
- PersonalizationThresholdSeconds?: number;
3464
+ PersonalizationThresholdSeconds?: number | undefined;
3465
3465
  /**
3466
3466
  * <p>The Amazon Resource Name (ARN) associated with the playback configuration.</p>
3467
3467
  * @public
3468
3468
  */
3469
- PlaybackConfigurationArn?: string;
3469
+ PlaybackConfigurationArn?: string | undefined;
3470
3470
  /**
3471
3471
  * <p>The playback endpoint prefix associated with the playback configuration.</p>
3472
3472
  * @public
3473
3473
  */
3474
- PlaybackEndpointPrefix?: string;
3474
+ PlaybackEndpointPrefix?: string | undefined;
3475
3475
  /**
3476
3476
  * <p>The session initialization endpoint prefix associated with the playback configuration.</p>
3477
3477
  * @public
3478
3478
  */
3479
- SessionInitializationEndpointPrefix?: string;
3479
+ SessionInitializationEndpointPrefix?: string | undefined;
3480
3480
  /**
3481
3481
  * <p>The URL for a high-quality video asset to transcode and use to fill in time that's not used by ads. AWS Elemental MediaTailor shows the slate to fill in gaps in media content. Configuring the slate is optional for non-VPAID configurations. For VPAID, the slate is required because MediaTailor provides it in the slots that are designated for dynamic ad content. The slate must be a high-quality asset that contains both audio and video.</p>
3482
3482
  * @public
3483
3483
  */
3484
- SlateAdUrl?: string;
3484
+ SlateAdUrl?: string | undefined;
3485
3485
  /**
3486
3486
  * <p>The tags to assign to the playback configuration. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
3487
3487
  * @public
3488
3488
  */
3489
- Tags?: Record<string, string>;
3489
+ Tags?: Record<string, string> | undefined;
3490
3490
  /**
3491
3491
  * <p>The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support.</p>
3492
3492
  * @public
3493
3493
  */
3494
- TranscodeProfileName?: string;
3494
+ TranscodeProfileName?: string | undefined;
3495
3495
  /**
3496
3496
  * <p>The URL prefix for the parent manifest for the stream, minus the asset ID. The maximum length is 512 characters.</p>
3497
3497
  * @public
3498
3498
  */
3499
- VideoContentSourceUrl?: string;
3499
+ VideoContentSourceUrl?: string | undefined;
3500
3500
  }
3501
3501
  /**
3502
3502
  * @public
@@ -3506,12 +3506,12 @@ export interface UpdateSourceLocationRequest {
3506
3506
  * <p>Access configuration parameters. Configures the type of authentication used to access content from your source location.</p>
3507
3507
  * @public
3508
3508
  */
3509
- AccessConfiguration?: AccessConfiguration;
3509
+ AccessConfiguration?: AccessConfiguration | undefined;
3510
3510
  /**
3511
3511
  * <p>The optional configuration for the host server that serves segments.</p>
3512
3512
  * @public
3513
3513
  */
3514
- DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration;
3514
+ DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration | undefined;
3515
3515
  /**
3516
3516
  * <p>The HTTP configuration for the source location.</p>
3517
3517
  * @public
@@ -3521,7 +3521,7 @@ export interface UpdateSourceLocationRequest {
3521
3521
  * <p>A list of the segment delivery configurations associated with this resource.</p>
3522
3522
  * @public
3523
3523
  */
3524
- SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
3524
+ SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[] | undefined;
3525
3525
  /**
3526
3526
  * <p>The name of the source location.</p>
3527
3527
  * @public
@@ -3536,47 +3536,47 @@ export interface UpdateSourceLocationResponse {
3536
3536
  * <p>Access configuration parameters. Configures the type of authentication used to access content from your source location.</p>
3537
3537
  * @public
3538
3538
  */
3539
- AccessConfiguration?: AccessConfiguration;
3539
+ AccessConfiguration?: AccessConfiguration | undefined;
3540
3540
  /**
3541
3541
  * <p>The Amazon Resource Name (ARN) associated with the source location.</p>
3542
3542
  * @public
3543
3543
  */
3544
- Arn?: string;
3544
+ Arn?: string | undefined;
3545
3545
  /**
3546
3546
  * <p>The timestamp that indicates when the source location was created.</p>
3547
3547
  * @public
3548
3548
  */
3549
- CreationTime?: Date;
3549
+ CreationTime?: Date | undefined;
3550
3550
  /**
3551
3551
  * <p>The optional configuration for the host server that serves segments.</p>
3552
3552
  * @public
3553
3553
  */
3554
- DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration;
3554
+ DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration | undefined;
3555
3555
  /**
3556
3556
  * <p>The HTTP configuration for the source location.</p>
3557
3557
  * @public
3558
3558
  */
3559
- HttpConfiguration?: HttpConfiguration;
3559
+ HttpConfiguration?: HttpConfiguration | undefined;
3560
3560
  /**
3561
3561
  * <p>The timestamp that indicates when the source location was last modified.</p>
3562
3562
  * @public
3563
3563
  */
3564
- LastModifiedTime?: Date;
3564
+ LastModifiedTime?: Date | undefined;
3565
3565
  /**
3566
3566
  * <p>The segment delivery configurations for the source location. For information about MediaTailor configurations, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/configurations.html">Working with configurations in AWS Elemental MediaTailor</a>.</p>
3567
3567
  * @public
3568
3568
  */
3569
- SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
3569
+ SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[] | undefined;
3570
3570
  /**
3571
3571
  * <p>The name of the source location.</p>
3572
3572
  * @public
3573
3573
  */
3574
- SourceLocationName?: string;
3574
+ SourceLocationName?: string | undefined;
3575
3575
  /**
3576
3576
  * <p>The tags to assign to the source location. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
3577
3577
  * @public
3578
3578
  */
3579
- Tags?: Record<string, string>;
3579
+ Tags?: Record<string, string> | undefined;
3580
3580
  }
3581
3581
  /**
3582
3582
  * @public
@@ -3636,35 +3636,35 @@ export interface UpdateVodSourceResponse {
3636
3636
  * <p>The Amazon Resource Name (ARN) associated with the VOD source.</p>
3637
3637
  * @public
3638
3638
  */
3639
- Arn?: string;
3639
+ Arn?: string | undefined;
3640
3640
  /**
3641
3641
  * <p>The timestamp that indicates when the VOD source was created.</p>
3642
3642
  * @public
3643
3643
  */
3644
- CreationTime?: Date;
3644
+ CreationTime?: Date | undefined;
3645
3645
  /**
3646
3646
  * <p>A list of HTTP package configurations for the VOD source on this account.</p>
3647
3647
  * @public
3648
3648
  */
3649
- HttpPackageConfigurations?: HttpPackageConfiguration[];
3649
+ HttpPackageConfigurations?: HttpPackageConfiguration[] | undefined;
3650
3650
  /**
3651
3651
  * <p>The timestamp that indicates when the VOD source was last modified.</p>
3652
3652
  * @public
3653
3653
  */
3654
- LastModifiedTime?: Date;
3654
+ LastModifiedTime?: Date | undefined;
3655
3655
  /**
3656
3656
  * <p>The name of the source location associated with the VOD source.</p>
3657
3657
  * @public
3658
3658
  */
3659
- SourceLocationName?: string;
3659
+ SourceLocationName?: string | undefined;
3660
3660
  /**
3661
3661
  * <p>The tags to assign to the VOD source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
3662
3662
  * @public
3663
3663
  */
3664
- Tags?: Record<string, string>;
3664
+ Tags?: Record<string, string> | undefined;
3665
3665
  /**
3666
3666
  * <p>The name of the VOD source.</p>
3667
3667
  * @public
3668
3668
  */
3669
- VodSourceName?: string;
3669
+ VodSourceName?: string | undefined;
3670
3670
  }