@aws-sdk/client-mediapackagev2 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.
- package/dist-types/models/models_0.d.ts +209 -209
- package/dist-types/ts3.4/models/models_0.d.ts +213 -209
- package/package.json +7 -7
|
@@ -3,7 +3,7 @@ import { MediaPackageV2ServiceException as __BaseException } from "./MediaPackag
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
Message?: string;
|
|
6
|
+
Message?: string | undefined;
|
|
7
7
|
constructor(
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
@@ -22,7 +22,7 @@ export interface CancelHarvestJobRequest {
|
|
|
22
22
|
ChannelName: string | undefined;
|
|
23
23
|
OriginEndpointName: string | undefined;
|
|
24
24
|
HarvestJobName: string | undefined;
|
|
25
|
-
ETag?: string;
|
|
25
|
+
ETag?: string | undefined;
|
|
26
26
|
}
|
|
27
27
|
export interface CancelHarvestJobResponse {}
|
|
28
28
|
export declare const ConflictExceptionType: {
|
|
@@ -36,14 +36,14 @@ export type ConflictExceptionType =
|
|
|
36
36
|
export declare class ConflictException extends __BaseException {
|
|
37
37
|
readonly name: "ConflictException";
|
|
38
38
|
readonly $fault: "client";
|
|
39
|
-
Message?: string;
|
|
40
|
-
ConflictExceptionType?: ConflictExceptionType;
|
|
39
|
+
Message?: string | undefined;
|
|
40
|
+
ConflictExceptionType?: ConflictExceptionType | undefined;
|
|
41
41
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
42
42
|
}
|
|
43
43
|
export declare class InternalServerException extends __BaseException {
|
|
44
44
|
readonly name: "InternalServerException";
|
|
45
45
|
readonly $fault: "server";
|
|
46
|
-
Message?: string;
|
|
46
|
+
Message?: string | undefined;
|
|
47
47
|
constructor(
|
|
48
48
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
49
49
|
);
|
|
@@ -59,8 +59,8 @@ export type ResourceTypeNotFound =
|
|
|
59
59
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
60
60
|
readonly name: "ResourceNotFoundException";
|
|
61
61
|
readonly $fault: "client";
|
|
62
|
-
Message?: string;
|
|
63
|
-
ResourceTypeNotFound?: ResourceTypeNotFound;
|
|
62
|
+
Message?: string | undefined;
|
|
63
|
+
ResourceTypeNotFound?: ResourceTypeNotFound | undefined;
|
|
64
64
|
constructor(
|
|
65
65
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
66
66
|
);
|
|
@@ -68,7 +68,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
68
68
|
export declare class ThrottlingException extends __BaseException {
|
|
69
69
|
readonly name: "ThrottlingException";
|
|
70
70
|
readonly $fault: "client";
|
|
71
|
-
Message?: string;
|
|
71
|
+
Message?: string | undefined;
|
|
72
72
|
constructor(
|
|
73
73
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
74
74
|
);
|
|
@@ -137,8 +137,8 @@ export type ValidationExceptionType =
|
|
|
137
137
|
export declare class ValidationException extends __BaseException {
|
|
138
138
|
readonly name: "ValidationException";
|
|
139
139
|
readonly $fault: "client";
|
|
140
|
-
Message?: string;
|
|
141
|
-
ValidationExceptionType?: ValidationExceptionType;
|
|
140
|
+
Message?: string | undefined;
|
|
141
|
+
ValidationExceptionType?: ValidationExceptionType | undefined;
|
|
142
142
|
constructor(
|
|
143
143
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
144
144
|
);
|
|
@@ -148,7 +148,7 @@ export interface ChannelGroupListConfiguration {
|
|
|
148
148
|
Arn: string | undefined;
|
|
149
149
|
CreatedAt: Date | undefined;
|
|
150
150
|
ModifiedAt: Date | undefined;
|
|
151
|
-
Description?: string;
|
|
151
|
+
Description?: string | undefined;
|
|
152
152
|
}
|
|
153
153
|
export interface DeleteChannelPolicyRequest {
|
|
154
154
|
ChannelGroupName: string | undefined;
|
|
@@ -178,14 +178,14 @@ export type InputType = (typeof InputType)[keyof typeof InputType];
|
|
|
178
178
|
export interface CreateChannelRequest {
|
|
179
179
|
ChannelGroupName: string | undefined;
|
|
180
180
|
ChannelName: string | undefined;
|
|
181
|
-
ClientToken?: string;
|
|
182
|
-
InputType?: InputType;
|
|
183
|
-
Description?: string;
|
|
184
|
-
Tags?: Record<string, string
|
|
181
|
+
ClientToken?: string | undefined;
|
|
182
|
+
InputType?: InputType | undefined;
|
|
183
|
+
Description?: string | undefined;
|
|
184
|
+
Tags?: Record<string, string> | undefined;
|
|
185
185
|
}
|
|
186
186
|
export interface IngestEndpoint {
|
|
187
|
-
Id?: string;
|
|
188
|
-
Url?: string;
|
|
187
|
+
Id?: string | undefined;
|
|
188
|
+
Url?: string | undefined;
|
|
189
189
|
}
|
|
190
190
|
export interface CreateChannelResponse {
|
|
191
191
|
Arn: string | undefined;
|
|
@@ -193,16 +193,16 @@ export interface CreateChannelResponse {
|
|
|
193
193
|
ChannelGroupName: string | undefined;
|
|
194
194
|
CreatedAt: Date | undefined;
|
|
195
195
|
ModifiedAt: Date | undefined;
|
|
196
|
-
Description?: string;
|
|
197
|
-
IngestEndpoints?: IngestEndpoint[];
|
|
198
|
-
InputType?: InputType;
|
|
199
|
-
ETag?: string;
|
|
200
|
-
Tags?: Record<string, string
|
|
196
|
+
Description?: string | undefined;
|
|
197
|
+
IngestEndpoints?: IngestEndpoint[] | undefined;
|
|
198
|
+
InputType?: InputType | undefined;
|
|
199
|
+
ETag?: string | undefined;
|
|
200
|
+
Tags?: Record<string, string> | undefined;
|
|
201
201
|
}
|
|
202
202
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
203
203
|
readonly name: "ServiceQuotaExceededException";
|
|
204
204
|
readonly $fault: "client";
|
|
205
|
-
Message?: string;
|
|
205
|
+
Message?: string | undefined;
|
|
206
206
|
constructor(
|
|
207
207
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
208
208
|
);
|
|
@@ -222,16 +222,16 @@ export interface GetChannelResponse {
|
|
|
222
222
|
ChannelGroupName: string | undefined;
|
|
223
223
|
CreatedAt: Date | undefined;
|
|
224
224
|
ModifiedAt: Date | undefined;
|
|
225
|
-
Description?: string;
|
|
226
|
-
IngestEndpoints?: IngestEndpoint[];
|
|
227
|
-
InputType?: InputType;
|
|
228
|
-
ETag?: string;
|
|
229
|
-
Tags?: Record<string, string
|
|
225
|
+
Description?: string | undefined;
|
|
226
|
+
IngestEndpoints?: IngestEndpoint[] | undefined;
|
|
227
|
+
InputType?: InputType | undefined;
|
|
228
|
+
ETag?: string | undefined;
|
|
229
|
+
Tags?: Record<string, string> | undefined;
|
|
230
230
|
}
|
|
231
231
|
export interface ListChannelsRequest {
|
|
232
232
|
ChannelGroupName: string | undefined;
|
|
233
|
-
MaxResults?: number;
|
|
234
|
-
NextToken?: string;
|
|
233
|
+
MaxResults?: number | undefined;
|
|
234
|
+
NextToken?: string | undefined;
|
|
235
235
|
}
|
|
236
236
|
export interface ChannelListConfiguration {
|
|
237
237
|
Arn: string | undefined;
|
|
@@ -239,12 +239,12 @@ export interface ChannelListConfiguration {
|
|
|
239
239
|
ChannelGroupName: string | undefined;
|
|
240
240
|
CreatedAt: Date | undefined;
|
|
241
241
|
ModifiedAt: Date | undefined;
|
|
242
|
-
Description?: string;
|
|
243
|
-
InputType?: InputType;
|
|
242
|
+
Description?: string | undefined;
|
|
243
|
+
InputType?: InputType | undefined;
|
|
244
244
|
}
|
|
245
245
|
export interface ListChannelsResponse {
|
|
246
|
-
Items?: ChannelListConfiguration[];
|
|
247
|
-
NextToken?: string;
|
|
246
|
+
Items?: ChannelListConfiguration[] | undefined;
|
|
247
|
+
NextToken?: string | undefined;
|
|
248
248
|
}
|
|
249
249
|
export declare const ContainerType: {
|
|
250
250
|
readonly CMAF: "CMAF";
|
|
@@ -258,11 +258,11 @@ export declare const DashDrmSignaling: {
|
|
|
258
258
|
export type DashDrmSignaling =
|
|
259
259
|
(typeof DashDrmSignaling)[keyof typeof DashDrmSignaling];
|
|
260
260
|
export interface FilterConfiguration {
|
|
261
|
-
ManifestFilter?: string;
|
|
262
|
-
Start?: Date;
|
|
263
|
-
End?: Date;
|
|
264
|
-
TimeDelaySeconds?: number;
|
|
265
|
-
ClipStartTime?: Date;
|
|
261
|
+
ManifestFilter?: string | undefined;
|
|
262
|
+
Start?: Date | undefined;
|
|
263
|
+
End?: Date | undefined;
|
|
264
|
+
TimeDelaySeconds?: number | undefined;
|
|
265
|
+
ClipStartTime?: Date | undefined;
|
|
266
266
|
}
|
|
267
267
|
export declare const DashPeriodTrigger: {
|
|
268
268
|
readonly AVAILS: "AVAILS";
|
|
@@ -274,7 +274,7 @@ export declare const DashPeriodTrigger: {
|
|
|
274
274
|
export type DashPeriodTrigger =
|
|
275
275
|
(typeof DashPeriodTrigger)[keyof typeof DashPeriodTrigger];
|
|
276
276
|
export interface ScteDash {
|
|
277
|
-
AdMarkerDash?: AdMarkerDash;
|
|
277
|
+
AdMarkerDash?: AdMarkerDash | undefined;
|
|
278
278
|
}
|
|
279
279
|
export declare const DashSegmentTemplateFormat: {
|
|
280
280
|
readonly NUMBER_WITH_TIMELINE: "NUMBER_WITH_TIMELINE";
|
|
@@ -290,21 +290,21 @@ export declare const DashUtcTimingMode: {
|
|
|
290
290
|
export type DashUtcTimingMode =
|
|
291
291
|
(typeof DashUtcTimingMode)[keyof typeof DashUtcTimingMode];
|
|
292
292
|
export interface DashUtcTiming {
|
|
293
|
-
TimingMode?: DashUtcTimingMode;
|
|
294
|
-
TimingSource?: string;
|
|
293
|
+
TimingMode?: DashUtcTimingMode | undefined;
|
|
294
|
+
TimingSource?: string | undefined;
|
|
295
295
|
}
|
|
296
296
|
export interface CreateDashManifestConfiguration {
|
|
297
297
|
ManifestName: string | undefined;
|
|
298
|
-
ManifestWindowSeconds?: number;
|
|
299
|
-
FilterConfiguration?: FilterConfiguration;
|
|
300
|
-
MinUpdatePeriodSeconds?: number;
|
|
301
|
-
MinBufferTimeSeconds?: number;
|
|
302
|
-
SuggestedPresentationDelaySeconds?: number;
|
|
303
|
-
SegmentTemplateFormat?: DashSegmentTemplateFormat;
|
|
304
|
-
PeriodTriggers?: DashPeriodTrigger[];
|
|
305
|
-
ScteDash?: ScteDash;
|
|
306
|
-
DrmSignaling?: DashDrmSignaling;
|
|
307
|
-
UtcTiming?: DashUtcTiming;
|
|
298
|
+
ManifestWindowSeconds?: number | undefined;
|
|
299
|
+
FilterConfiguration?: FilterConfiguration | undefined;
|
|
300
|
+
MinUpdatePeriodSeconds?: number | undefined;
|
|
301
|
+
MinBufferTimeSeconds?: number | undefined;
|
|
302
|
+
SuggestedPresentationDelaySeconds?: number | undefined;
|
|
303
|
+
SegmentTemplateFormat?: DashSegmentTemplateFormat | undefined;
|
|
304
|
+
PeriodTriggers?: DashPeriodTrigger[] | undefined;
|
|
305
|
+
ScteDash?: ScteDash | undefined;
|
|
306
|
+
DrmSignaling?: DashDrmSignaling | undefined;
|
|
307
|
+
UtcTiming?: DashUtcTiming | undefined;
|
|
308
308
|
}
|
|
309
309
|
export declare const EndpointErrorCondition: {
|
|
310
310
|
readonly INCOMPLETE_MANIFEST: "INCOMPLETE_MANIFEST";
|
|
@@ -315,32 +315,32 @@ export declare const EndpointErrorCondition: {
|
|
|
315
315
|
export type EndpointErrorCondition =
|
|
316
316
|
(typeof EndpointErrorCondition)[keyof typeof EndpointErrorCondition];
|
|
317
317
|
export interface ForceEndpointErrorConfiguration {
|
|
318
|
-
EndpointErrorConditions?: EndpointErrorCondition[];
|
|
318
|
+
EndpointErrorConditions?: EndpointErrorCondition[] | undefined;
|
|
319
319
|
}
|
|
320
320
|
export interface ScteHls {
|
|
321
|
-
AdMarkerHls?: AdMarkerHls;
|
|
321
|
+
AdMarkerHls?: AdMarkerHls | undefined;
|
|
322
322
|
}
|
|
323
323
|
export interface StartTag {
|
|
324
324
|
TimeOffset: number | undefined;
|
|
325
|
-
Precise?: boolean;
|
|
325
|
+
Precise?: boolean | undefined;
|
|
326
326
|
}
|
|
327
327
|
export interface CreateHlsManifestConfiguration {
|
|
328
328
|
ManifestName: string | undefined;
|
|
329
|
-
ChildManifestName?: string;
|
|
330
|
-
ScteHls?: ScteHls;
|
|
331
|
-
StartTag?: StartTag;
|
|
332
|
-
ManifestWindowSeconds?: number;
|
|
333
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
334
|
-
FilterConfiguration?: FilterConfiguration;
|
|
329
|
+
ChildManifestName?: string | undefined;
|
|
330
|
+
ScteHls?: ScteHls | undefined;
|
|
331
|
+
StartTag?: StartTag | undefined;
|
|
332
|
+
ManifestWindowSeconds?: number | undefined;
|
|
333
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
334
|
+
FilterConfiguration?: FilterConfiguration | undefined;
|
|
335
335
|
}
|
|
336
336
|
export interface CreateLowLatencyHlsManifestConfiguration {
|
|
337
337
|
ManifestName: string | undefined;
|
|
338
|
-
ChildManifestName?: string;
|
|
339
|
-
ScteHls?: ScteHls;
|
|
340
|
-
StartTag?: StartTag;
|
|
341
|
-
ManifestWindowSeconds?: number;
|
|
342
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
343
|
-
FilterConfiguration?: FilterConfiguration;
|
|
338
|
+
ChildManifestName?: string | undefined;
|
|
339
|
+
ScteHls?: ScteHls | undefined;
|
|
340
|
+
StartTag?: StartTag | undefined;
|
|
341
|
+
ManifestWindowSeconds?: number | undefined;
|
|
342
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
343
|
+
FilterConfiguration?: FilterConfiguration | undefined;
|
|
344
344
|
}
|
|
345
345
|
export declare const CmafEncryptionMethod: {
|
|
346
346
|
readonly CBCS: "CBCS";
|
|
@@ -355,8 +355,8 @@ export declare const TsEncryptionMethod: {
|
|
|
355
355
|
export type TsEncryptionMethod =
|
|
356
356
|
(typeof TsEncryptionMethod)[keyof typeof TsEncryptionMethod];
|
|
357
357
|
export interface EncryptionMethod {
|
|
358
|
-
TsEncryptionMethod?: TsEncryptionMethod;
|
|
359
|
-
CmafEncryptionMethod?: CmafEncryptionMethod;
|
|
358
|
+
TsEncryptionMethod?: TsEncryptionMethod | undefined;
|
|
359
|
+
CmafEncryptionMethod?: CmafEncryptionMethod | undefined;
|
|
360
360
|
}
|
|
361
361
|
export declare const DrmSystem: {
|
|
362
362
|
readonly CLEAR_KEY_AES_128: "CLEAR_KEY_AES_128";
|
|
@@ -401,9 +401,9 @@ export interface SpekeKeyProvider {
|
|
|
401
401
|
Url: string | undefined;
|
|
402
402
|
}
|
|
403
403
|
export interface Encryption {
|
|
404
|
-
ConstantInitializationVector?: string;
|
|
404
|
+
ConstantInitializationVector?: string | undefined;
|
|
405
405
|
EncryptionMethod: EncryptionMethod | undefined;
|
|
406
|
-
KeyRotationIntervalSeconds?: number;
|
|
406
|
+
KeyRotationIntervalSeconds?: number | undefined;
|
|
407
407
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
408
408
|
}
|
|
409
409
|
export declare const ScteFilter: {
|
|
@@ -419,65 +419,67 @@ export declare const ScteFilter: {
|
|
|
419
419
|
};
|
|
420
420
|
export type ScteFilter = (typeof ScteFilter)[keyof typeof ScteFilter];
|
|
421
421
|
export interface Scte {
|
|
422
|
-
ScteFilter?: ScteFilter[];
|
|
422
|
+
ScteFilter?: ScteFilter[] | undefined;
|
|
423
423
|
}
|
|
424
424
|
export interface Segment {
|
|
425
|
-
SegmentDurationSeconds?: number;
|
|
426
|
-
SegmentName?: string;
|
|
427
|
-
TsUseAudioRenditionGroup?: boolean;
|
|
428
|
-
IncludeIframeOnlyStreams?: boolean;
|
|
429
|
-
TsIncludeDvbSubtitles?: boolean;
|
|
430
|
-
Scte?: Scte;
|
|
431
|
-
Encryption?: Encryption;
|
|
425
|
+
SegmentDurationSeconds?: number | undefined;
|
|
426
|
+
SegmentName?: string | undefined;
|
|
427
|
+
TsUseAudioRenditionGroup?: boolean | undefined;
|
|
428
|
+
IncludeIframeOnlyStreams?: boolean | undefined;
|
|
429
|
+
TsIncludeDvbSubtitles?: boolean | undefined;
|
|
430
|
+
Scte?: Scte | undefined;
|
|
431
|
+
Encryption?: Encryption | undefined;
|
|
432
432
|
}
|
|
433
433
|
export interface CreateOriginEndpointRequest {
|
|
434
434
|
ChannelGroupName: string | undefined;
|
|
435
435
|
ChannelName: string | undefined;
|
|
436
436
|
OriginEndpointName: string | undefined;
|
|
437
437
|
ContainerType: ContainerType | undefined;
|
|
438
|
-
Segment?: Segment;
|
|
439
|
-
ClientToken?: string;
|
|
440
|
-
Description?: string;
|
|
441
|
-
StartoverWindowSeconds?: number;
|
|
442
|
-
HlsManifests?: CreateHlsManifestConfiguration[];
|
|
443
|
-
LowLatencyHlsManifests?:
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
438
|
+
Segment?: Segment | undefined;
|
|
439
|
+
ClientToken?: string | undefined;
|
|
440
|
+
Description?: string | undefined;
|
|
441
|
+
StartoverWindowSeconds?: number | undefined;
|
|
442
|
+
HlsManifests?: CreateHlsManifestConfiguration[] | undefined;
|
|
443
|
+
LowLatencyHlsManifests?:
|
|
444
|
+
| CreateLowLatencyHlsManifestConfiguration[]
|
|
445
|
+
| undefined;
|
|
446
|
+
DashManifests?: CreateDashManifestConfiguration[] | undefined;
|
|
447
|
+
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
|
|
448
|
+
Tags?: Record<string, string> | undefined;
|
|
447
449
|
}
|
|
448
450
|
export interface GetDashManifestConfiguration {
|
|
449
451
|
ManifestName: string | undefined;
|
|
450
452
|
Url: string | undefined;
|
|
451
|
-
ManifestWindowSeconds?: number;
|
|
452
|
-
FilterConfiguration?: FilterConfiguration;
|
|
453
|
-
MinUpdatePeriodSeconds?: number;
|
|
454
|
-
MinBufferTimeSeconds?: number;
|
|
455
|
-
SuggestedPresentationDelaySeconds?: number;
|
|
456
|
-
SegmentTemplateFormat?: DashSegmentTemplateFormat;
|
|
457
|
-
PeriodTriggers?: DashPeriodTrigger[];
|
|
458
|
-
ScteDash?: ScteDash;
|
|
459
|
-
DrmSignaling?: DashDrmSignaling;
|
|
460
|
-
UtcTiming?: DashUtcTiming;
|
|
453
|
+
ManifestWindowSeconds?: number | undefined;
|
|
454
|
+
FilterConfiguration?: FilterConfiguration | undefined;
|
|
455
|
+
MinUpdatePeriodSeconds?: number | undefined;
|
|
456
|
+
MinBufferTimeSeconds?: number | undefined;
|
|
457
|
+
SuggestedPresentationDelaySeconds?: number | undefined;
|
|
458
|
+
SegmentTemplateFormat?: DashSegmentTemplateFormat | undefined;
|
|
459
|
+
PeriodTriggers?: DashPeriodTrigger[] | undefined;
|
|
460
|
+
ScteDash?: ScteDash | undefined;
|
|
461
|
+
DrmSignaling?: DashDrmSignaling | undefined;
|
|
462
|
+
UtcTiming?: DashUtcTiming | undefined;
|
|
461
463
|
}
|
|
462
464
|
export interface GetHlsManifestConfiguration {
|
|
463
465
|
ManifestName: string | undefined;
|
|
464
466
|
Url: string | undefined;
|
|
465
|
-
ChildManifestName?: string;
|
|
466
|
-
ManifestWindowSeconds?: number;
|
|
467
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
468
|
-
ScteHls?: ScteHls;
|
|
469
|
-
FilterConfiguration?: FilterConfiguration;
|
|
470
|
-
StartTag?: StartTag;
|
|
467
|
+
ChildManifestName?: string | undefined;
|
|
468
|
+
ManifestWindowSeconds?: number | undefined;
|
|
469
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
470
|
+
ScteHls?: ScteHls | undefined;
|
|
471
|
+
FilterConfiguration?: FilterConfiguration | undefined;
|
|
472
|
+
StartTag?: StartTag | undefined;
|
|
471
473
|
}
|
|
472
474
|
export interface GetLowLatencyHlsManifestConfiguration {
|
|
473
475
|
ManifestName: string | undefined;
|
|
474
476
|
Url: string | undefined;
|
|
475
|
-
ChildManifestName?: string;
|
|
476
|
-
ManifestWindowSeconds?: number;
|
|
477
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
478
|
-
ScteHls?: ScteHls;
|
|
479
|
-
FilterConfiguration?: FilterConfiguration;
|
|
480
|
-
StartTag?: StartTag;
|
|
477
|
+
ChildManifestName?: string | undefined;
|
|
478
|
+
ManifestWindowSeconds?: number | undefined;
|
|
479
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
480
|
+
ScteHls?: ScteHls | undefined;
|
|
481
|
+
FilterConfiguration?: FilterConfiguration | undefined;
|
|
482
|
+
StartTag?: StartTag | undefined;
|
|
481
483
|
}
|
|
482
484
|
export interface CreateOriginEndpointResponse {
|
|
483
485
|
Arn: string | undefined;
|
|
@@ -488,14 +490,14 @@ export interface CreateOriginEndpointResponse {
|
|
|
488
490
|
Segment: Segment | undefined;
|
|
489
491
|
CreatedAt: Date | undefined;
|
|
490
492
|
ModifiedAt: Date | undefined;
|
|
491
|
-
Description?: string;
|
|
492
|
-
StartoverWindowSeconds?: number;
|
|
493
|
-
HlsManifests?: GetHlsManifestConfiguration[];
|
|
494
|
-
LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[];
|
|
495
|
-
DashManifests?: GetDashManifestConfiguration[];
|
|
496
|
-
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
|
|
497
|
-
ETag?: string;
|
|
498
|
-
Tags?: Record<string, string
|
|
493
|
+
Description?: string | undefined;
|
|
494
|
+
StartoverWindowSeconds?: number | undefined;
|
|
495
|
+
HlsManifests?: GetHlsManifestConfiguration[] | undefined;
|
|
496
|
+
LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[] | undefined;
|
|
497
|
+
DashManifests?: GetDashManifestConfiguration[] | undefined;
|
|
498
|
+
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
|
|
499
|
+
ETag?: string | undefined;
|
|
500
|
+
Tags?: Record<string, string> | undefined;
|
|
499
501
|
}
|
|
500
502
|
export interface DeleteOriginEndpointRequest {
|
|
501
503
|
ChannelGroupName: string | undefined;
|
|
@@ -517,34 +519,34 @@ export interface GetOriginEndpointResponse {
|
|
|
517
519
|
Segment: Segment | undefined;
|
|
518
520
|
CreatedAt: Date | undefined;
|
|
519
521
|
ModifiedAt: Date | undefined;
|
|
520
|
-
Description?: string;
|
|
521
|
-
StartoverWindowSeconds?: number;
|
|
522
|
-
HlsManifests?: GetHlsManifestConfiguration[];
|
|
523
|
-
LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[];
|
|
524
|
-
DashManifests?: GetDashManifestConfiguration[];
|
|
525
|
-
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
|
|
526
|
-
ETag?: string;
|
|
527
|
-
Tags?: Record<string, string
|
|
522
|
+
Description?: string | undefined;
|
|
523
|
+
StartoverWindowSeconds?: number | undefined;
|
|
524
|
+
HlsManifests?: GetHlsManifestConfiguration[] | undefined;
|
|
525
|
+
LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[] | undefined;
|
|
526
|
+
DashManifests?: GetDashManifestConfiguration[] | undefined;
|
|
527
|
+
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
|
|
528
|
+
ETag?: string | undefined;
|
|
529
|
+
Tags?: Record<string, string> | undefined;
|
|
528
530
|
}
|
|
529
531
|
export interface ListOriginEndpointsRequest {
|
|
530
532
|
ChannelGroupName: string | undefined;
|
|
531
533
|
ChannelName: string | undefined;
|
|
532
|
-
MaxResults?: number;
|
|
533
|
-
NextToken?: string;
|
|
534
|
+
MaxResults?: number | undefined;
|
|
535
|
+
NextToken?: string | undefined;
|
|
534
536
|
}
|
|
535
537
|
export interface ListDashManifestConfiguration {
|
|
536
538
|
ManifestName: string | undefined;
|
|
537
|
-
Url?: string;
|
|
539
|
+
Url?: string | undefined;
|
|
538
540
|
}
|
|
539
541
|
export interface ListHlsManifestConfiguration {
|
|
540
542
|
ManifestName: string | undefined;
|
|
541
|
-
ChildManifestName?: string;
|
|
542
|
-
Url?: string;
|
|
543
|
+
ChildManifestName?: string | undefined;
|
|
544
|
+
Url?: string | undefined;
|
|
543
545
|
}
|
|
544
546
|
export interface ListLowLatencyHlsManifestConfiguration {
|
|
545
547
|
ManifestName: string | undefined;
|
|
546
|
-
ChildManifestName?: string;
|
|
547
|
-
Url?: string;
|
|
548
|
+
ChildManifestName?: string | undefined;
|
|
549
|
+
Url?: string | undefined;
|
|
548
550
|
}
|
|
549
551
|
export interface OriginEndpointListConfiguration {
|
|
550
552
|
Arn: string | undefined;
|
|
@@ -552,17 +554,17 @@ export interface OriginEndpointListConfiguration {
|
|
|
552
554
|
ChannelName: string | undefined;
|
|
553
555
|
OriginEndpointName: string | undefined;
|
|
554
556
|
ContainerType: ContainerType | undefined;
|
|
555
|
-
Description?: string;
|
|
556
|
-
CreatedAt?: Date;
|
|
557
|
-
ModifiedAt?: Date;
|
|
558
|
-
HlsManifests?: ListHlsManifestConfiguration[];
|
|
559
|
-
LowLatencyHlsManifests?: ListLowLatencyHlsManifestConfiguration[];
|
|
560
|
-
DashManifests?: ListDashManifestConfiguration[];
|
|
561
|
-
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
|
|
557
|
+
Description?: string | undefined;
|
|
558
|
+
CreatedAt?: Date | undefined;
|
|
559
|
+
ModifiedAt?: Date | undefined;
|
|
560
|
+
HlsManifests?: ListHlsManifestConfiguration[] | undefined;
|
|
561
|
+
LowLatencyHlsManifests?: ListLowLatencyHlsManifestConfiguration[] | undefined;
|
|
562
|
+
DashManifests?: ListDashManifestConfiguration[] | undefined;
|
|
563
|
+
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
|
|
562
564
|
}
|
|
563
565
|
export interface ListOriginEndpointsResponse {
|
|
564
|
-
Items?: OriginEndpointListConfiguration[];
|
|
565
|
-
NextToken?: string;
|
|
566
|
+
Items?: OriginEndpointListConfiguration[] | undefined;
|
|
567
|
+
NextToken?: string | undefined;
|
|
566
568
|
}
|
|
567
569
|
export interface DeleteOriginEndpointPolicyRequest {
|
|
568
570
|
ChannelGroupName: string | undefined;
|
|
@@ -593,14 +595,16 @@ export interface UpdateOriginEndpointRequest {
|
|
|
593
595
|
ChannelName: string | undefined;
|
|
594
596
|
OriginEndpointName: string | undefined;
|
|
595
597
|
ContainerType: ContainerType | undefined;
|
|
596
|
-
Segment?: Segment;
|
|
597
|
-
Description?: string;
|
|
598
|
-
StartoverWindowSeconds?: number;
|
|
599
|
-
HlsManifests?: CreateHlsManifestConfiguration[];
|
|
600
|
-
LowLatencyHlsManifests?:
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
598
|
+
Segment?: Segment | undefined;
|
|
599
|
+
Description?: string | undefined;
|
|
600
|
+
StartoverWindowSeconds?: number | undefined;
|
|
601
|
+
HlsManifests?: CreateHlsManifestConfiguration[] | undefined;
|
|
602
|
+
LowLatencyHlsManifests?:
|
|
603
|
+
| CreateLowLatencyHlsManifestConfiguration[]
|
|
604
|
+
| undefined;
|
|
605
|
+
DashManifests?: CreateDashManifestConfiguration[] | undefined;
|
|
606
|
+
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
|
|
607
|
+
ETag?: string | undefined;
|
|
604
608
|
}
|
|
605
609
|
export interface UpdateOriginEndpointResponse {
|
|
606
610
|
Arn: string | undefined;
|
|
@@ -611,20 +615,20 @@ export interface UpdateOriginEndpointResponse {
|
|
|
611
615
|
Segment: Segment | undefined;
|
|
612
616
|
CreatedAt: Date | undefined;
|
|
613
617
|
ModifiedAt: Date | undefined;
|
|
614
|
-
Description?: string;
|
|
615
|
-
StartoverWindowSeconds?: number;
|
|
616
|
-
HlsManifests?: GetHlsManifestConfiguration[];
|
|
617
|
-
LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[];
|
|
618
|
-
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
|
|
619
|
-
ETag?: string;
|
|
620
|
-
Tags?: Record<string, string
|
|
621
|
-
DashManifests?: GetDashManifestConfiguration[];
|
|
618
|
+
Description?: string | undefined;
|
|
619
|
+
StartoverWindowSeconds?: number | undefined;
|
|
620
|
+
HlsManifests?: GetHlsManifestConfiguration[] | undefined;
|
|
621
|
+
LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[] | undefined;
|
|
622
|
+
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
|
|
623
|
+
ETag?: string | undefined;
|
|
624
|
+
Tags?: Record<string, string> | undefined;
|
|
625
|
+
DashManifests?: GetDashManifestConfiguration[] | undefined;
|
|
622
626
|
}
|
|
623
627
|
export interface UpdateChannelRequest {
|
|
624
628
|
ChannelGroupName: string | undefined;
|
|
625
629
|
ChannelName: string | undefined;
|
|
626
|
-
ETag?: string;
|
|
627
|
-
Description?: string;
|
|
630
|
+
ETag?: string | undefined;
|
|
631
|
+
Description?: string | undefined;
|
|
628
632
|
}
|
|
629
633
|
export interface UpdateChannelResponse {
|
|
630
634
|
Arn: string | undefined;
|
|
@@ -632,17 +636,17 @@ export interface UpdateChannelResponse {
|
|
|
632
636
|
ChannelGroupName: string | undefined;
|
|
633
637
|
CreatedAt: Date | undefined;
|
|
634
638
|
ModifiedAt: Date | undefined;
|
|
635
|
-
Description?: string;
|
|
636
|
-
IngestEndpoints?: IngestEndpoint[];
|
|
637
|
-
InputType?: InputType;
|
|
638
|
-
ETag?: string;
|
|
639
|
-
Tags?: Record<string, string
|
|
639
|
+
Description?: string | undefined;
|
|
640
|
+
IngestEndpoints?: IngestEndpoint[] | undefined;
|
|
641
|
+
InputType?: InputType | undefined;
|
|
642
|
+
ETag?: string | undefined;
|
|
643
|
+
Tags?: Record<string, string> | undefined;
|
|
640
644
|
}
|
|
641
645
|
export interface CreateChannelGroupRequest {
|
|
642
646
|
ChannelGroupName: string | undefined;
|
|
643
|
-
ClientToken?: string;
|
|
644
|
-
Description?: string;
|
|
645
|
-
Tags?: Record<string, string
|
|
647
|
+
ClientToken?: string | undefined;
|
|
648
|
+
Description?: string | undefined;
|
|
649
|
+
Tags?: Record<string, string> | undefined;
|
|
646
650
|
}
|
|
647
651
|
export interface CreateChannelGroupResponse {
|
|
648
652
|
ChannelGroupName: string | undefined;
|
|
@@ -650,9 +654,9 @@ export interface CreateChannelGroupResponse {
|
|
|
650
654
|
EgressDomain: string | undefined;
|
|
651
655
|
CreatedAt: Date | undefined;
|
|
652
656
|
ModifiedAt: Date | undefined;
|
|
653
|
-
ETag?: string;
|
|
654
|
-
Description?: string;
|
|
655
|
-
Tags?: Record<string, string
|
|
657
|
+
ETag?: string | undefined;
|
|
658
|
+
Description?: string | undefined;
|
|
659
|
+
Tags?: Record<string, string> | undefined;
|
|
656
660
|
}
|
|
657
661
|
export interface DeleteChannelGroupRequest {
|
|
658
662
|
ChannelGroupName: string | undefined;
|
|
@@ -667,9 +671,9 @@ export interface GetChannelGroupResponse {
|
|
|
667
671
|
EgressDomain: string | undefined;
|
|
668
672
|
CreatedAt: Date | undefined;
|
|
669
673
|
ModifiedAt: Date | undefined;
|
|
670
|
-
Description?: string;
|
|
671
|
-
ETag?: string;
|
|
672
|
-
Tags?: Record<string, string
|
|
674
|
+
Description?: string | undefined;
|
|
675
|
+
ETag?: string | undefined;
|
|
676
|
+
Tags?: Record<string, string> | undefined;
|
|
673
677
|
}
|
|
674
678
|
export interface S3DestinationConfig {
|
|
675
679
|
BucketName: string | undefined;
|
|
@@ -688,9 +692,9 @@ export interface HarvestedLowLatencyHlsManifest {
|
|
|
688
692
|
ManifestName: string | undefined;
|
|
689
693
|
}
|
|
690
694
|
export interface HarvestedManifests {
|
|
691
|
-
HlsManifests?: HarvestedHlsManifest[];
|
|
692
|
-
DashManifests?: HarvestedDashManifest[];
|
|
693
|
-
LowLatencyHlsManifests?: HarvestedLowLatencyHlsManifest[];
|
|
695
|
+
HlsManifests?: HarvestedHlsManifest[] | undefined;
|
|
696
|
+
DashManifests?: HarvestedDashManifest[] | undefined;
|
|
697
|
+
LowLatencyHlsManifests?: HarvestedLowLatencyHlsManifest[] | undefined;
|
|
694
698
|
}
|
|
695
699
|
export interface HarvesterScheduleConfiguration {
|
|
696
700
|
StartTime: Date | undefined;
|
|
@@ -700,13 +704,13 @@ export interface CreateHarvestJobRequest {
|
|
|
700
704
|
ChannelGroupName: string | undefined;
|
|
701
705
|
ChannelName: string | undefined;
|
|
702
706
|
OriginEndpointName: string | undefined;
|
|
703
|
-
Description?: string;
|
|
707
|
+
Description?: string | undefined;
|
|
704
708
|
HarvestedManifests: HarvestedManifests | undefined;
|
|
705
709
|
ScheduleConfiguration: HarvesterScheduleConfiguration | undefined;
|
|
706
710
|
Destination: Destination | undefined;
|
|
707
|
-
ClientToken?: string;
|
|
708
|
-
HarvestJobName?: string;
|
|
709
|
-
Tags?: Record<string, string
|
|
711
|
+
ClientToken?: string | undefined;
|
|
712
|
+
HarvestJobName?: string | undefined;
|
|
713
|
+
Tags?: Record<string, string> | undefined;
|
|
710
714
|
}
|
|
711
715
|
export declare const HarvestJobStatus: {
|
|
712
716
|
readonly CANCELLED: "CANCELLED";
|
|
@@ -724,15 +728,15 @@ export interface CreateHarvestJobResponse {
|
|
|
724
728
|
Destination: Destination | undefined;
|
|
725
729
|
HarvestJobName: string | undefined;
|
|
726
730
|
HarvestedManifests: HarvestedManifests | undefined;
|
|
727
|
-
Description?: string;
|
|
731
|
+
Description?: string | undefined;
|
|
728
732
|
ScheduleConfiguration: HarvesterScheduleConfiguration | undefined;
|
|
729
733
|
Arn: string | undefined;
|
|
730
734
|
CreatedAt: Date | undefined;
|
|
731
735
|
ModifiedAt: Date | undefined;
|
|
732
736
|
Status: HarvestJobStatus | undefined;
|
|
733
|
-
ErrorMessage?: string;
|
|
734
|
-
ETag?: string;
|
|
735
|
-
Tags?: Record<string, string
|
|
737
|
+
ErrorMessage?: string | undefined;
|
|
738
|
+
ETag?: string | undefined;
|
|
739
|
+
Tags?: Record<string, string> | undefined;
|
|
736
740
|
}
|
|
737
741
|
export interface GetHarvestJobRequest {
|
|
738
742
|
ChannelGroupName: string | undefined;
|
|
@@ -747,23 +751,23 @@ export interface GetHarvestJobResponse {
|
|
|
747
751
|
Destination: Destination | undefined;
|
|
748
752
|
HarvestJobName: string | undefined;
|
|
749
753
|
HarvestedManifests: HarvestedManifests | undefined;
|
|
750
|
-
Description?: string;
|
|
754
|
+
Description?: string | undefined;
|
|
751
755
|
ScheduleConfiguration: HarvesterScheduleConfiguration | undefined;
|
|
752
756
|
Arn: string | undefined;
|
|
753
757
|
CreatedAt: Date | undefined;
|
|
754
758
|
ModifiedAt: Date | undefined;
|
|
755
759
|
Status: HarvestJobStatus | undefined;
|
|
756
|
-
ErrorMessage?: string;
|
|
757
|
-
ETag?: string;
|
|
758
|
-
Tags?: Record<string, string
|
|
760
|
+
ErrorMessage?: string | undefined;
|
|
761
|
+
ETag?: string | undefined;
|
|
762
|
+
Tags?: Record<string, string> | undefined;
|
|
759
763
|
}
|
|
760
764
|
export interface ListHarvestJobsRequest {
|
|
761
765
|
ChannelGroupName: string | undefined;
|
|
762
|
-
ChannelName?: string;
|
|
763
|
-
OriginEndpointName?: string;
|
|
764
|
-
Status?: HarvestJobStatus;
|
|
765
|
-
MaxResults?: number;
|
|
766
|
-
NextToken?: string;
|
|
766
|
+
ChannelName?: string | undefined;
|
|
767
|
+
OriginEndpointName?: string | undefined;
|
|
768
|
+
Status?: HarvestJobStatus | undefined;
|
|
769
|
+
MaxResults?: number | undefined;
|
|
770
|
+
NextToken?: string | undefined;
|
|
767
771
|
}
|
|
768
772
|
export interface HarvestJob {
|
|
769
773
|
ChannelGroupName: string | undefined;
|
|
@@ -772,31 +776,31 @@ export interface HarvestJob {
|
|
|
772
776
|
Destination: Destination | undefined;
|
|
773
777
|
HarvestJobName: string | undefined;
|
|
774
778
|
HarvestedManifests: HarvestedManifests | undefined;
|
|
775
|
-
Description?: string;
|
|
779
|
+
Description?: string | undefined;
|
|
776
780
|
ScheduleConfiguration: HarvesterScheduleConfiguration | undefined;
|
|
777
781
|
Arn: string | undefined;
|
|
778
782
|
CreatedAt: Date | undefined;
|
|
779
783
|
ModifiedAt: Date | undefined;
|
|
780
784
|
Status: HarvestJobStatus | undefined;
|
|
781
|
-
ErrorMessage?: string;
|
|
782
|
-
ETag?: string;
|
|
785
|
+
ErrorMessage?: string | undefined;
|
|
786
|
+
ETag?: string | undefined;
|
|
783
787
|
}
|
|
784
788
|
export interface ListHarvestJobsResponse {
|
|
785
|
-
Items?: HarvestJob[];
|
|
786
|
-
NextToken?: string;
|
|
789
|
+
Items?: HarvestJob[] | undefined;
|
|
790
|
+
NextToken?: string | undefined;
|
|
787
791
|
}
|
|
788
792
|
export interface ListChannelGroupsRequest {
|
|
789
|
-
MaxResults?: number;
|
|
790
|
-
NextToken?: string;
|
|
793
|
+
MaxResults?: number | undefined;
|
|
794
|
+
NextToken?: string | undefined;
|
|
791
795
|
}
|
|
792
796
|
export interface ListChannelGroupsResponse {
|
|
793
|
-
Items?: ChannelGroupListConfiguration[];
|
|
794
|
-
NextToken?: string;
|
|
797
|
+
Items?: ChannelGroupListConfiguration[] | undefined;
|
|
798
|
+
NextToken?: string | undefined;
|
|
795
799
|
}
|
|
796
800
|
export interface UpdateChannelGroupRequest {
|
|
797
801
|
ChannelGroupName: string | undefined;
|
|
798
|
-
ETag?: string;
|
|
799
|
-
Description?: string;
|
|
802
|
+
ETag?: string | undefined;
|
|
803
|
+
Description?: string | undefined;
|
|
800
804
|
}
|
|
801
805
|
export interface UpdateChannelGroupResponse {
|
|
802
806
|
ChannelGroupName: string | undefined;
|
|
@@ -804,15 +808,15 @@ export interface UpdateChannelGroupResponse {
|
|
|
804
808
|
EgressDomain: string | undefined;
|
|
805
809
|
CreatedAt: Date | undefined;
|
|
806
810
|
ModifiedAt: Date | undefined;
|
|
807
|
-
Description?: string;
|
|
808
|
-
ETag?: string;
|
|
809
|
-
Tags?: Record<string, string
|
|
811
|
+
Description?: string | undefined;
|
|
812
|
+
ETag?: string | undefined;
|
|
813
|
+
Tags?: Record<string, string> | undefined;
|
|
810
814
|
}
|
|
811
815
|
export interface ListTagsForResourceRequest {
|
|
812
816
|
ResourceArn: string | undefined;
|
|
813
817
|
}
|
|
814
818
|
export interface ListTagsForResourceResponse {
|
|
815
|
-
Tags?: Record<string, string
|
|
819
|
+
Tags?: Record<string, string> | undefined;
|
|
816
820
|
}
|
|
817
821
|
export interface TagResourceRequest {
|
|
818
822
|
ResourceArn: string | undefined;
|