@aws-sdk/client-medialive 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.
@@ -28,7 +28,7 @@ import {
28
28
  ReservationResourceSpecification,
29
29
  } from "./models_0";
30
30
  export interface FrameCaptureOutputSettings {
31
- NameModifier?: string;
31
+ NameModifier?: string | undefined;
32
32
  }
33
33
  export declare const HlsH265PackagingType: {
34
34
  readonly HEV1: "HEV1";
@@ -51,10 +51,10 @@ export declare const AudioOnlyHlsSegmentType: {
51
51
  export type AudioOnlyHlsSegmentType =
52
52
  (typeof AudioOnlyHlsSegmentType)[keyof typeof AudioOnlyHlsSegmentType];
53
53
  export interface AudioOnlyHlsSettings {
54
- AudioGroupId?: string;
55
- AudioOnlyImage?: InputLocation;
56
- AudioTrackType?: AudioOnlyHlsTrackType;
57
- SegmentType?: AudioOnlyHlsSegmentType;
54
+ AudioGroupId?: string | undefined;
55
+ AudioOnlyImage?: InputLocation | undefined;
56
+ AudioTrackType?: AudioOnlyHlsTrackType | undefined;
57
+ SegmentType?: AudioOnlyHlsSegmentType | undefined;
58
58
  }
59
59
  export declare const Fmp4NielsenId3Behavior: {
60
60
  readonly NO_PASSTHROUGH: "NO_PASSTHROUGH";
@@ -69,9 +69,9 @@ export declare const Fmp4TimedMetadataBehavior: {
69
69
  export type Fmp4TimedMetadataBehavior =
70
70
  (typeof Fmp4TimedMetadataBehavior)[keyof typeof Fmp4TimedMetadataBehavior];
71
71
  export interface Fmp4HlsSettings {
72
- AudioRenditionSets?: string;
73
- NielsenId3Behavior?: Fmp4NielsenId3Behavior;
74
- TimedMetadataBehavior?: Fmp4TimedMetadataBehavior;
72
+ AudioRenditionSets?: string | undefined;
73
+ NielsenId3Behavior?: Fmp4NielsenId3Behavior | undefined;
74
+ TimedMetadataBehavior?: Fmp4TimedMetadataBehavior | undefined;
75
75
  }
76
76
  export interface FrameCaptureHlsSettings {}
77
77
  export declare const M3u8KlvBehavior: {
@@ -105,41 +105,41 @@ export declare const M3u8TimedMetadataBehavior: {
105
105
  export type M3u8TimedMetadataBehavior =
106
106
  (typeof M3u8TimedMetadataBehavior)[keyof typeof M3u8TimedMetadataBehavior];
107
107
  export interface M3u8Settings {
108
- AudioFramesPerPes?: number;
109
- AudioPids?: string;
110
- EcmPid?: string;
111
- NielsenId3Behavior?: M3u8NielsenId3Behavior;
112
- PatInterval?: number;
113
- PcrControl?: M3u8PcrControl;
114
- PcrPeriod?: number;
115
- PcrPid?: string;
116
- PmtInterval?: number;
117
- PmtPid?: string;
118
- ProgramNum?: number;
119
- Scte35Behavior?: M3u8Scte35Behavior;
120
- Scte35Pid?: string;
121
- TimedMetadataBehavior?: M3u8TimedMetadataBehavior;
122
- TimedMetadataPid?: string;
123
- TransportStreamId?: number;
124
- VideoPid?: string;
125
- KlvBehavior?: M3u8KlvBehavior;
126
- KlvDataPids?: string;
108
+ AudioFramesPerPes?: number | undefined;
109
+ AudioPids?: string | undefined;
110
+ EcmPid?: string | undefined;
111
+ NielsenId3Behavior?: M3u8NielsenId3Behavior | undefined;
112
+ PatInterval?: number | undefined;
113
+ PcrControl?: M3u8PcrControl | undefined;
114
+ PcrPeriod?: number | undefined;
115
+ PcrPid?: string | undefined;
116
+ PmtInterval?: number | undefined;
117
+ PmtPid?: string | undefined;
118
+ ProgramNum?: number | undefined;
119
+ Scte35Behavior?: M3u8Scte35Behavior | undefined;
120
+ Scte35Pid?: string | undefined;
121
+ TimedMetadataBehavior?: M3u8TimedMetadataBehavior | undefined;
122
+ TimedMetadataPid?: string | undefined;
123
+ TransportStreamId?: number | undefined;
124
+ VideoPid?: string | undefined;
125
+ KlvBehavior?: M3u8KlvBehavior | undefined;
126
+ KlvDataPids?: string | undefined;
127
127
  }
128
128
  export interface StandardHlsSettings {
129
- AudioRenditionSets?: string;
129
+ AudioRenditionSets?: string | undefined;
130
130
  M3u8Settings: M3u8Settings | undefined;
131
131
  }
132
132
  export interface HlsSettings {
133
- AudioOnlyHlsSettings?: AudioOnlyHlsSettings;
134
- Fmp4HlsSettings?: Fmp4HlsSettings;
135
- FrameCaptureHlsSettings?: FrameCaptureHlsSettings;
136
- StandardHlsSettings?: StandardHlsSettings;
133
+ AudioOnlyHlsSettings?: AudioOnlyHlsSettings | undefined;
134
+ Fmp4HlsSettings?: Fmp4HlsSettings | undefined;
135
+ FrameCaptureHlsSettings?: FrameCaptureHlsSettings | undefined;
136
+ StandardHlsSettings?: StandardHlsSettings | undefined;
137
137
  }
138
138
  export interface HlsOutputSettings {
139
- H265PackagingType?: HlsH265PackagingType;
139
+ H265PackagingType?: HlsH265PackagingType | undefined;
140
140
  HlsSettings: HlsSettings | undefined;
141
- NameModifier?: string;
142
- SegmentModifier?: string;
141
+ NameModifier?: string | undefined;
142
+ SegmentModifier?: string | undefined;
143
143
  }
144
144
  export interface MediaPackageOutputSettings {}
145
145
  export declare const MsSmoothH265PackagingType: {
@@ -149,34 +149,34 @@ export declare const MsSmoothH265PackagingType: {
149
149
  export type MsSmoothH265PackagingType =
150
150
  (typeof MsSmoothH265PackagingType)[keyof typeof MsSmoothH265PackagingType];
151
151
  export interface MsSmoothOutputSettings {
152
- H265PackagingType?: MsSmoothH265PackagingType;
153
- NameModifier?: string;
152
+ H265PackagingType?: MsSmoothH265PackagingType | undefined;
153
+ NameModifier?: string | undefined;
154
154
  }
155
155
  export interface MultiplexM2tsSettings {
156
- AbsentInputAudioBehavior?: M2tsAbsentInputAudioBehavior;
157
- Arib?: M2tsArib;
158
- AudioBufferModel?: M2tsAudioBufferModel;
159
- AudioFramesPerPes?: number;
160
- AudioStreamType?: M2tsAudioStreamType;
161
- CcDescriptor?: M2tsCcDescriptor;
162
- Ebif?: M2tsEbifControl;
163
- EsRateInPes?: M2tsEsRateInPes;
164
- Klv?: M2tsKlv;
165
- NielsenId3Behavior?: M2tsNielsenId3Behavior;
166
- PcrControl?: M2tsPcrControl;
167
- PcrPeriod?: number;
168
- Scte35Control?: M2tsScte35Control;
169
- Scte35PrerollPullupMilliseconds?: number;
156
+ AbsentInputAudioBehavior?: M2tsAbsentInputAudioBehavior | undefined;
157
+ Arib?: M2tsArib | undefined;
158
+ AudioBufferModel?: M2tsAudioBufferModel | undefined;
159
+ AudioFramesPerPes?: number | undefined;
160
+ AudioStreamType?: M2tsAudioStreamType | undefined;
161
+ CcDescriptor?: M2tsCcDescriptor | undefined;
162
+ Ebif?: M2tsEbifControl | undefined;
163
+ EsRateInPes?: M2tsEsRateInPes | undefined;
164
+ Klv?: M2tsKlv | undefined;
165
+ NielsenId3Behavior?: M2tsNielsenId3Behavior | undefined;
166
+ PcrControl?: M2tsPcrControl | undefined;
167
+ PcrPeriod?: number | undefined;
168
+ Scte35Control?: M2tsScte35Control | undefined;
169
+ Scte35PrerollPullupMilliseconds?: number | undefined;
170
170
  }
171
171
  export interface MultiplexContainerSettings {
172
- MultiplexM2tsSettings?: MultiplexM2tsSettings;
172
+ MultiplexM2tsSettings?: MultiplexM2tsSettings | undefined;
173
173
  }
174
174
  export interface OutputLocationRef {
175
- DestinationRefId?: string;
175
+ DestinationRefId?: string | undefined;
176
176
  }
177
177
  export interface MultiplexOutputSettings {
178
178
  Destination: OutputLocationRef | undefined;
179
- ContainerSettings?: MultiplexContainerSettings;
179
+ ContainerSettings?: MultiplexContainerSettings | undefined;
180
180
  }
181
181
  export declare const RtmpOutputCertificateMode: {
182
182
  readonly SELF_SIGNED: "SELF_SIGNED";
@@ -185,13 +185,13 @@ export declare const RtmpOutputCertificateMode: {
185
185
  export type RtmpOutputCertificateMode =
186
186
  (typeof RtmpOutputCertificateMode)[keyof typeof RtmpOutputCertificateMode];
187
187
  export interface RtmpOutputSettings {
188
- CertificateMode?: RtmpOutputCertificateMode;
189
- ConnectionRetryInterval?: number;
188
+ CertificateMode?: RtmpOutputCertificateMode | undefined;
189
+ ConnectionRetryInterval?: number | undefined;
190
190
  Destination: OutputLocationRef | undefined;
191
- NumRetries?: number;
191
+ NumRetries?: number | undefined;
192
192
  }
193
193
  export interface UdpContainerSettings {
194
- M2tsSettings?: M2tsSettings;
194
+ M2tsSettings?: M2tsSettings | undefined;
195
195
  }
196
196
  export declare const SrtEncryptionType: {
197
197
  readonly AES128: "AES128";
@@ -201,11 +201,11 @@ export declare const SrtEncryptionType: {
201
201
  export type SrtEncryptionType =
202
202
  (typeof SrtEncryptionType)[keyof typeof SrtEncryptionType];
203
203
  export interface SrtOutputSettings {
204
- BufferMsec?: number;
204
+ BufferMsec?: number | undefined;
205
205
  ContainerSettings: UdpContainerSettings | undefined;
206
206
  Destination: OutputLocationRef | undefined;
207
- EncryptionType?: SrtEncryptionType;
208
- Latency?: number;
207
+ EncryptionType?: SrtEncryptionType | undefined;
208
+ Latency?: number | undefined;
209
209
  }
210
210
  export declare const FecOutputIncludeFec: {
211
211
  readonly COLUMN: "COLUMN";
@@ -214,34 +214,34 @@ export declare const FecOutputIncludeFec: {
214
214
  export type FecOutputIncludeFec =
215
215
  (typeof FecOutputIncludeFec)[keyof typeof FecOutputIncludeFec];
216
216
  export interface FecOutputSettings {
217
- ColumnDepth?: number;
218
- IncludeFec?: FecOutputIncludeFec;
219
- RowLength?: number;
217
+ ColumnDepth?: number | undefined;
218
+ IncludeFec?: FecOutputIncludeFec | undefined;
219
+ RowLength?: number | undefined;
220
220
  }
221
221
  export interface UdpOutputSettings {
222
- BufferMsec?: number;
222
+ BufferMsec?: number | undefined;
223
223
  ContainerSettings: UdpContainerSettings | undefined;
224
224
  Destination: OutputLocationRef | undefined;
225
- FecOutputSettings?: FecOutputSettings;
225
+ FecOutputSettings?: FecOutputSettings | undefined;
226
226
  }
227
227
  export interface OutputSettings {
228
- ArchiveOutputSettings?: ArchiveOutputSettings;
229
- FrameCaptureOutputSettings?: FrameCaptureOutputSettings;
230
- HlsOutputSettings?: HlsOutputSettings;
231
- MediaPackageOutputSettings?: MediaPackageOutputSettings;
232
- MsSmoothOutputSettings?: MsSmoothOutputSettings;
233
- MultiplexOutputSettings?: MultiplexOutputSettings;
234
- RtmpOutputSettings?: RtmpOutputSettings;
235
- UdpOutputSettings?: UdpOutputSettings;
236
- CmafIngestOutputSettings?: CmafIngestOutputSettings;
237
- SrtOutputSettings?: SrtOutputSettings;
228
+ ArchiveOutputSettings?: ArchiveOutputSettings | undefined;
229
+ FrameCaptureOutputSettings?: FrameCaptureOutputSettings | undefined;
230
+ HlsOutputSettings?: HlsOutputSettings | undefined;
231
+ MediaPackageOutputSettings?: MediaPackageOutputSettings | undefined;
232
+ MsSmoothOutputSettings?: MsSmoothOutputSettings | undefined;
233
+ MultiplexOutputSettings?: MultiplexOutputSettings | undefined;
234
+ RtmpOutputSettings?: RtmpOutputSettings | undefined;
235
+ UdpOutputSettings?: UdpOutputSettings | undefined;
236
+ CmafIngestOutputSettings?: CmafIngestOutputSettings | undefined;
237
+ SrtOutputSettings?: SrtOutputSettings | undefined;
238
238
  }
239
239
  export interface Output {
240
- AudioDescriptionNames?: string[];
241
- CaptionDescriptionNames?: string[];
242
- OutputName?: string;
240
+ AudioDescriptionNames?: string[] | undefined;
241
+ CaptionDescriptionNames?: string[] | undefined;
242
+ OutputName?: string | undefined;
243
243
  OutputSettings: OutputSettings | undefined;
244
- VideoDescriptionName?: string;
244
+ VideoDescriptionName?: string | undefined;
245
245
  }
246
246
  export declare const S3CannedAcl: {
247
247
  readonly AUTHENTICATED_READ: "AUTHENTICATED_READ";
@@ -251,15 +251,15 @@ export declare const S3CannedAcl: {
251
251
  };
252
252
  export type S3CannedAcl = (typeof S3CannedAcl)[keyof typeof S3CannedAcl];
253
253
  export interface ArchiveS3Settings {
254
- CannedAcl?: S3CannedAcl;
254
+ CannedAcl?: S3CannedAcl | undefined;
255
255
  }
256
256
  export interface ArchiveCdnSettings {
257
- ArchiveS3Settings?: ArchiveS3Settings;
257
+ ArchiveS3Settings?: ArchiveS3Settings | undefined;
258
258
  }
259
259
  export interface ArchiveGroupSettings {
260
- ArchiveCdnSettings?: ArchiveCdnSettings;
260
+ ArchiveCdnSettings?: ArchiveCdnSettings | undefined;
261
261
  Destination: OutputLocationRef | undefined;
262
- RolloverInterval?: number;
262
+ RolloverInterval?: number | undefined;
263
263
  }
264
264
  export declare const CmafNielsenId3Behavior: {
265
265
  readonly NO_PASSTHROUGH: "NO_PASSTHROUGH";
@@ -280,21 +280,21 @@ export type CmafIngestSegmentLengthUnits =
280
280
  (typeof CmafIngestSegmentLengthUnits)[keyof typeof CmafIngestSegmentLengthUnits];
281
281
  export interface CmafIngestGroupSettings {
282
282
  Destination: OutputLocationRef | undefined;
283
- NielsenId3Behavior?: CmafNielsenId3Behavior;
284
- Scte35Type?: Scte35Type;
285
- SegmentLength?: number;
286
- SegmentLengthUnits?: CmafIngestSegmentLengthUnits;
287
- SendDelayMs?: number;
283
+ NielsenId3Behavior?: CmafNielsenId3Behavior | undefined;
284
+ Scte35Type?: Scte35Type | undefined;
285
+ SegmentLength?: number | undefined;
286
+ SegmentLengthUnits?: CmafIngestSegmentLengthUnits | undefined;
287
+ SendDelayMs?: number | undefined;
288
288
  }
289
289
  export interface FrameCaptureS3Settings {
290
- CannedAcl?: S3CannedAcl;
290
+ CannedAcl?: S3CannedAcl | undefined;
291
291
  }
292
292
  export interface FrameCaptureCdnSettings {
293
- FrameCaptureS3Settings?: FrameCaptureS3Settings;
293
+ FrameCaptureS3Settings?: FrameCaptureS3Settings | undefined;
294
294
  }
295
295
  export interface FrameCaptureGroupSettings {
296
296
  Destination: OutputLocationRef | undefined;
297
- FrameCaptureCdnSettings?: FrameCaptureCdnSettings;
297
+ FrameCaptureCdnSettings?: FrameCaptureCdnSettings | undefined;
298
298
  }
299
299
  export declare const HlsCaptionLanguageSetting: {
300
300
  readonly INSERT: "INSERT";
@@ -340,19 +340,19 @@ export declare const HlsAkamaiHttpTransferMode: {
340
340
  export type HlsAkamaiHttpTransferMode =
341
341
  (typeof HlsAkamaiHttpTransferMode)[keyof typeof HlsAkamaiHttpTransferMode];
342
342
  export interface HlsAkamaiSettings {
343
- ConnectionRetryInterval?: number;
344
- FilecacheDuration?: number;
345
- HttpTransferMode?: HlsAkamaiHttpTransferMode;
346
- NumRetries?: number;
347
- RestartDelay?: number;
348
- Salt?: string;
349
- Token?: string;
343
+ ConnectionRetryInterval?: number | undefined;
344
+ FilecacheDuration?: number | undefined;
345
+ HttpTransferMode?: HlsAkamaiHttpTransferMode | undefined;
346
+ NumRetries?: number | undefined;
347
+ RestartDelay?: number | undefined;
348
+ Salt?: string | undefined;
349
+ Token?: string | undefined;
350
350
  }
351
351
  export interface HlsBasicPutSettings {
352
- ConnectionRetryInterval?: number;
353
- FilecacheDuration?: number;
354
- NumRetries?: number;
355
- RestartDelay?: number;
352
+ ConnectionRetryInterval?: number | undefined;
353
+ FilecacheDuration?: number | undefined;
354
+ NumRetries?: number | undefined;
355
+ RestartDelay?: number | undefined;
356
356
  }
357
357
  export declare const HlsMediaStoreStorageClass: {
358
358
  readonly TEMPORAL: "TEMPORAL";
@@ -360,14 +360,14 @@ export declare const HlsMediaStoreStorageClass: {
360
360
  export type HlsMediaStoreStorageClass =
361
361
  (typeof HlsMediaStoreStorageClass)[keyof typeof HlsMediaStoreStorageClass];
362
362
  export interface HlsMediaStoreSettings {
363
- ConnectionRetryInterval?: number;
364
- FilecacheDuration?: number;
365
- MediaStoreStorageClass?: HlsMediaStoreStorageClass;
366
- NumRetries?: number;
367
- RestartDelay?: number;
363
+ ConnectionRetryInterval?: number | undefined;
364
+ FilecacheDuration?: number | undefined;
365
+ MediaStoreStorageClass?: HlsMediaStoreStorageClass | undefined;
366
+ NumRetries?: number | undefined;
367
+ RestartDelay?: number | undefined;
368
368
  }
369
369
  export interface HlsS3Settings {
370
- CannedAcl?: S3CannedAcl;
370
+ CannedAcl?: S3CannedAcl | undefined;
371
371
  }
372
372
  export declare const HlsWebdavHttpTransferMode: {
373
373
  readonly CHUNKED: "CHUNKED";
@@ -376,18 +376,18 @@ export declare const HlsWebdavHttpTransferMode: {
376
376
  export type HlsWebdavHttpTransferMode =
377
377
  (typeof HlsWebdavHttpTransferMode)[keyof typeof HlsWebdavHttpTransferMode];
378
378
  export interface HlsWebdavSettings {
379
- ConnectionRetryInterval?: number;
380
- FilecacheDuration?: number;
381
- HttpTransferMode?: HlsWebdavHttpTransferMode;
382
- NumRetries?: number;
383
- RestartDelay?: number;
379
+ ConnectionRetryInterval?: number | undefined;
380
+ FilecacheDuration?: number | undefined;
381
+ HttpTransferMode?: HlsWebdavHttpTransferMode | undefined;
382
+ NumRetries?: number | undefined;
383
+ RestartDelay?: number | undefined;
384
384
  }
385
385
  export interface HlsCdnSettings {
386
- HlsAkamaiSettings?: HlsAkamaiSettings;
387
- HlsBasicPutSettings?: HlsBasicPutSettings;
388
- HlsMediaStoreSettings?: HlsMediaStoreSettings;
389
- HlsS3Settings?: HlsS3Settings;
390
- HlsWebdavSettings?: HlsWebdavSettings;
386
+ HlsAkamaiSettings?: HlsAkamaiSettings | undefined;
387
+ HlsBasicPutSettings?: HlsBasicPutSettings | undefined;
388
+ HlsMediaStoreSettings?: HlsMediaStoreSettings | undefined;
389
+ HlsS3Settings?: HlsS3Settings | undefined;
390
+ HlsWebdavSettings?: HlsWebdavSettings | undefined;
391
391
  }
392
392
  export declare const HlsId3SegmentTaggingState: {
393
393
  readonly DISABLED: "DISABLED";
@@ -425,11 +425,11 @@ export declare const HlsIvSource: {
425
425
  };
426
426
  export type HlsIvSource = (typeof HlsIvSource)[keyof typeof HlsIvSource];
427
427
  export interface StaticKeySettings {
428
- KeyProviderServer?: InputLocation;
428
+ KeyProviderServer?: InputLocation | undefined;
429
429
  StaticKeyValue: string | undefined;
430
430
  }
431
431
  export interface KeyProviderSettings {
432
- StaticKeySettings?: StaticKeySettings;
432
+ StaticKeySettings?: StaticKeySettings | undefined;
433
433
  }
434
434
  export declare const HlsManifestCompression: {
435
435
  readonly GZIP: "GZIP";
@@ -498,49 +498,49 @@ export declare const HlsTsFileMode: {
498
498
  };
499
499
  export type HlsTsFileMode = (typeof HlsTsFileMode)[keyof typeof HlsTsFileMode];
500
500
  export interface HlsGroupSettings {
501
- AdMarkers?: HlsAdMarkers[];
502
- BaseUrlContent?: string;
503
- BaseUrlContent1?: string;
504
- BaseUrlManifest?: string;
505
- BaseUrlManifest1?: string;
506
- CaptionLanguageMappings?: CaptionLanguageMapping[];
507
- CaptionLanguageSetting?: HlsCaptionLanguageSetting;
508
- ClientCache?: HlsClientCache;
509
- CodecSpecification?: HlsCodecSpecification;
510
- ConstantIv?: string;
501
+ AdMarkers?: HlsAdMarkers[] | undefined;
502
+ BaseUrlContent?: string | undefined;
503
+ BaseUrlContent1?: string | undefined;
504
+ BaseUrlManifest?: string | undefined;
505
+ BaseUrlManifest1?: string | undefined;
506
+ CaptionLanguageMappings?: CaptionLanguageMapping[] | undefined;
507
+ CaptionLanguageSetting?: HlsCaptionLanguageSetting | undefined;
508
+ ClientCache?: HlsClientCache | undefined;
509
+ CodecSpecification?: HlsCodecSpecification | undefined;
510
+ ConstantIv?: string | undefined;
511
511
  Destination: OutputLocationRef | undefined;
512
- DirectoryStructure?: HlsDirectoryStructure;
513
- DiscontinuityTags?: HlsDiscontinuityTags;
514
- EncryptionType?: HlsEncryptionType;
515
- HlsCdnSettings?: HlsCdnSettings;
516
- HlsId3SegmentTagging?: HlsId3SegmentTaggingState;
517
- IFrameOnlyPlaylists?: IFrameOnlyPlaylistType;
518
- IncompleteSegmentBehavior?: HlsIncompleteSegmentBehavior;
519
- IndexNSegments?: number;
520
- InputLossAction?: InputLossActionForHlsOut;
521
- IvInManifest?: HlsIvInManifest;
522
- IvSource?: HlsIvSource;
523
- KeepSegments?: number;
524
- KeyFormat?: string;
525
- KeyFormatVersions?: string;
526
- KeyProviderSettings?: KeyProviderSettings;
527
- ManifestCompression?: HlsManifestCompression;
528
- ManifestDurationFormat?: HlsManifestDurationFormat;
529
- MinSegmentLength?: number;
530
- Mode?: HlsMode;
531
- OutputSelection?: HlsOutputSelection;
532
- ProgramDateTime?: HlsProgramDateTime;
533
- ProgramDateTimeClock?: HlsProgramDateTimeClock;
534
- ProgramDateTimePeriod?: number;
535
- RedundantManifest?: HlsRedundantManifest;
536
- SegmentLength?: number;
537
- SegmentationMode?: HlsSegmentationMode;
538
- SegmentsPerSubdirectory?: number;
539
- StreamInfResolution?: HlsStreamInfResolution;
540
- TimedMetadataId3Frame?: HlsTimedMetadataId3Frame;
541
- TimedMetadataId3Period?: number;
542
- TimestampDeltaMilliseconds?: number;
543
- TsFileMode?: HlsTsFileMode;
512
+ DirectoryStructure?: HlsDirectoryStructure | undefined;
513
+ DiscontinuityTags?: HlsDiscontinuityTags | undefined;
514
+ EncryptionType?: HlsEncryptionType | undefined;
515
+ HlsCdnSettings?: HlsCdnSettings | undefined;
516
+ HlsId3SegmentTagging?: HlsId3SegmentTaggingState | undefined;
517
+ IFrameOnlyPlaylists?: IFrameOnlyPlaylistType | undefined;
518
+ IncompleteSegmentBehavior?: HlsIncompleteSegmentBehavior | undefined;
519
+ IndexNSegments?: number | undefined;
520
+ InputLossAction?: InputLossActionForHlsOut | undefined;
521
+ IvInManifest?: HlsIvInManifest | undefined;
522
+ IvSource?: HlsIvSource | undefined;
523
+ KeepSegments?: number | undefined;
524
+ KeyFormat?: string | undefined;
525
+ KeyFormatVersions?: string | undefined;
526
+ KeyProviderSettings?: KeyProviderSettings | undefined;
527
+ ManifestCompression?: HlsManifestCompression | undefined;
528
+ ManifestDurationFormat?: HlsManifestDurationFormat | undefined;
529
+ MinSegmentLength?: number | undefined;
530
+ Mode?: HlsMode | undefined;
531
+ OutputSelection?: HlsOutputSelection | undefined;
532
+ ProgramDateTime?: HlsProgramDateTime | undefined;
533
+ ProgramDateTimeClock?: HlsProgramDateTimeClock | undefined;
534
+ ProgramDateTimePeriod?: number | undefined;
535
+ RedundantManifest?: HlsRedundantManifest | undefined;
536
+ SegmentLength?: number | undefined;
537
+ SegmentationMode?: HlsSegmentationMode | undefined;
538
+ SegmentsPerSubdirectory?: number | undefined;
539
+ StreamInfResolution?: HlsStreamInfResolution | undefined;
540
+ TimedMetadataId3Frame?: HlsTimedMetadataId3Frame | undefined;
541
+ TimedMetadataId3Period?: number | undefined;
542
+ TimestampDeltaMilliseconds?: number | undefined;
543
+ TsFileMode?: HlsTsFileMode | undefined;
544
544
  }
545
545
  export interface MediaPackageGroupSettings {
546
546
  Destination: OutputLocationRef | undefined;
@@ -602,25 +602,25 @@ export declare const SmoothGroupTimestampOffsetMode: {
602
602
  export type SmoothGroupTimestampOffsetMode =
603
603
  (typeof SmoothGroupTimestampOffsetMode)[keyof typeof SmoothGroupTimestampOffsetMode];
604
604
  export interface MsSmoothGroupSettings {
605
- AcquisitionPointId?: string;
606
- AudioOnlyTimecodeControl?: SmoothGroupAudioOnlyTimecodeControl;
607
- CertificateMode?: SmoothGroupCertificateMode;
608
- ConnectionRetryInterval?: number;
605
+ AcquisitionPointId?: string | undefined;
606
+ AudioOnlyTimecodeControl?: SmoothGroupAudioOnlyTimecodeControl | undefined;
607
+ CertificateMode?: SmoothGroupCertificateMode | undefined;
608
+ ConnectionRetryInterval?: number | undefined;
609
609
  Destination: OutputLocationRef | undefined;
610
- EventId?: string;
611
- EventIdMode?: SmoothGroupEventIdMode;
612
- EventStopBehavior?: SmoothGroupEventStopBehavior;
613
- FilecacheDuration?: number;
614
- FragmentLength?: number;
615
- InputLossAction?: InputLossActionForMsSmoothOut;
616
- NumRetries?: number;
617
- RestartDelay?: number;
618
- SegmentationMode?: SmoothGroupSegmentationMode;
619
- SendDelayMs?: number;
620
- SparseTrackType?: SmoothGroupSparseTrackType;
621
- StreamManifestBehavior?: SmoothGroupStreamManifestBehavior;
622
- TimestampOffset?: string;
623
- TimestampOffsetMode?: SmoothGroupTimestampOffsetMode;
610
+ EventId?: string | undefined;
611
+ EventIdMode?: SmoothGroupEventIdMode | undefined;
612
+ EventStopBehavior?: SmoothGroupEventStopBehavior | undefined;
613
+ FilecacheDuration?: number | undefined;
614
+ FragmentLength?: number | undefined;
615
+ InputLossAction?: InputLossActionForMsSmoothOut | undefined;
616
+ NumRetries?: number | undefined;
617
+ RestartDelay?: number | undefined;
618
+ SegmentationMode?: SmoothGroupSegmentationMode | undefined;
619
+ SendDelayMs?: number | undefined;
620
+ SparseTrackType?: SmoothGroupSparseTrackType | undefined;
621
+ StreamManifestBehavior?: SmoothGroupStreamManifestBehavior | undefined;
622
+ TimestampOffset?: string | undefined;
623
+ TimestampOffsetMode?: SmoothGroupTimestampOffsetMode | undefined;
624
624
  }
625
625
  export interface MultiplexGroupSettings {}
626
626
  export declare const RtmpAdMarkers: {
@@ -660,14 +660,14 @@ export declare const InputLossActionForRtmpOut: {
660
660
  export type InputLossActionForRtmpOut =
661
661
  (typeof InputLossActionForRtmpOut)[keyof typeof InputLossActionForRtmpOut];
662
662
  export interface RtmpGroupSettings {
663
- AdMarkers?: RtmpAdMarkers[];
664
- AuthenticationScheme?: AuthenticationScheme;
665
- CacheFullBehavior?: RtmpCacheFullBehavior;
666
- CacheLength?: number;
667
- CaptionData?: RtmpCaptionData;
668
- InputLossAction?: InputLossActionForRtmpOut;
669
- RestartDelay?: number;
670
- IncludeFillerNalUnits?: IncludeFillerNalUnits;
663
+ AdMarkers?: RtmpAdMarkers[] | undefined;
664
+ AuthenticationScheme?: AuthenticationScheme | undefined;
665
+ CacheFullBehavior?: RtmpCacheFullBehavior | undefined;
666
+ CacheLength?: number | undefined;
667
+ CaptionData?: RtmpCaptionData | undefined;
668
+ InputLossAction?: InputLossActionForRtmpOut | undefined;
669
+ RestartDelay?: number | undefined;
670
+ IncludeFillerNalUnits?: IncludeFillerNalUnits | undefined;
671
671
  }
672
672
  export declare const InputLossActionForUdpOut: {
673
673
  readonly DROP_PROGRAM: "DROP_PROGRAM";
@@ -677,7 +677,7 @@ export declare const InputLossActionForUdpOut: {
677
677
  export type InputLossActionForUdpOut =
678
678
  (typeof InputLossActionForUdpOut)[keyof typeof InputLossActionForUdpOut];
679
679
  export interface SrtGroupSettings {
680
- InputLossAction?: InputLossActionForUdpOut;
680
+ InputLossAction?: InputLossActionForUdpOut | undefined;
681
681
  }
682
682
  export declare const UdpTimedMetadataId3Frame: {
683
683
  readonly NONE: "NONE";
@@ -687,33 +687,33 @@ export declare const UdpTimedMetadataId3Frame: {
687
687
  export type UdpTimedMetadataId3Frame =
688
688
  (typeof UdpTimedMetadataId3Frame)[keyof typeof UdpTimedMetadataId3Frame];
689
689
  export interface UdpGroupSettings {
690
- InputLossAction?: InputLossActionForUdpOut;
691
- TimedMetadataId3Frame?: UdpTimedMetadataId3Frame;
692
- TimedMetadataId3Period?: number;
690
+ InputLossAction?: InputLossActionForUdpOut | undefined;
691
+ TimedMetadataId3Frame?: UdpTimedMetadataId3Frame | undefined;
692
+ TimedMetadataId3Period?: number | undefined;
693
693
  }
694
694
  export interface OutputGroupSettings {
695
- ArchiveGroupSettings?: ArchiveGroupSettings;
696
- FrameCaptureGroupSettings?: FrameCaptureGroupSettings;
697
- HlsGroupSettings?: HlsGroupSettings;
698
- MediaPackageGroupSettings?: MediaPackageGroupSettings;
699
- MsSmoothGroupSettings?: MsSmoothGroupSettings;
700
- MultiplexGroupSettings?: MultiplexGroupSettings;
701
- RtmpGroupSettings?: RtmpGroupSettings;
702
- UdpGroupSettings?: UdpGroupSettings;
703
- CmafIngestGroupSettings?: CmafIngestGroupSettings;
704
- SrtGroupSettings?: SrtGroupSettings;
695
+ ArchiveGroupSettings?: ArchiveGroupSettings | undefined;
696
+ FrameCaptureGroupSettings?: FrameCaptureGroupSettings | undefined;
697
+ HlsGroupSettings?: HlsGroupSettings | undefined;
698
+ MediaPackageGroupSettings?: MediaPackageGroupSettings | undefined;
699
+ MsSmoothGroupSettings?: MsSmoothGroupSettings | undefined;
700
+ MultiplexGroupSettings?: MultiplexGroupSettings | undefined;
701
+ RtmpGroupSettings?: RtmpGroupSettings | undefined;
702
+ UdpGroupSettings?: UdpGroupSettings | undefined;
703
+ CmafIngestGroupSettings?: CmafIngestGroupSettings | undefined;
704
+ SrtGroupSettings?: SrtGroupSettings | undefined;
705
705
  }
706
706
  export interface OutputGroup {
707
- Name?: string;
707
+ Name?: string | undefined;
708
708
  OutputGroupSettings: OutputGroupSettings | undefined;
709
709
  Outputs: Output[] | undefined;
710
710
  }
711
711
  export interface PipelineDetail {
712
- ActiveInputAttachmentName?: string;
713
- ActiveInputSwitchActionName?: string;
714
- ActiveMotionGraphicsActionName?: string;
715
- ActiveMotionGraphicsUri?: string;
716
- PipelineId?: string;
712
+ ActiveInputAttachmentName?: string | undefined;
713
+ ActiveInputSwitchActionName?: string | undefined;
714
+ ActiveMotionGraphicsActionName?: string | undefined;
715
+ ActiveMotionGraphicsUri?: string | undefined;
716
+ PipelineId?: string | undefined;
717
717
  }
718
718
  export declare const PipelineId: {
719
719
  readonly PIPELINE_0: "PIPELINE_0";
@@ -731,8 +731,8 @@ export declare const ReservationAutomaticRenewal: {
731
731
  export type ReservationAutomaticRenewal =
732
732
  (typeof ReservationAutomaticRenewal)[keyof typeof ReservationAutomaticRenewal];
733
733
  export interface RenewalSettings {
734
- AutomaticRenewal?: ReservationAutomaticRenewal;
735
- RenewalCount?: number;
734
+ AutomaticRenewal?: ReservationAutomaticRenewal | undefined;
735
+ RenewalCount?: number | undefined;
736
736
  }
737
737
  export declare const ReservationState: {
738
738
  readonly ACTIVE: "ACTIVE";
@@ -743,37 +743,37 @@ export declare const ReservationState: {
743
743
  export type ReservationState =
744
744
  (typeof ReservationState)[keyof typeof ReservationState];
745
745
  export interface Reservation {
746
- Arn?: string;
747
- Count?: number;
748
- CurrencyCode?: string;
749
- Duration?: number;
750
- DurationUnits?: OfferingDurationUnits;
751
- End?: string;
752
- FixedPrice?: number;
753
- Name?: string;
754
- OfferingDescription?: string;
755
- OfferingId?: string;
756
- OfferingType?: OfferingType;
757
- Region?: string;
758
- RenewalSettings?: RenewalSettings;
759
- ReservationId?: string;
760
- ResourceSpecification?: ReservationResourceSpecification;
761
- Start?: string;
762
- State?: ReservationState;
763
- Tags?: Record<string, string>;
764
- UsagePrice?: number;
746
+ Arn?: string | undefined;
747
+ Count?: number | undefined;
748
+ CurrencyCode?: string | undefined;
749
+ Duration?: number | undefined;
750
+ DurationUnits?: OfferingDurationUnits | undefined;
751
+ End?: string | undefined;
752
+ FixedPrice?: number | undefined;
753
+ Name?: string | undefined;
754
+ OfferingDescription?: string | undefined;
755
+ OfferingId?: string | undefined;
756
+ OfferingType?: OfferingType | undefined;
757
+ Region?: string | undefined;
758
+ RenewalSettings?: RenewalSettings | undefined;
759
+ ReservationId?: string | undefined;
760
+ ResourceSpecification?: ReservationResourceSpecification | undefined;
761
+ Start?: string | undefined;
762
+ State?: ReservationState | undefined;
763
+ Tags?: Record<string, string> | undefined;
764
+ UsagePrice?: number | undefined;
765
765
  }
766
766
  export interface RouteCreateRequest {
767
- Cidr?: string;
768
- Gateway?: string;
767
+ Cidr?: string | undefined;
768
+ Gateway?: string | undefined;
769
769
  }
770
770
  export interface RouteUpdateRequest {
771
- Cidr?: string;
772
- Gateway?: string;
771
+ Cidr?: string | undefined;
772
+ Gateway?: string | undefined;
773
773
  }
774
774
  export interface HlsId3SegmentTaggingScheduleActionSettings {
775
- Tag?: string;
776
- Id3?: string;
775
+ Tag?: string | undefined;
776
+ Id3?: string | undefined;
777
777
  }
778
778
  export interface HlsTimedMetadataScheduleActionSettings {
779
779
  Id3: string | undefined;
@@ -785,7 +785,7 @@ export declare const InputTimecodeSource: {
785
785
  export type InputTimecodeSource =
786
786
  (typeof InputTimecodeSource)[keyof typeof InputTimecodeSource];
787
787
  export interface StartTimecode {
788
- Timecode?: string;
788
+ Timecode?: string | undefined;
789
789
  }
790
790
  export declare const LastFrameClippingBehavior: {
791
791
  readonly EXCLUDE_LAST_FRAME: "EXCLUDE_LAST_FRAME";
@@ -794,33 +794,33 @@ export declare const LastFrameClippingBehavior: {
794
794
  export type LastFrameClippingBehavior =
795
795
  (typeof LastFrameClippingBehavior)[keyof typeof LastFrameClippingBehavior];
796
796
  export interface StopTimecode {
797
- LastFrameClippingBehavior?: LastFrameClippingBehavior;
798
- Timecode?: string;
797
+ LastFrameClippingBehavior?: LastFrameClippingBehavior | undefined;
798
+ Timecode?: string | undefined;
799
799
  }
800
800
  export interface InputClippingSettings {
801
801
  InputTimecodeSource: InputTimecodeSource | undefined;
802
- StartTimecode?: StartTimecode;
803
- StopTimecode?: StopTimecode;
802
+ StartTimecode?: StartTimecode | undefined;
803
+ StopTimecode?: StopTimecode | undefined;
804
804
  }
805
805
  export interface InputPrepareScheduleActionSettings {
806
- InputAttachmentNameReference?: string;
807
- InputClippingSettings?: InputClippingSettings;
808
- UrlPath?: string[];
806
+ InputAttachmentNameReference?: string | undefined;
807
+ InputClippingSettings?: InputClippingSettings | undefined;
808
+ UrlPath?: string[] | undefined;
809
809
  }
810
810
  export interface InputSwitchScheduleActionSettings {
811
811
  InputAttachmentNameReference: string | undefined;
812
- InputClippingSettings?: InputClippingSettings;
813
- UrlPath?: string[];
812
+ InputClippingSettings?: InputClippingSettings | undefined;
813
+ UrlPath?: string[] | undefined;
814
814
  }
815
815
  export interface MotionGraphicsActivateScheduleActionSettings {
816
- Duration?: number;
817
- PasswordParam?: string;
818
- Url?: string;
819
- Username?: string;
816
+ Duration?: number | undefined;
817
+ PasswordParam?: string | undefined;
818
+ Url?: string | undefined;
819
+ Username?: string | undefined;
820
820
  }
821
821
  export interface MotionGraphicsDeactivateScheduleActionSettings {}
822
822
  export interface PauseStateScheduleActionSettings {
823
- Pipelines?: PipelinePauseStateSettings[];
823
+ Pipelines?: PipelinePauseStateSettings[] | undefined;
824
824
  }
825
825
  export declare const Scte35InputMode: {
826
826
  readonly FIXED: "FIXED";
@@ -829,14 +829,14 @@ export declare const Scte35InputMode: {
829
829
  export type Scte35InputMode =
830
830
  (typeof Scte35InputMode)[keyof typeof Scte35InputMode];
831
831
  export interface Scte35InputScheduleActionSettings {
832
- InputAttachmentNameReference?: string;
832
+ InputAttachmentNameReference?: string | undefined;
833
833
  Mode: Scte35InputMode | undefined;
834
834
  }
835
835
  export interface Scte35ReturnToNetworkScheduleActionSettings {
836
836
  SpliceEventId: number | undefined;
837
837
  }
838
838
  export interface Scte35SpliceInsertScheduleActionSettings {
839
- Duration?: number;
839
+ Duration?: number | undefined;
840
840
  SpliceEventId: number | undefined;
841
841
  }
842
842
  export declare const Scte35ArchiveAllowedFlag: {
@@ -878,17 +878,17 @@ export declare const Scte35SegmentationCancelIndicator: {
878
878
  export type Scte35SegmentationCancelIndicator =
879
879
  (typeof Scte35SegmentationCancelIndicator)[keyof typeof Scte35SegmentationCancelIndicator];
880
880
  export interface Scte35SegmentationDescriptor {
881
- DeliveryRestrictions?: Scte35DeliveryRestrictions;
882
- SegmentNum?: number;
881
+ DeliveryRestrictions?: Scte35DeliveryRestrictions | undefined;
882
+ SegmentNum?: number | undefined;
883
883
  SegmentationCancelIndicator: Scte35SegmentationCancelIndicator | undefined;
884
- SegmentationDuration?: number;
884
+ SegmentationDuration?: number | undefined;
885
885
  SegmentationEventId: number | undefined;
886
- SegmentationTypeId?: number;
887
- SegmentationUpid?: string;
888
- SegmentationUpidType?: number;
889
- SegmentsExpected?: number;
890
- SubSegmentNum?: number;
891
- SubSegmentsExpected?: number;
886
+ SegmentationTypeId?: number | undefined;
887
+ SegmentationUpid?: string | undefined;
888
+ SegmentationUpidType?: number | undefined;
889
+ SegmentsExpected?: number | undefined;
890
+ SubSegmentNum?: number | undefined;
891
+ SubSegmentsExpected?: number | undefined;
892
892
  }
893
893
  export interface Scte35DescriptorSettings {
894
894
  SegmentationDescriptorScte35DescriptorSettings:
@@ -902,55 +902,73 @@ export interface Scte35TimeSignalScheduleActionSettings {
902
902
  Scte35Descriptors: Scte35Descriptor[] | undefined;
903
903
  }
904
904
  export interface StaticImageActivateScheduleActionSettings {
905
- Duration?: number;
906
- FadeIn?: number;
907
- FadeOut?: number;
908
- Height?: number;
905
+ Duration?: number | undefined;
906
+ FadeIn?: number | undefined;
907
+ FadeOut?: number | undefined;
908
+ Height?: number | undefined;
909
909
  Image: InputLocation | undefined;
910
- ImageX?: number;
911
- ImageY?: number;
912
- Layer?: number;
913
- Opacity?: number;
914
- Width?: number;
910
+ ImageX?: number | undefined;
911
+ ImageY?: number | undefined;
912
+ Layer?: number | undefined;
913
+ Opacity?: number | undefined;
914
+ Width?: number | undefined;
915
915
  }
916
916
  export interface StaticImageDeactivateScheduleActionSettings {
917
- FadeOut?: number;
918
- Layer?: number;
917
+ FadeOut?: number | undefined;
918
+ Layer?: number | undefined;
919
919
  }
920
920
  export interface StaticImageOutputActivateScheduleActionSettings {
921
- Duration?: number;
922
- FadeIn?: number;
923
- FadeOut?: number;
924
- Height?: number;
921
+ Duration?: number | undefined;
922
+ FadeIn?: number | undefined;
923
+ FadeOut?: number | undefined;
924
+ Height?: number | undefined;
925
925
  Image: InputLocation | undefined;
926
- ImageX?: number;
927
- ImageY?: number;
928
- Layer?: number;
929
- Opacity?: number;
926
+ ImageX?: number | undefined;
927
+ ImageY?: number | undefined;
928
+ Layer?: number | undefined;
929
+ Opacity?: number | undefined;
930
930
  OutputNames: string[] | undefined;
931
- Width?: number;
931
+ Width?: number | undefined;
932
932
  }
933
933
  export interface StaticImageOutputDeactivateScheduleActionSettings {
934
- FadeOut?: number;
935
- Layer?: number;
934
+ FadeOut?: number | undefined;
935
+ Layer?: number | undefined;
936
936
  OutputNames: string[] | undefined;
937
937
  }
938
938
  export interface ScheduleActionSettings {
939
- HlsId3SegmentTaggingSettings?: HlsId3SegmentTaggingScheduleActionSettings;
940
- HlsTimedMetadataSettings?: HlsTimedMetadataScheduleActionSettings;
941
- InputPrepareSettings?: InputPrepareScheduleActionSettings;
942
- InputSwitchSettings?: InputSwitchScheduleActionSettings;
943
- MotionGraphicsImageActivateSettings?: MotionGraphicsActivateScheduleActionSettings;
944
- MotionGraphicsImageDeactivateSettings?: MotionGraphicsDeactivateScheduleActionSettings;
945
- PauseStateSettings?: PauseStateScheduleActionSettings;
946
- Scte35InputSettings?: Scte35InputScheduleActionSettings;
947
- Scte35ReturnToNetworkSettings?: Scte35ReturnToNetworkScheduleActionSettings;
948
- Scte35SpliceInsertSettings?: Scte35SpliceInsertScheduleActionSettings;
949
- Scte35TimeSignalSettings?: Scte35TimeSignalScheduleActionSettings;
950
- StaticImageActivateSettings?: StaticImageActivateScheduleActionSettings;
951
- StaticImageDeactivateSettings?: StaticImageDeactivateScheduleActionSettings;
952
- StaticImageOutputActivateSettings?: StaticImageOutputActivateScheduleActionSettings;
953
- StaticImageOutputDeactivateSettings?: StaticImageOutputDeactivateScheduleActionSettings;
939
+ HlsId3SegmentTaggingSettings?:
940
+ | HlsId3SegmentTaggingScheduleActionSettings
941
+ | undefined;
942
+ HlsTimedMetadataSettings?: HlsTimedMetadataScheduleActionSettings | undefined;
943
+ InputPrepareSettings?: InputPrepareScheduleActionSettings | undefined;
944
+ InputSwitchSettings?: InputSwitchScheduleActionSettings | undefined;
945
+ MotionGraphicsImageActivateSettings?:
946
+ | MotionGraphicsActivateScheduleActionSettings
947
+ | undefined;
948
+ MotionGraphicsImageDeactivateSettings?:
949
+ | MotionGraphicsDeactivateScheduleActionSettings
950
+ | undefined;
951
+ PauseStateSettings?: PauseStateScheduleActionSettings | undefined;
952
+ Scte35InputSettings?: Scte35InputScheduleActionSettings | undefined;
953
+ Scte35ReturnToNetworkSettings?:
954
+ | Scte35ReturnToNetworkScheduleActionSettings
955
+ | undefined;
956
+ Scte35SpliceInsertSettings?:
957
+ | Scte35SpliceInsertScheduleActionSettings
958
+ | undefined;
959
+ Scte35TimeSignalSettings?: Scte35TimeSignalScheduleActionSettings | undefined;
960
+ StaticImageActivateSettings?:
961
+ | StaticImageActivateScheduleActionSettings
962
+ | undefined;
963
+ StaticImageDeactivateSettings?:
964
+ | StaticImageDeactivateScheduleActionSettings
965
+ | undefined;
966
+ StaticImageOutputActivateSettings?:
967
+ | StaticImageOutputActivateScheduleActionSettings
968
+ | undefined;
969
+ StaticImageOutputDeactivateSettings?:
970
+ | StaticImageOutputDeactivateScheduleActionSettings
971
+ | undefined;
954
972
  }
955
973
  export interface FixedModeScheduleActionStartSettings {
956
974
  Time: string | undefined;
@@ -966,9 +984,15 @@ export interface FollowModeScheduleActionStartSettings {
966
984
  }
967
985
  export interface ImmediateModeScheduleActionStartSettings {}
968
986
  export interface ScheduleActionStartSettings {
969
- FixedModeScheduleActionStartSettings?: FixedModeScheduleActionStartSettings;
970
- FollowModeScheduleActionStartSettings?: FollowModeScheduleActionStartSettings;
971
- ImmediateModeScheduleActionStartSettings?: ImmediateModeScheduleActionStartSettings;
987
+ FixedModeScheduleActionStartSettings?:
988
+ | FixedModeScheduleActionStartSettings
989
+ | undefined;
990
+ FollowModeScheduleActionStartSettings?:
991
+ | FollowModeScheduleActionStartSettings
992
+ | undefined;
993
+ ImmediateModeScheduleActionStartSettings?:
994
+ | ImmediateModeScheduleActionStartSettings
995
+ | undefined;
972
996
  }
973
997
  export interface ScheduleAction {
974
998
  ActionName: string | undefined;
@@ -1005,24 +1029,24 @@ export type SignalMapStatus =
1005
1029
  export interface SignalMapSummary {
1006
1030
  Arn: string | undefined;
1007
1031
  CreatedAt: Date | undefined;
1008
- Description?: string;
1032
+ Description?: string | undefined;
1009
1033
  Id: string | undefined;
1010
- ModifiedAt?: Date;
1034
+ ModifiedAt?: Date | undefined;
1011
1035
  MonitorDeploymentStatus: SignalMapMonitorDeploymentStatus | undefined;
1012
1036
  Name: string | undefined;
1013
1037
  Status: SignalMapStatus | undefined;
1014
- Tags?: Record<string, string>;
1038
+ Tags?: Record<string, string> | undefined;
1015
1039
  }
1016
1040
  export interface SrtCallerDecryptionRequest {
1017
- Algorithm?: Algorithm;
1018
- PassphraseSecretArn?: string;
1041
+ Algorithm?: Algorithm | undefined;
1042
+ PassphraseSecretArn?: string | undefined;
1019
1043
  }
1020
1044
  export interface SrtCallerSourceRequest {
1021
- Decryption?: SrtCallerDecryptionRequest;
1022
- MinimumLatency?: number;
1023
- SrtListenerAddress?: string;
1024
- SrtListenerPort?: string;
1025
- StreamId?: string;
1045
+ Decryption?: SrtCallerDecryptionRequest | undefined;
1046
+ MinimumLatency?: number | undefined;
1047
+ SrtListenerAddress?: string | undefined;
1048
+ SrtListenerPort?: string | undefined;
1049
+ StreamId?: string | undefined;
1026
1050
  }
1027
1051
  export declare const ThumbnailType: {
1028
1052
  readonly CURRENT_ACTIVE: "CURRENT_ACTIVE";
@@ -1030,14 +1054,14 @@ export declare const ThumbnailType: {
1030
1054
  };
1031
1055
  export type ThumbnailType = (typeof ThumbnailType)[keyof typeof ThumbnailType];
1032
1056
  export interface Thumbnail {
1033
- Body?: string;
1034
- ContentType?: string;
1035
- ThumbnailType?: ThumbnailType;
1036
- TimeStamp?: Date;
1057
+ Body?: string | undefined;
1058
+ ContentType?: string | undefined;
1059
+ ThumbnailType?: ThumbnailType | undefined;
1060
+ TimeStamp?: Date | undefined;
1037
1061
  }
1038
1062
  export interface ThumbnailDetail {
1039
- PipelineId?: string;
1040
- Thumbnails?: Thumbnail[];
1063
+ PipelineId?: string | undefined;
1064
+ Thumbnails?: Thumbnail[] | undefined;
1041
1065
  }
1042
1066
  export declare const InputDeviceTransferType: {
1043
1067
  readonly INCOMING: "INCOMING";
@@ -1046,14 +1070,14 @@ export declare const InputDeviceTransferType: {
1046
1070
  export type InputDeviceTransferType =
1047
1071
  (typeof InputDeviceTransferType)[keyof typeof InputDeviceTransferType];
1048
1072
  export interface TransferringInputDeviceSummary {
1049
- Id?: string;
1050
- Message?: string;
1051
- TargetCustomerId?: string;
1052
- TransferType?: InputDeviceTransferType;
1073
+ Id?: string | undefined;
1074
+ Message?: string | undefined;
1075
+ TargetCustomerId?: string | undefined;
1076
+ TransferType?: InputDeviceTransferType | undefined;
1053
1077
  }
1054
1078
  export interface ValidationError {
1055
- ElementPath?: string;
1056
- ErrorMessage?: string;
1079
+ ElementPath?: string | undefined;
1080
+ ErrorMessage?: string | undefined;
1057
1081
  }
1058
1082
  export declare const AfdSignaling: {
1059
1083
  readonly AUTO: "AUTO";
@@ -1065,10 +1089,10 @@ export interface ColorSpacePassthroughSettings {}
1065
1089
  export interface Rec601Settings {}
1066
1090
  export interface Rec709Settings {}
1067
1091
  export interface Av1ColorSpaceSettings {
1068
- ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings;
1069
- Hdr10Settings?: Hdr10Settings;
1070
- Rec601Settings?: Rec601Settings;
1071
- Rec709Settings?: Rec709Settings;
1092
+ ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings | undefined;
1093
+ Hdr10Settings?: Hdr10Settings | undefined;
1094
+ Rec601Settings?: Rec601Settings | undefined;
1095
+ Rec709Settings?: Rec709Settings | undefined;
1072
1096
  }
1073
1097
  export declare const FixedAfd: {
1074
1098
  readonly AFD_0000: "AFD_0000";
@@ -1145,26 +1169,26 @@ export type TimecodeBurninPosition =
1145
1169
  export interface TimecodeBurninSettings {
1146
1170
  FontSize: TimecodeBurninFontSize | undefined;
1147
1171
  Position: TimecodeBurninPosition | undefined;
1148
- Prefix?: string;
1172
+ Prefix?: string | undefined;
1149
1173
  }
1150
1174
  export interface Av1Settings {
1151
- AfdSignaling?: AfdSignaling;
1152
- BufSize?: number;
1153
- ColorSpaceSettings?: Av1ColorSpaceSettings;
1154
- FixedAfd?: FixedAfd;
1175
+ AfdSignaling?: AfdSignaling | undefined;
1176
+ BufSize?: number | undefined;
1177
+ ColorSpaceSettings?: Av1ColorSpaceSettings | undefined;
1178
+ FixedAfd?: FixedAfd | undefined;
1155
1179
  FramerateDenominator: number | undefined;
1156
1180
  FramerateNumerator: number | undefined;
1157
- GopSize?: number;
1158
- GopSizeUnits?: Av1GopSizeUnits;
1159
- Level?: Av1Level;
1160
- LookAheadRateControl?: Av1LookAheadRateControl;
1161
- MaxBitrate?: number;
1162
- MinIInterval?: number;
1163
- ParDenominator?: number;
1164
- ParNumerator?: number;
1165
- QvbrQualityLevel?: number;
1166
- SceneChangeDetect?: Av1SceneChangeDetect;
1167
- TimecodeBurninSettings?: TimecodeBurninSettings;
1181
+ GopSize?: number | undefined;
1182
+ GopSizeUnits?: Av1GopSizeUnits | undefined;
1183
+ Level?: Av1Level | undefined;
1184
+ LookAheadRateControl?: Av1LookAheadRateControl | undefined;
1185
+ MaxBitrate?: number | undefined;
1186
+ MinIInterval?: number | undefined;
1187
+ ParDenominator?: number | undefined;
1188
+ ParNumerator?: number | undefined;
1189
+ QvbrQualityLevel?: number | undefined;
1190
+ SceneChangeDetect?: Av1SceneChangeDetect | undefined;
1191
+ TimecodeBurninSettings?: TimecodeBurninSettings | undefined;
1168
1192
  }
1169
1193
  export declare const FrameCaptureIntervalUnit: {
1170
1194
  readonly MILLISECONDS: "MILLISECONDS";
@@ -1173,9 +1197,9 @@ export declare const FrameCaptureIntervalUnit: {
1173
1197
  export type FrameCaptureIntervalUnit =
1174
1198
  (typeof FrameCaptureIntervalUnit)[keyof typeof FrameCaptureIntervalUnit];
1175
1199
  export interface FrameCaptureSettings {
1176
- CaptureInterval?: number;
1177
- CaptureIntervalUnits?: FrameCaptureIntervalUnit;
1178
- TimecodeBurninSettings?: TimecodeBurninSettings;
1200
+ CaptureInterval?: number | undefined;
1201
+ CaptureIntervalUnits?: FrameCaptureIntervalUnit | undefined;
1202
+ TimecodeBurninSettings?: TimecodeBurninSettings | undefined;
1179
1203
  }
1180
1204
  export declare const H264AdaptiveQuantization: {
1181
1205
  readonly AUTO: "AUTO";
@@ -1195,9 +1219,9 @@ export declare const H264ColorMetadata: {
1195
1219
  export type H264ColorMetadata =
1196
1220
  (typeof H264ColorMetadata)[keyof typeof H264ColorMetadata];
1197
1221
  export interface H264ColorSpaceSettings {
1198
- ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings;
1199
- Rec601Settings?: Rec601Settings;
1200
- Rec709Settings?: Rec709Settings;
1222
+ ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings | undefined;
1223
+ Rec601Settings?: Rec601Settings | undefined;
1224
+ Rec709Settings?: Rec709Settings | undefined;
1201
1225
  }
1202
1226
  export declare const H264EntropyEncoding: {
1203
1227
  readonly CABAC: "CABAC";
@@ -1223,8 +1247,8 @@ export declare const BandwidthReductionFilterStrength: {
1223
1247
  export type BandwidthReductionFilterStrength =
1224
1248
  (typeof BandwidthReductionFilterStrength)[keyof typeof BandwidthReductionFilterStrength];
1225
1249
  export interface BandwidthReductionFilterSettings {
1226
- PostFilterSharpening?: BandwidthReductionPostFilterSharpening;
1227
- Strength?: BandwidthReductionFilterStrength;
1250
+ PostFilterSharpening?: BandwidthReductionPostFilterSharpening | undefined;
1251
+ Strength?: BandwidthReductionFilterStrength | undefined;
1228
1252
  }
1229
1253
  export declare const TemporalFilterPostFilterSharpening: {
1230
1254
  readonly AUTO: "AUTO";
@@ -1255,12 +1279,14 @@ export declare const TemporalFilterStrength: {
1255
1279
  export type TemporalFilterStrength =
1256
1280
  (typeof TemporalFilterStrength)[keyof typeof TemporalFilterStrength];
1257
1281
  export interface TemporalFilterSettings {
1258
- PostFilterSharpening?: TemporalFilterPostFilterSharpening;
1259
- Strength?: TemporalFilterStrength;
1282
+ PostFilterSharpening?: TemporalFilterPostFilterSharpening | undefined;
1283
+ Strength?: TemporalFilterStrength | undefined;
1260
1284
  }
1261
1285
  export interface H264FilterSettings {
1262
- TemporalFilterSettings?: TemporalFilterSettings;
1263
- BandwidthReductionFilterSettings?: BandwidthReductionFilterSettings;
1286
+ TemporalFilterSettings?: TemporalFilterSettings | undefined;
1287
+ BandwidthReductionFilterSettings?:
1288
+ | BandwidthReductionFilterSettings
1289
+ | undefined;
1264
1290
  }
1265
1291
  export declare const H264FlickerAq: {
1266
1292
  readonly DISABLED: "DISABLED";
@@ -1387,49 +1413,49 @@ export declare const H264TimecodeInsertionBehavior: {
1387
1413
  export type H264TimecodeInsertionBehavior =
1388
1414
  (typeof H264TimecodeInsertionBehavior)[keyof typeof H264TimecodeInsertionBehavior];
1389
1415
  export interface H264Settings {
1390
- AdaptiveQuantization?: H264AdaptiveQuantization;
1391
- AfdSignaling?: AfdSignaling;
1392
- Bitrate?: number;
1393
- BufFillPct?: number;
1394
- BufSize?: number;
1395
- ColorMetadata?: H264ColorMetadata;
1396
- ColorSpaceSettings?: H264ColorSpaceSettings;
1397
- EntropyEncoding?: H264EntropyEncoding;
1398
- FilterSettings?: H264FilterSettings;
1399
- FixedAfd?: FixedAfd;
1400
- FlickerAq?: H264FlickerAq;
1401
- ForceFieldPictures?: H264ForceFieldPictures;
1402
- FramerateControl?: H264FramerateControl;
1403
- FramerateDenominator?: number;
1404
- FramerateNumerator?: number;
1405
- GopBReference?: H264GopBReference;
1406
- GopClosedCadence?: number;
1407
- GopNumBFrames?: number;
1408
- GopSize?: number;
1409
- GopSizeUnits?: H264GopSizeUnits;
1410
- Level?: H264Level;
1411
- LookAheadRateControl?: H264LookAheadRateControl;
1412
- MaxBitrate?: number;
1413
- MinIInterval?: number;
1414
- NumRefFrames?: number;
1415
- ParControl?: H264ParControl;
1416
- ParDenominator?: number;
1417
- ParNumerator?: number;
1418
- Profile?: H264Profile;
1419
- QualityLevel?: H264QualityLevel;
1420
- QvbrQualityLevel?: number;
1421
- RateControlMode?: H264RateControlMode;
1422
- ScanType?: H264ScanType;
1423
- SceneChangeDetect?: H264SceneChangeDetect;
1424
- Slices?: number;
1425
- Softness?: number;
1426
- SpatialAq?: H264SpatialAq;
1427
- SubgopLength?: H264SubGopLength;
1428
- Syntax?: H264Syntax;
1429
- TemporalAq?: H264TemporalAq;
1430
- TimecodeInsertion?: H264TimecodeInsertionBehavior;
1431
- TimecodeBurninSettings?: TimecodeBurninSettings;
1432
- MinQp?: number;
1416
+ AdaptiveQuantization?: H264AdaptiveQuantization | undefined;
1417
+ AfdSignaling?: AfdSignaling | undefined;
1418
+ Bitrate?: number | undefined;
1419
+ BufFillPct?: number | undefined;
1420
+ BufSize?: number | undefined;
1421
+ ColorMetadata?: H264ColorMetadata | undefined;
1422
+ ColorSpaceSettings?: H264ColorSpaceSettings | undefined;
1423
+ EntropyEncoding?: H264EntropyEncoding | undefined;
1424
+ FilterSettings?: H264FilterSettings | undefined;
1425
+ FixedAfd?: FixedAfd | undefined;
1426
+ FlickerAq?: H264FlickerAq | undefined;
1427
+ ForceFieldPictures?: H264ForceFieldPictures | undefined;
1428
+ FramerateControl?: H264FramerateControl | undefined;
1429
+ FramerateDenominator?: number | undefined;
1430
+ FramerateNumerator?: number | undefined;
1431
+ GopBReference?: H264GopBReference | undefined;
1432
+ GopClosedCadence?: number | undefined;
1433
+ GopNumBFrames?: number | undefined;
1434
+ GopSize?: number | undefined;
1435
+ GopSizeUnits?: H264GopSizeUnits | undefined;
1436
+ Level?: H264Level | undefined;
1437
+ LookAheadRateControl?: H264LookAheadRateControl | undefined;
1438
+ MaxBitrate?: number | undefined;
1439
+ MinIInterval?: number | undefined;
1440
+ NumRefFrames?: number | undefined;
1441
+ ParControl?: H264ParControl | undefined;
1442
+ ParDenominator?: number | undefined;
1443
+ ParNumerator?: number | undefined;
1444
+ Profile?: H264Profile | undefined;
1445
+ QualityLevel?: H264QualityLevel | undefined;
1446
+ QvbrQualityLevel?: number | undefined;
1447
+ RateControlMode?: H264RateControlMode | undefined;
1448
+ ScanType?: H264ScanType | undefined;
1449
+ SceneChangeDetect?: H264SceneChangeDetect | undefined;
1450
+ Slices?: number | undefined;
1451
+ Softness?: number | undefined;
1452
+ SpatialAq?: H264SpatialAq | undefined;
1453
+ SubgopLength?: H264SubGopLength | undefined;
1454
+ Syntax?: H264Syntax | undefined;
1455
+ TemporalAq?: H264TemporalAq | undefined;
1456
+ TimecodeInsertion?: H264TimecodeInsertionBehavior | undefined;
1457
+ TimecodeBurninSettings?: TimecodeBurninSettings | undefined;
1458
+ MinQp?: number | undefined;
1433
1459
  }
1434
1460
  export declare const H265AdaptiveQuantization: {
1435
1461
  readonly AUTO: "AUTO";
@@ -1456,15 +1482,17 @@ export type H265ColorMetadata =
1456
1482
  (typeof H265ColorMetadata)[keyof typeof H265ColorMetadata];
1457
1483
  export interface DolbyVision81Settings {}
1458
1484
  export interface H265ColorSpaceSettings {
1459
- ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings;
1460
- DolbyVision81Settings?: DolbyVision81Settings;
1461
- Hdr10Settings?: Hdr10Settings;
1462
- Rec601Settings?: Rec601Settings;
1463
- Rec709Settings?: Rec709Settings;
1485
+ ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings | undefined;
1486
+ DolbyVision81Settings?: DolbyVision81Settings | undefined;
1487
+ Hdr10Settings?: Hdr10Settings | undefined;
1488
+ Rec601Settings?: Rec601Settings | undefined;
1489
+ Rec709Settings?: Rec709Settings | undefined;
1464
1490
  }
1465
1491
  export interface H265FilterSettings {
1466
- TemporalFilterSettings?: TemporalFilterSettings;
1467
- BandwidthReductionFilterSettings?: BandwidthReductionFilterSettings;
1492
+ TemporalFilterSettings?: TemporalFilterSettings | undefined;
1493
+ BandwidthReductionFilterSettings?:
1494
+ | BandwidthReductionFilterSettings
1495
+ | undefined;
1468
1496
  }
1469
1497
  export declare const H265FlickerAq: {
1470
1498
  readonly DISABLED: "DISABLED";
@@ -1560,43 +1588,43 @@ export declare const H265TreeblockSize: {
1560
1588
  export type H265TreeblockSize =
1561
1589
  (typeof H265TreeblockSize)[keyof typeof H265TreeblockSize];
1562
1590
  export interface H265Settings {
1563
- AdaptiveQuantization?: H265AdaptiveQuantization;
1564
- AfdSignaling?: AfdSignaling;
1565
- AlternativeTransferFunction?: H265AlternativeTransferFunction;
1566
- Bitrate?: number;
1567
- BufSize?: number;
1568
- ColorMetadata?: H265ColorMetadata;
1569
- ColorSpaceSettings?: H265ColorSpaceSettings;
1570
- FilterSettings?: H265FilterSettings;
1571
- FixedAfd?: FixedAfd;
1572
- FlickerAq?: H265FlickerAq;
1591
+ AdaptiveQuantization?: H265AdaptiveQuantization | undefined;
1592
+ AfdSignaling?: AfdSignaling | undefined;
1593
+ AlternativeTransferFunction?: H265AlternativeTransferFunction | undefined;
1594
+ Bitrate?: number | undefined;
1595
+ BufSize?: number | undefined;
1596
+ ColorMetadata?: H265ColorMetadata | undefined;
1597
+ ColorSpaceSettings?: H265ColorSpaceSettings | undefined;
1598
+ FilterSettings?: H265FilterSettings | undefined;
1599
+ FixedAfd?: FixedAfd | undefined;
1600
+ FlickerAq?: H265FlickerAq | undefined;
1573
1601
  FramerateDenominator: number | undefined;
1574
1602
  FramerateNumerator: number | undefined;
1575
- GopClosedCadence?: number;
1576
- GopSize?: number;
1577
- GopSizeUnits?: H265GopSizeUnits;
1578
- Level?: H265Level;
1579
- LookAheadRateControl?: H265LookAheadRateControl;
1580
- MaxBitrate?: number;
1581
- MinIInterval?: number;
1582
- ParDenominator?: number;
1583
- ParNumerator?: number;
1584
- Profile?: H265Profile;
1585
- QvbrQualityLevel?: number;
1586
- RateControlMode?: H265RateControlMode;
1587
- ScanType?: H265ScanType;
1588
- SceneChangeDetect?: H265SceneChangeDetect;
1589
- Slices?: number;
1590
- Tier?: H265Tier;
1591
- TimecodeInsertion?: H265TimecodeInsertionBehavior;
1592
- TimecodeBurninSettings?: TimecodeBurninSettings;
1593
- MvOverPictureBoundaries?: H265MvOverPictureBoundaries;
1594
- MvTemporalPredictor?: H265MvTemporalPredictor;
1595
- TileHeight?: number;
1596
- TilePadding?: H265TilePadding;
1597
- TileWidth?: number;
1598
- TreeblockSize?: H265TreeblockSize;
1599
- MinQp?: number;
1603
+ GopClosedCadence?: number | undefined;
1604
+ GopSize?: number | undefined;
1605
+ GopSizeUnits?: H265GopSizeUnits | undefined;
1606
+ Level?: H265Level | undefined;
1607
+ LookAheadRateControl?: H265LookAheadRateControl | undefined;
1608
+ MaxBitrate?: number | undefined;
1609
+ MinIInterval?: number | undefined;
1610
+ ParDenominator?: number | undefined;
1611
+ ParNumerator?: number | undefined;
1612
+ Profile?: H265Profile | undefined;
1613
+ QvbrQualityLevel?: number | undefined;
1614
+ RateControlMode?: H265RateControlMode | undefined;
1615
+ ScanType?: H265ScanType | undefined;
1616
+ SceneChangeDetect?: H265SceneChangeDetect | undefined;
1617
+ Slices?: number | undefined;
1618
+ Tier?: H265Tier | undefined;
1619
+ TimecodeInsertion?: H265TimecodeInsertionBehavior | undefined;
1620
+ TimecodeBurninSettings?: TimecodeBurninSettings | undefined;
1621
+ MvOverPictureBoundaries?: H265MvOverPictureBoundaries | undefined;
1622
+ MvTemporalPredictor?: H265MvTemporalPredictor | undefined;
1623
+ TileHeight?: number | undefined;
1624
+ TilePadding?: H265TilePadding | undefined;
1625
+ TileWidth?: number | undefined;
1626
+ TreeblockSize?: H265TreeblockSize | undefined;
1627
+ MinQp?: number | undefined;
1600
1628
  }
1601
1629
  export declare const Mpeg2AdaptiveQuantization: {
1602
1630
  readonly AUTO: "AUTO";
@@ -1626,7 +1654,7 @@ export declare const Mpeg2DisplayRatio: {
1626
1654
  export type Mpeg2DisplayRatio =
1627
1655
  (typeof Mpeg2DisplayRatio)[keyof typeof Mpeg2DisplayRatio];
1628
1656
  export interface Mpeg2FilterSettings {
1629
- TemporalFilterSettings?: TemporalFilterSettings;
1657
+ TemporalFilterSettings?: TemporalFilterSettings | undefined;
1630
1658
  }
1631
1659
  export declare const Mpeg2GopSizeUnits: {
1632
1660
  readonly FRAMES: "FRAMES";
@@ -1652,30 +1680,30 @@ export declare const Mpeg2TimecodeInsertionBehavior: {
1652
1680
  export type Mpeg2TimecodeInsertionBehavior =
1653
1681
  (typeof Mpeg2TimecodeInsertionBehavior)[keyof typeof Mpeg2TimecodeInsertionBehavior];
1654
1682
  export interface Mpeg2Settings {
1655
- AdaptiveQuantization?: Mpeg2AdaptiveQuantization;
1656
- AfdSignaling?: AfdSignaling;
1657
- ColorMetadata?: Mpeg2ColorMetadata;
1658
- ColorSpace?: Mpeg2ColorSpace;
1659
- DisplayAspectRatio?: Mpeg2DisplayRatio;
1660
- FilterSettings?: Mpeg2FilterSettings;
1661
- FixedAfd?: FixedAfd;
1683
+ AdaptiveQuantization?: Mpeg2AdaptiveQuantization | undefined;
1684
+ AfdSignaling?: AfdSignaling | undefined;
1685
+ ColorMetadata?: Mpeg2ColorMetadata | undefined;
1686
+ ColorSpace?: Mpeg2ColorSpace | undefined;
1687
+ DisplayAspectRatio?: Mpeg2DisplayRatio | undefined;
1688
+ FilterSettings?: Mpeg2FilterSettings | undefined;
1689
+ FixedAfd?: FixedAfd | undefined;
1662
1690
  FramerateDenominator: number | undefined;
1663
1691
  FramerateNumerator: number | undefined;
1664
- GopClosedCadence?: number;
1665
- GopNumBFrames?: number;
1666
- GopSize?: number;
1667
- GopSizeUnits?: Mpeg2GopSizeUnits;
1668
- ScanType?: Mpeg2ScanType;
1669
- SubgopLength?: Mpeg2SubGopLength;
1670
- TimecodeInsertion?: Mpeg2TimecodeInsertionBehavior;
1671
- TimecodeBurninSettings?: TimecodeBurninSettings;
1692
+ GopClosedCadence?: number | undefined;
1693
+ GopNumBFrames?: number | undefined;
1694
+ GopSize?: number | undefined;
1695
+ GopSizeUnits?: Mpeg2GopSizeUnits | undefined;
1696
+ ScanType?: Mpeg2ScanType | undefined;
1697
+ SubgopLength?: Mpeg2SubGopLength | undefined;
1698
+ TimecodeInsertion?: Mpeg2TimecodeInsertionBehavior | undefined;
1699
+ TimecodeBurninSettings?: TimecodeBurninSettings | undefined;
1672
1700
  }
1673
1701
  export interface VideoCodecSettings {
1674
- FrameCaptureSettings?: FrameCaptureSettings;
1675
- H264Settings?: H264Settings;
1676
- H265Settings?: H265Settings;
1677
- Mpeg2Settings?: Mpeg2Settings;
1678
- Av1Settings?: Av1Settings;
1702
+ FrameCaptureSettings?: FrameCaptureSettings | undefined;
1703
+ H264Settings?: H264Settings | undefined;
1704
+ H265Settings?: H265Settings | undefined;
1705
+ Mpeg2Settings?: Mpeg2Settings | undefined;
1706
+ Av1Settings?: Av1Settings | undefined;
1679
1707
  }
1680
1708
  export declare const VideoDescriptionRespondToAfd: {
1681
1709
  readonly NONE: "NONE";
@@ -1691,13 +1719,13 @@ export declare const VideoDescriptionScalingBehavior: {
1691
1719
  export type VideoDescriptionScalingBehavior =
1692
1720
  (typeof VideoDescriptionScalingBehavior)[keyof typeof VideoDescriptionScalingBehavior];
1693
1721
  export interface VideoDescription {
1694
- CodecSettings?: VideoCodecSettings;
1695
- Height?: number;
1722
+ CodecSettings?: VideoCodecSettings | undefined;
1723
+ Height?: number | undefined;
1696
1724
  Name: string | undefined;
1697
- RespondToAfd?: VideoDescriptionRespondToAfd;
1698
- ScalingBehavior?: VideoDescriptionScalingBehavior;
1699
- Sharpness?: number;
1700
- Width?: number;
1725
+ RespondToAfd?: VideoDescriptionRespondToAfd | undefined;
1726
+ ScalingBehavior?: VideoDescriptionScalingBehavior | undefined;
1727
+ Sharpness?: number | undefined;
1728
+ Width?: number | undefined;
1701
1729
  }
1702
1730
  export declare const AcceptHeader: {
1703
1731
  readonly image_jpeg: "image/jpeg";
@@ -1710,7 +1738,7 @@ export interface AcceptInputDeviceTransferResponse {}
1710
1738
  export declare class BadGatewayException extends __BaseException {
1711
1739
  readonly name: "BadGatewayException";
1712
1740
  readonly $fault: "server";
1713
- Message?: string;
1741
+ Message?: string | undefined;
1714
1742
  constructor(
1715
1743
  opts: __ExceptionOptionType<BadGatewayException, __BaseException>
1716
1744
  );
@@ -1718,7 +1746,7 @@ export declare class BadGatewayException extends __BaseException {
1718
1746
  export declare class BadRequestException extends __BaseException {
1719
1747
  readonly name: "BadRequestException";
1720
1748
  readonly $fault: "client";
1721
- Message?: string;
1749
+ Message?: string | undefined;
1722
1750
  constructor(
1723
1751
  opts: __ExceptionOptionType<BadRequestException, __BaseException>
1724
1752
  );
@@ -1726,19 +1754,19 @@ export declare class BadRequestException extends __BaseException {
1726
1754
  export declare class ConflictException extends __BaseException {
1727
1755
  readonly name: "ConflictException";
1728
1756
  readonly $fault: "client";
1729
- Message?: string;
1757
+ Message?: string | undefined;
1730
1758
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
1731
1759
  }
1732
1760
  export declare class ForbiddenException extends __BaseException {
1733
1761
  readonly name: "ForbiddenException";
1734
1762
  readonly $fault: "client";
1735
- Message?: string;
1763
+ Message?: string | undefined;
1736
1764
  constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
1737
1765
  }
1738
1766
  export declare class GatewayTimeoutException extends __BaseException {
1739
1767
  readonly name: "GatewayTimeoutException";
1740
1768
  readonly $fault: "server";
1741
- Message?: string;
1769
+ Message?: string | undefined;
1742
1770
  constructor(
1743
1771
  opts: __ExceptionOptionType<GatewayTimeoutException, __BaseException>
1744
1772
  );
@@ -1746,7 +1774,7 @@ export declare class GatewayTimeoutException extends __BaseException {
1746
1774
  export declare class InternalServerErrorException extends __BaseException {
1747
1775
  readonly name: "InternalServerErrorException";
1748
1776
  readonly $fault: "server";
1749
- Message?: string;
1777
+ Message?: string | undefined;
1750
1778
  constructor(
1751
1779
  opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
1752
1780
  );
@@ -1754,13 +1782,13 @@ export declare class InternalServerErrorException extends __BaseException {
1754
1782
  export declare class NotFoundException extends __BaseException {
1755
1783
  readonly name: "NotFoundException";
1756
1784
  readonly $fault: "client";
1757
- Message?: string;
1785
+ Message?: string | undefined;
1758
1786
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
1759
1787
  }
1760
1788
  export declare class TooManyRequestsException extends __BaseException {
1761
1789
  readonly name: "TooManyRequestsException";
1762
1790
  readonly $fault: "client";
1763
- Message?: string;
1791
+ Message?: string | undefined;
1764
1792
  constructor(
1765
1793
  opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
1766
1794
  );
@@ -1768,18 +1796,18 @@ export declare class TooManyRequestsException extends __BaseException {
1768
1796
  export declare class UnprocessableEntityException extends __BaseException {
1769
1797
  readonly name: "UnprocessableEntityException";
1770
1798
  readonly $fault: "client";
1771
- Message?: string;
1772
- ValidationErrors?: ValidationError[];
1799
+ Message?: string | undefined;
1800
+ ValidationErrors?: ValidationError[] | undefined;
1773
1801
  constructor(
1774
1802
  opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
1775
1803
  );
1776
1804
  }
1777
1805
  export interface AccountConfiguration {
1778
- KmsKeyId?: string;
1806
+ KmsKeyId?: string | undefined;
1779
1807
  }
1780
1808
  export interface AnywhereSettings {
1781
- ChannelPlacementGroupId?: string;
1782
- ClusterId?: string;
1809
+ ChannelPlacementGroupId?: string | undefined;
1810
+ ClusterId?: string | undefined;
1783
1811
  }
1784
1812
  export declare const AvailBlankingState: {
1785
1813
  readonly DISABLED: "DISABLED";
@@ -1788,16 +1816,16 @@ export declare const AvailBlankingState: {
1788
1816
  export type AvailBlankingState =
1789
1817
  (typeof AvailBlankingState)[keyof typeof AvailBlankingState];
1790
1818
  export interface AvailBlanking {
1791
- AvailBlankingImage?: InputLocation;
1792
- State?: AvailBlankingState;
1819
+ AvailBlankingImage?: InputLocation | undefined;
1820
+ State?: AvailBlankingState | undefined;
1793
1821
  }
1794
1822
  export interface Esam {
1795
1823
  AcquisitionPointId: string | undefined;
1796
- AdAvailOffset?: number;
1797
- PasswordParam?: string;
1824
+ AdAvailOffset?: number | undefined;
1825
+ PasswordParam?: string | undefined;
1798
1826
  PoisEndpoint: string | undefined;
1799
- Username?: string;
1800
- ZoneIdentity?: string;
1827
+ Username?: string | undefined;
1828
+ ZoneIdentity?: string | undefined;
1801
1829
  }
1802
1830
  export declare const Scte35SpliceInsertNoRegionalBlackoutBehavior: {
1803
1831
  readonly FOLLOW: "FOLLOW";
@@ -1812,9 +1840,13 @@ export declare const Scte35SpliceInsertWebDeliveryAllowedBehavior: {
1812
1840
  export type Scte35SpliceInsertWebDeliveryAllowedBehavior =
1813
1841
  (typeof Scte35SpliceInsertWebDeliveryAllowedBehavior)[keyof typeof Scte35SpliceInsertWebDeliveryAllowedBehavior];
1814
1842
  export interface Scte35SpliceInsert {
1815
- AdAvailOffset?: number;
1816
- NoRegionalBlackoutFlag?: Scte35SpliceInsertNoRegionalBlackoutBehavior;
1817
- WebDeliveryAllowedFlag?: Scte35SpliceInsertWebDeliveryAllowedBehavior;
1843
+ AdAvailOffset?: number | undefined;
1844
+ NoRegionalBlackoutFlag?:
1845
+ | Scte35SpliceInsertNoRegionalBlackoutBehavior
1846
+ | undefined;
1847
+ WebDeliveryAllowedFlag?:
1848
+ | Scte35SpliceInsertWebDeliveryAllowedBehavior
1849
+ | undefined;
1818
1850
  }
1819
1851
  export declare const Scte35AposNoRegionalBlackoutBehavior: {
1820
1852
  readonly FOLLOW: "FOLLOW";
@@ -1829,14 +1861,14 @@ export declare const Scte35AposWebDeliveryAllowedBehavior: {
1829
1861
  export type Scte35AposWebDeliveryAllowedBehavior =
1830
1862
  (typeof Scte35AposWebDeliveryAllowedBehavior)[keyof typeof Scte35AposWebDeliveryAllowedBehavior];
1831
1863
  export interface Scte35TimeSignalApos {
1832
- AdAvailOffset?: number;
1833
- NoRegionalBlackoutFlag?: Scte35AposNoRegionalBlackoutBehavior;
1834
- WebDeliveryAllowedFlag?: Scte35AposWebDeliveryAllowedBehavior;
1864
+ AdAvailOffset?: number | undefined;
1865
+ NoRegionalBlackoutFlag?: Scte35AposNoRegionalBlackoutBehavior | undefined;
1866
+ WebDeliveryAllowedFlag?: Scte35AposWebDeliveryAllowedBehavior | undefined;
1835
1867
  }
1836
1868
  export interface AvailSettings {
1837
- Esam?: Esam;
1838
- Scte35SpliceInsert?: Scte35SpliceInsert;
1839
- Scte35TimeSignalApos?: Scte35TimeSignalApos;
1869
+ Esam?: Esam | undefined;
1870
+ Scte35SpliceInsert?: Scte35SpliceInsert | undefined;
1871
+ Scte35TimeSignalApos?: Scte35TimeSignalApos | undefined;
1840
1872
  }
1841
1873
  export declare const Scte35SegmentationScope: {
1842
1874
  readonly ALL_OUTPUT_GROUPS: "ALL_OUTPUT_GROUPS";
@@ -1845,18 +1877,18 @@ export declare const Scte35SegmentationScope: {
1845
1877
  export type Scte35SegmentationScope =
1846
1878
  (typeof Scte35SegmentationScope)[keyof typeof Scte35SegmentationScope];
1847
1879
  export interface AvailConfiguration {
1848
- AvailSettings?: AvailSettings;
1849
- Scte35SegmentationScope?: Scte35SegmentationScope;
1880
+ AvailSettings?: AvailSettings | undefined;
1881
+ Scte35SegmentationScope?: Scte35SegmentationScope | undefined;
1850
1882
  }
1851
1883
  export interface BatchDeleteRequest {
1852
- ChannelIds?: string[];
1853
- InputIds?: string[];
1854
- InputSecurityGroupIds?: string[];
1855
- MultiplexIds?: string[];
1884
+ ChannelIds?: string[] | undefined;
1885
+ InputIds?: string[] | undefined;
1886
+ InputSecurityGroupIds?: string[] | undefined;
1887
+ MultiplexIds?: string[] | undefined;
1856
1888
  }
1857
1889
  export interface BatchDeleteResponse {
1858
- Failed?: BatchFailedResultModel[];
1859
- Successful?: BatchSuccessfulResultModel[];
1890
+ Failed?: BatchFailedResultModel[] | undefined;
1891
+ Successful?: BatchSuccessfulResultModel[] | undefined;
1860
1892
  }
1861
1893
  export interface BatchScheduleActionCreateRequest {
1862
1894
  ScheduleActions: ScheduleAction[] | undefined;
@@ -1871,29 +1903,29 @@ export interface BatchScheduleActionDeleteResult {
1871
1903
  ScheduleActions: ScheduleAction[] | undefined;
1872
1904
  }
1873
1905
  export interface BatchStartRequest {
1874
- ChannelIds?: string[];
1875
- MultiplexIds?: string[];
1906
+ ChannelIds?: string[] | undefined;
1907
+ MultiplexIds?: string[] | undefined;
1876
1908
  }
1877
1909
  export interface BatchStartResponse {
1878
- Failed?: BatchFailedResultModel[];
1879
- Successful?: BatchSuccessfulResultModel[];
1910
+ Failed?: BatchFailedResultModel[] | undefined;
1911
+ Successful?: BatchSuccessfulResultModel[] | undefined;
1880
1912
  }
1881
1913
  export interface BatchStopRequest {
1882
- ChannelIds?: string[];
1883
- MultiplexIds?: string[];
1914
+ ChannelIds?: string[] | undefined;
1915
+ MultiplexIds?: string[] | undefined;
1884
1916
  }
1885
1917
  export interface BatchStopResponse {
1886
- Failed?: BatchFailedResultModel[];
1887
- Successful?: BatchSuccessfulResultModel[];
1918
+ Failed?: BatchFailedResultModel[] | undefined;
1919
+ Successful?: BatchSuccessfulResultModel[] | undefined;
1888
1920
  }
1889
1921
  export interface BatchUpdateScheduleRequest {
1890
1922
  ChannelId: string | undefined;
1891
- Creates?: BatchScheduleActionCreateRequest;
1892
- Deletes?: BatchScheduleActionDeleteRequest;
1923
+ Creates?: BatchScheduleActionCreateRequest | undefined;
1924
+ Deletes?: BatchScheduleActionDeleteRequest | undefined;
1893
1925
  }
1894
1926
  export interface BatchUpdateScheduleResponse {
1895
- Creates?: BatchScheduleActionCreateResult;
1896
- Deletes?: BatchScheduleActionDeleteResult;
1927
+ Creates?: BatchScheduleActionCreateResult | undefined;
1928
+ Deletes?: BatchScheduleActionDeleteResult | undefined;
1897
1929
  }
1898
1930
  export declare const BlackoutSlateNetworkEndBlackout: {
1899
1931
  readonly DISABLED: "DISABLED";
@@ -1908,11 +1940,11 @@ export declare const BlackoutSlateState: {
1908
1940
  export type BlackoutSlateState =
1909
1941
  (typeof BlackoutSlateState)[keyof typeof BlackoutSlateState];
1910
1942
  export interface BlackoutSlate {
1911
- BlackoutSlateImage?: InputLocation;
1912
- NetworkEndBlackout?: BlackoutSlateNetworkEndBlackout;
1913
- NetworkEndBlackoutImage?: InputLocation;
1914
- NetworkId?: string;
1915
- State?: BlackoutSlateState;
1943
+ BlackoutSlateImage?: InputLocation | undefined;
1944
+ NetworkEndBlackout?: BlackoutSlateNetworkEndBlackout | undefined;
1945
+ NetworkEndBlackoutImage?: InputLocation | undefined;
1946
+ NetworkId?: string | undefined;
1947
+ State?: BlackoutSlateState | undefined;
1916
1948
  }
1917
1949
  export interface CancelInputDeviceTransferRequest {
1918
1950
  InputDeviceId: string | undefined;
@@ -1934,8 +1966,12 @@ export declare const FeatureActivationsOutputStaticImageOverlayScheduleActions:
1934
1966
  export type FeatureActivationsOutputStaticImageOverlayScheduleActions =
1935
1967
  (typeof FeatureActivationsOutputStaticImageOverlayScheduleActions)[keyof typeof FeatureActivationsOutputStaticImageOverlayScheduleActions];
1936
1968
  export interface FeatureActivations {
1937
- InputPrepareScheduleActions?: FeatureActivationsInputPrepareScheduleActions;
1938
- OutputStaticImageOverlayScheduleActions?: FeatureActivationsOutputStaticImageOverlayScheduleActions;
1969
+ InputPrepareScheduleActions?:
1970
+ | FeatureActivationsInputPrepareScheduleActions
1971
+ | undefined;
1972
+ OutputStaticImageOverlayScheduleActions?:
1973
+ | FeatureActivationsOutputStaticImageOverlayScheduleActions
1974
+ | undefined;
1939
1975
  }
1940
1976
  export declare const GlobalConfigurationInputEndAction: {
1941
1977
  readonly NONE: "NONE";
@@ -1950,11 +1986,11 @@ export declare const InputLossImageType: {
1950
1986
  export type InputLossImageType =
1951
1987
  (typeof InputLossImageType)[keyof typeof InputLossImageType];
1952
1988
  export interface InputLossBehavior {
1953
- BlackFrameMsec?: number;
1954
- InputLossImageColor?: string;
1955
- InputLossImageSlate?: InputLocation;
1956
- InputLossImageType?: InputLossImageType;
1957
- RepeatFrameMsec?: number;
1989
+ BlackFrameMsec?: number | undefined;
1990
+ InputLossImageColor?: string | undefined;
1991
+ InputLossImageSlate?: InputLocation | undefined;
1992
+ InputLossImageType?: InputLossImageType | undefined;
1993
+ RepeatFrameMsec?: number | undefined;
1958
1994
  }
1959
1995
  export declare const GlobalConfigurationOutputLockingMode: {
1960
1996
  readonly EPOCH_LOCKING: "EPOCH_LOCKING";
@@ -1963,13 +1999,13 @@ export declare const GlobalConfigurationOutputLockingMode: {
1963
1999
  export type GlobalConfigurationOutputLockingMode =
1964
2000
  (typeof GlobalConfigurationOutputLockingMode)[keyof typeof GlobalConfigurationOutputLockingMode];
1965
2001
  export interface EpochLockingSettings {
1966
- CustomEpoch?: string;
1967
- JamSyncTime?: string;
2002
+ CustomEpoch?: string | undefined;
2003
+ JamSyncTime?: string | undefined;
1968
2004
  }
1969
2005
  export interface PipelineLockingSettings {}
1970
2006
  export interface OutputLockingSettings {
1971
- EpochLockingSettings?: EpochLockingSettings;
1972
- PipelineLockingSettings?: PipelineLockingSettings;
2007
+ EpochLockingSettings?: EpochLockingSettings | undefined;
2008
+ PipelineLockingSettings?: PipelineLockingSettings | undefined;
1973
2009
  }
1974
2010
  export declare const GlobalConfigurationOutputTimingSource: {
1975
2011
  readonly INPUT_CLOCK: "INPUT_CLOCK";