@aws-sdk/client-mediapackage 3.687.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 +280 -280
- package/dist-types/ts3.4/models/models_0.d.ts +280 -280
- package/package.json +7 -7
|
@@ -18,29 +18,29 @@ export declare const __PeriodTriggersElement: {
|
|
|
18
18
|
export type __PeriodTriggersElement =
|
|
19
19
|
(typeof __PeriodTriggersElement)[keyof typeof __PeriodTriggersElement];
|
|
20
20
|
export interface EgressAccessLogs {
|
|
21
|
-
LogGroupName?: string;
|
|
21
|
+
LogGroupName?: string | undefined;
|
|
22
22
|
}
|
|
23
23
|
export interface IngestEndpoint {
|
|
24
|
-
Id?: string;
|
|
25
|
-
Password?: string;
|
|
26
|
-
Url?: string;
|
|
27
|
-
Username?: string;
|
|
24
|
+
Id?: string | undefined;
|
|
25
|
+
Password?: string | undefined;
|
|
26
|
+
Url?: string | undefined;
|
|
27
|
+
Username?: string | undefined;
|
|
28
28
|
}
|
|
29
29
|
export interface HlsIngest {
|
|
30
|
-
IngestEndpoints?: IngestEndpoint[];
|
|
30
|
+
IngestEndpoints?: IngestEndpoint[] | undefined;
|
|
31
31
|
}
|
|
32
32
|
export interface IngressAccessLogs {
|
|
33
|
-
LogGroupName?: string;
|
|
33
|
+
LogGroupName?: string | undefined;
|
|
34
34
|
}
|
|
35
35
|
export interface Channel {
|
|
36
|
-
Arn?: string;
|
|
37
|
-
CreatedAt?: string;
|
|
38
|
-
Description?: string;
|
|
39
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
40
|
-
HlsIngest?: HlsIngest;
|
|
41
|
-
Id?: string;
|
|
42
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
43
|
-
Tags?: Record<string, string
|
|
36
|
+
Arn?: string | undefined;
|
|
37
|
+
CreatedAt?: string | undefined;
|
|
38
|
+
Description?: string | undefined;
|
|
39
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
40
|
+
HlsIngest?: HlsIngest | undefined;
|
|
41
|
+
Id?: string | undefined;
|
|
42
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
43
|
+
Tags?: Record<string, string> | undefined;
|
|
44
44
|
}
|
|
45
45
|
export interface S3Destination {
|
|
46
46
|
BucketName: string | undefined;
|
|
@@ -54,15 +54,15 @@ export declare const Status: {
|
|
|
54
54
|
};
|
|
55
55
|
export type Status = (typeof Status)[keyof typeof Status];
|
|
56
56
|
export interface HarvestJob {
|
|
57
|
-
Arn?: string;
|
|
58
|
-
ChannelId?: string;
|
|
59
|
-
CreatedAt?: string;
|
|
60
|
-
EndTime?: string;
|
|
61
|
-
Id?: string;
|
|
62
|
-
OriginEndpointId?: string;
|
|
63
|
-
S3Destination?: S3Destination;
|
|
64
|
-
StartTime?: string;
|
|
65
|
-
Status?: Status;
|
|
57
|
+
Arn?: string | undefined;
|
|
58
|
+
ChannelId?: string | undefined;
|
|
59
|
+
CreatedAt?: string | undefined;
|
|
60
|
+
EndTime?: string | undefined;
|
|
61
|
+
Id?: string | undefined;
|
|
62
|
+
OriginEndpointId?: string | undefined;
|
|
63
|
+
S3Destination?: S3Destination | undefined;
|
|
64
|
+
StartTime?: string | undefined;
|
|
65
|
+
Status?: Status | undefined;
|
|
66
66
|
}
|
|
67
67
|
export declare const AdMarkers: {
|
|
68
68
|
readonly DATERANGE: "DATERANGE";
|
|
@@ -86,27 +86,27 @@ export declare const PlaylistType: {
|
|
|
86
86
|
};
|
|
87
87
|
export type PlaylistType = (typeof PlaylistType)[keyof typeof PlaylistType];
|
|
88
88
|
export interface HlsManifest {
|
|
89
|
-
AdMarkers?: AdMarkers;
|
|
89
|
+
AdMarkers?: AdMarkers | undefined;
|
|
90
90
|
Id: string | undefined;
|
|
91
|
-
IncludeIframeOnlyStream?: boolean;
|
|
92
|
-
ManifestName?: string;
|
|
93
|
-
PlaylistType?: PlaylistType;
|
|
94
|
-
PlaylistWindowSeconds?: number;
|
|
95
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
96
|
-
Url?: string;
|
|
97
|
-
AdTriggers?: __AdTriggersElement[];
|
|
98
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
91
|
+
IncludeIframeOnlyStream?: boolean | undefined;
|
|
92
|
+
ManifestName?: string | undefined;
|
|
93
|
+
PlaylistType?: PlaylistType | undefined;
|
|
94
|
+
PlaylistWindowSeconds?: number | undefined;
|
|
95
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
96
|
+
Url?: string | undefined;
|
|
97
|
+
AdTriggers?: __AdTriggersElement[] | undefined;
|
|
98
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | undefined;
|
|
99
99
|
}
|
|
100
100
|
export interface HlsManifestCreateOrUpdateParameters {
|
|
101
|
-
AdMarkers?: AdMarkers;
|
|
102
|
-
AdTriggers?: __AdTriggersElement[];
|
|
103
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
101
|
+
AdMarkers?: AdMarkers | undefined;
|
|
102
|
+
AdTriggers?: __AdTriggersElement[] | undefined;
|
|
103
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | undefined;
|
|
104
104
|
Id: string | undefined;
|
|
105
|
-
IncludeIframeOnlyStream?: boolean;
|
|
106
|
-
ManifestName?: string;
|
|
107
|
-
PlaylistType?: PlaylistType;
|
|
108
|
-
PlaylistWindowSeconds?: number;
|
|
109
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
105
|
+
IncludeIframeOnlyStream?: boolean | undefined;
|
|
106
|
+
ManifestName?: string | undefined;
|
|
107
|
+
PlaylistType?: PlaylistType | undefined;
|
|
108
|
+
PlaylistWindowSeconds?: number | undefined;
|
|
109
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
110
110
|
}
|
|
111
111
|
export interface Authorization {
|
|
112
112
|
CdnIdentifierSecret: string | undefined;
|
|
@@ -146,17 +146,17 @@ export interface EncryptionContractConfiguration {
|
|
|
146
146
|
PresetSpeke20Video: PresetSpeke20Video | undefined;
|
|
147
147
|
}
|
|
148
148
|
export interface SpekeKeyProvider {
|
|
149
|
-
CertificateArn?: string;
|
|
150
|
-
EncryptionContractConfiguration?: EncryptionContractConfiguration;
|
|
149
|
+
CertificateArn?: string | undefined;
|
|
150
|
+
EncryptionContractConfiguration?: EncryptionContractConfiguration | undefined;
|
|
151
151
|
ResourceId: string | undefined;
|
|
152
152
|
RoleArn: string | undefined;
|
|
153
153
|
SystemIds: string[] | undefined;
|
|
154
154
|
Url: string | undefined;
|
|
155
155
|
}
|
|
156
156
|
export interface CmafEncryption {
|
|
157
|
-
ConstantInitializationVector?: string;
|
|
158
|
-
EncryptionMethod?: CmafEncryptionMethod;
|
|
159
|
-
KeyRotationIntervalSeconds?: number;
|
|
157
|
+
ConstantInitializationVector?: string | undefined;
|
|
158
|
+
EncryptionMethod?: CmafEncryptionMethod | undefined;
|
|
159
|
+
KeyRotationIntervalSeconds?: number | undefined;
|
|
160
160
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
161
161
|
}
|
|
162
162
|
export declare const StreamOrder: {
|
|
@@ -166,19 +166,19 @@ export declare const StreamOrder: {
|
|
|
166
166
|
};
|
|
167
167
|
export type StreamOrder = (typeof StreamOrder)[keyof typeof StreamOrder];
|
|
168
168
|
export interface StreamSelection {
|
|
169
|
-
MaxVideoBitsPerSecond?: number;
|
|
170
|
-
MinVideoBitsPerSecond?: number;
|
|
171
|
-
StreamOrder?: StreamOrder;
|
|
169
|
+
MaxVideoBitsPerSecond?: number | undefined;
|
|
170
|
+
MinVideoBitsPerSecond?: number | undefined;
|
|
171
|
+
StreamOrder?: StreamOrder | undefined;
|
|
172
172
|
}
|
|
173
173
|
export interface CmafPackage {
|
|
174
|
-
Encryption?: CmafEncryption;
|
|
175
|
-
HlsManifests?: HlsManifest[];
|
|
176
|
-
SegmentDurationSeconds?: number;
|
|
177
|
-
SegmentPrefix?: string;
|
|
178
|
-
StreamSelection?: StreamSelection;
|
|
174
|
+
Encryption?: CmafEncryption | undefined;
|
|
175
|
+
HlsManifests?: HlsManifest[] | undefined;
|
|
176
|
+
SegmentDurationSeconds?: number | undefined;
|
|
177
|
+
SegmentPrefix?: string | undefined;
|
|
178
|
+
StreamSelection?: StreamSelection | undefined;
|
|
179
179
|
}
|
|
180
180
|
export interface DashEncryption {
|
|
181
|
-
KeyRotationIntervalSeconds?: number;
|
|
181
|
+
KeyRotationIntervalSeconds?: number | undefined;
|
|
182
182
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
183
183
|
}
|
|
184
184
|
export declare const ManifestLayout: {
|
|
@@ -210,22 +210,22 @@ export declare const UtcTiming: {
|
|
|
210
210
|
};
|
|
211
211
|
export type UtcTiming = (typeof UtcTiming)[keyof typeof UtcTiming];
|
|
212
212
|
export interface DashPackage {
|
|
213
|
-
AdTriggers?: __AdTriggersElement[];
|
|
214
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
215
|
-
Encryption?: DashEncryption;
|
|
216
|
-
IncludeIframeOnlyStream?: boolean;
|
|
217
|
-
ManifestLayout?: ManifestLayout;
|
|
218
|
-
ManifestWindowSeconds?: number;
|
|
219
|
-
MinBufferTimeSeconds?: number;
|
|
220
|
-
MinUpdatePeriodSeconds?: number;
|
|
221
|
-
PeriodTriggers?: __PeriodTriggersElement[];
|
|
222
|
-
Profile?: Profile;
|
|
223
|
-
SegmentDurationSeconds?: number;
|
|
224
|
-
SegmentTemplateFormat?: SegmentTemplateFormat;
|
|
225
|
-
StreamSelection?: StreamSelection;
|
|
226
|
-
SuggestedPresentationDelaySeconds?: number;
|
|
227
|
-
UtcTiming?: UtcTiming;
|
|
228
|
-
UtcTimingUri?: string;
|
|
213
|
+
AdTriggers?: __AdTriggersElement[] | undefined;
|
|
214
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | undefined;
|
|
215
|
+
Encryption?: DashEncryption | undefined;
|
|
216
|
+
IncludeIframeOnlyStream?: boolean | undefined;
|
|
217
|
+
ManifestLayout?: ManifestLayout | undefined;
|
|
218
|
+
ManifestWindowSeconds?: number | undefined;
|
|
219
|
+
MinBufferTimeSeconds?: number | undefined;
|
|
220
|
+
MinUpdatePeriodSeconds?: number | undefined;
|
|
221
|
+
PeriodTriggers?: __PeriodTriggersElement[] | undefined;
|
|
222
|
+
Profile?: Profile | undefined;
|
|
223
|
+
SegmentDurationSeconds?: number | undefined;
|
|
224
|
+
SegmentTemplateFormat?: SegmentTemplateFormat | undefined;
|
|
225
|
+
StreamSelection?: StreamSelection | undefined;
|
|
226
|
+
SuggestedPresentationDelaySeconds?: number | undefined;
|
|
227
|
+
UtcTiming?: UtcTiming | undefined;
|
|
228
|
+
UtcTimingUri?: string | undefined;
|
|
229
229
|
}
|
|
230
230
|
export declare const EncryptionMethod: {
|
|
231
231
|
readonly AES_128: "AES_128";
|
|
@@ -234,34 +234,34 @@ export declare const EncryptionMethod: {
|
|
|
234
234
|
export type EncryptionMethod =
|
|
235
235
|
(typeof EncryptionMethod)[keyof typeof EncryptionMethod];
|
|
236
236
|
export interface HlsEncryption {
|
|
237
|
-
ConstantInitializationVector?: string;
|
|
238
|
-
EncryptionMethod?: EncryptionMethod;
|
|
239
|
-
KeyRotationIntervalSeconds?: number;
|
|
240
|
-
RepeatExtXKey?: boolean;
|
|
237
|
+
ConstantInitializationVector?: string | undefined;
|
|
238
|
+
EncryptionMethod?: EncryptionMethod | undefined;
|
|
239
|
+
KeyRotationIntervalSeconds?: number | undefined;
|
|
240
|
+
RepeatExtXKey?: boolean | undefined;
|
|
241
241
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
242
242
|
}
|
|
243
243
|
export interface HlsPackage {
|
|
244
|
-
AdMarkers?: AdMarkers;
|
|
245
|
-
AdTriggers?: __AdTriggersElement[];
|
|
246
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
247
|
-
Encryption?: HlsEncryption;
|
|
248
|
-
IncludeDvbSubtitles?: boolean;
|
|
249
|
-
IncludeIframeOnlyStream?: boolean;
|
|
250
|
-
PlaylistType?: PlaylistType;
|
|
251
|
-
PlaylistWindowSeconds?: number;
|
|
252
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
253
|
-
SegmentDurationSeconds?: number;
|
|
254
|
-
StreamSelection?: StreamSelection;
|
|
255
|
-
UseAudioRenditionGroup?: boolean;
|
|
244
|
+
AdMarkers?: AdMarkers | undefined;
|
|
245
|
+
AdTriggers?: __AdTriggersElement[] | undefined;
|
|
246
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | undefined;
|
|
247
|
+
Encryption?: HlsEncryption | undefined;
|
|
248
|
+
IncludeDvbSubtitles?: boolean | undefined;
|
|
249
|
+
IncludeIframeOnlyStream?: boolean | undefined;
|
|
250
|
+
PlaylistType?: PlaylistType | undefined;
|
|
251
|
+
PlaylistWindowSeconds?: number | undefined;
|
|
252
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
253
|
+
SegmentDurationSeconds?: number | undefined;
|
|
254
|
+
StreamSelection?: StreamSelection | undefined;
|
|
255
|
+
UseAudioRenditionGroup?: boolean | undefined;
|
|
256
256
|
}
|
|
257
257
|
export interface MssEncryption {
|
|
258
258
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
259
259
|
}
|
|
260
260
|
export interface MssPackage {
|
|
261
|
-
Encryption?: MssEncryption;
|
|
262
|
-
ManifestWindowSeconds?: number;
|
|
263
|
-
SegmentDurationSeconds?: number;
|
|
264
|
-
StreamSelection?: StreamSelection;
|
|
261
|
+
Encryption?: MssEncryption | undefined;
|
|
262
|
+
ManifestWindowSeconds?: number | undefined;
|
|
263
|
+
SegmentDurationSeconds?: number | undefined;
|
|
264
|
+
StreamSelection?: StreamSelection | undefined;
|
|
265
265
|
}
|
|
266
266
|
export declare const Origination: {
|
|
267
267
|
readonly ALLOW: "ALLOW";
|
|
@@ -269,56 +269,56 @@ export declare const Origination: {
|
|
|
269
269
|
};
|
|
270
270
|
export type Origination = (typeof Origination)[keyof typeof Origination];
|
|
271
271
|
export interface OriginEndpoint {
|
|
272
|
-
Arn?: string;
|
|
273
|
-
Authorization?: Authorization;
|
|
274
|
-
ChannelId?: string;
|
|
275
|
-
CmafPackage?: CmafPackage;
|
|
276
|
-
CreatedAt?: string;
|
|
277
|
-
DashPackage?: DashPackage;
|
|
278
|
-
Description?: string;
|
|
279
|
-
HlsPackage?: HlsPackage;
|
|
280
|
-
Id?: string;
|
|
281
|
-
ManifestName?: string;
|
|
282
|
-
MssPackage?: MssPackage;
|
|
283
|
-
Origination?: Origination;
|
|
284
|
-
StartoverWindowSeconds?: number;
|
|
285
|
-
Tags?: Record<string, string
|
|
286
|
-
TimeDelaySeconds?: number;
|
|
287
|
-
Url?: string;
|
|
288
|
-
Whitelist?: string[];
|
|
272
|
+
Arn?: string | undefined;
|
|
273
|
+
Authorization?: Authorization | undefined;
|
|
274
|
+
ChannelId?: string | undefined;
|
|
275
|
+
CmafPackage?: CmafPackage | undefined;
|
|
276
|
+
CreatedAt?: string | undefined;
|
|
277
|
+
DashPackage?: DashPackage | undefined;
|
|
278
|
+
Description?: string | undefined;
|
|
279
|
+
HlsPackage?: HlsPackage | undefined;
|
|
280
|
+
Id?: string | undefined;
|
|
281
|
+
ManifestName?: string | undefined;
|
|
282
|
+
MssPackage?: MssPackage | undefined;
|
|
283
|
+
Origination?: Origination | undefined;
|
|
284
|
+
StartoverWindowSeconds?: number | undefined;
|
|
285
|
+
Tags?: Record<string, string> | undefined;
|
|
286
|
+
TimeDelaySeconds?: number | undefined;
|
|
287
|
+
Url?: string | undefined;
|
|
288
|
+
Whitelist?: string[] | undefined;
|
|
289
289
|
}
|
|
290
290
|
export interface CmafPackageCreateOrUpdateParameters {
|
|
291
|
-
Encryption?: CmafEncryption;
|
|
292
|
-
HlsManifests?: HlsManifestCreateOrUpdateParameters[];
|
|
293
|
-
SegmentDurationSeconds?: number;
|
|
294
|
-
SegmentPrefix?: string;
|
|
295
|
-
StreamSelection?: StreamSelection;
|
|
291
|
+
Encryption?: CmafEncryption | undefined;
|
|
292
|
+
HlsManifests?: HlsManifestCreateOrUpdateParameters[] | undefined;
|
|
293
|
+
SegmentDurationSeconds?: number | undefined;
|
|
294
|
+
SegmentPrefix?: string | undefined;
|
|
295
|
+
StreamSelection?: StreamSelection | undefined;
|
|
296
296
|
}
|
|
297
297
|
export interface ConfigureLogsRequest {
|
|
298
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
298
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
299
299
|
Id: string | undefined;
|
|
300
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
300
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
301
301
|
}
|
|
302
302
|
export interface ConfigureLogsResponse {
|
|
303
|
-
Arn?: string;
|
|
304
|
-
CreatedAt?: string;
|
|
305
|
-
Description?: string;
|
|
306
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
307
|
-
HlsIngest?: HlsIngest;
|
|
308
|
-
Id?: string;
|
|
309
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
310
|
-
Tags?: Record<string, string
|
|
303
|
+
Arn?: string | undefined;
|
|
304
|
+
CreatedAt?: string | undefined;
|
|
305
|
+
Description?: string | undefined;
|
|
306
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
307
|
+
HlsIngest?: HlsIngest | undefined;
|
|
308
|
+
Id?: string | undefined;
|
|
309
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
310
|
+
Tags?: Record<string, string> | undefined;
|
|
311
311
|
}
|
|
312
312
|
export declare class ForbiddenException extends __BaseException {
|
|
313
313
|
readonly name: "ForbiddenException";
|
|
314
314
|
readonly $fault: "client";
|
|
315
|
-
Message?: string;
|
|
315
|
+
Message?: string | undefined;
|
|
316
316
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
317
317
|
}
|
|
318
318
|
export declare class InternalServerErrorException extends __BaseException {
|
|
319
319
|
readonly name: "InternalServerErrorException";
|
|
320
320
|
readonly $fault: "server";
|
|
321
|
-
Message?: string;
|
|
321
|
+
Message?: string | undefined;
|
|
322
322
|
constructor(
|
|
323
323
|
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
324
324
|
);
|
|
@@ -326,13 +326,13 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
326
326
|
export declare class NotFoundException extends __BaseException {
|
|
327
327
|
readonly name: "NotFoundException";
|
|
328
328
|
readonly $fault: "client";
|
|
329
|
-
Message?: string;
|
|
329
|
+
Message?: string | undefined;
|
|
330
330
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
331
331
|
}
|
|
332
332
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
333
333
|
readonly name: "ServiceUnavailableException";
|
|
334
334
|
readonly $fault: "server";
|
|
335
|
-
Message?: string;
|
|
335
|
+
Message?: string | undefined;
|
|
336
336
|
constructor(
|
|
337
337
|
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
338
338
|
);
|
|
@@ -340,7 +340,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
340
340
|
export declare class TooManyRequestsException extends __BaseException {
|
|
341
341
|
readonly name: "TooManyRequestsException";
|
|
342
342
|
readonly $fault: "client";
|
|
343
|
-
Message?: string;
|
|
343
|
+
Message?: string | undefined;
|
|
344
344
|
constructor(
|
|
345
345
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
346
346
|
);
|
|
@@ -348,25 +348,25 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
348
348
|
export declare class UnprocessableEntityException extends __BaseException {
|
|
349
349
|
readonly name: "UnprocessableEntityException";
|
|
350
350
|
readonly $fault: "client";
|
|
351
|
-
Message?: string;
|
|
351
|
+
Message?: string | undefined;
|
|
352
352
|
constructor(
|
|
353
353
|
opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
|
|
354
354
|
);
|
|
355
355
|
}
|
|
356
356
|
export interface CreateChannelRequest {
|
|
357
|
-
Description?: string;
|
|
357
|
+
Description?: string | undefined;
|
|
358
358
|
Id: string | undefined;
|
|
359
|
-
Tags?: Record<string, string
|
|
359
|
+
Tags?: Record<string, string> | undefined;
|
|
360
360
|
}
|
|
361
361
|
export interface CreateChannelResponse {
|
|
362
|
-
Arn?: string;
|
|
363
|
-
CreatedAt?: string;
|
|
364
|
-
Description?: string;
|
|
365
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
366
|
-
HlsIngest?: HlsIngest;
|
|
367
|
-
Id?: string;
|
|
368
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
369
|
-
Tags?: Record<string, string
|
|
362
|
+
Arn?: string | undefined;
|
|
363
|
+
CreatedAt?: string | undefined;
|
|
364
|
+
Description?: string | undefined;
|
|
365
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
366
|
+
HlsIngest?: HlsIngest | undefined;
|
|
367
|
+
Id?: string | undefined;
|
|
368
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
369
|
+
Tags?: Record<string, string> | undefined;
|
|
370
370
|
}
|
|
371
371
|
export interface CreateHarvestJobRequest {
|
|
372
372
|
EndTime: string | undefined;
|
|
@@ -376,50 +376,50 @@ export interface CreateHarvestJobRequest {
|
|
|
376
376
|
StartTime: string | undefined;
|
|
377
377
|
}
|
|
378
378
|
export interface CreateHarvestJobResponse {
|
|
379
|
-
Arn?: string;
|
|
380
|
-
ChannelId?: string;
|
|
381
|
-
CreatedAt?: string;
|
|
382
|
-
EndTime?: string;
|
|
383
|
-
Id?: string;
|
|
384
|
-
OriginEndpointId?: string;
|
|
385
|
-
S3Destination?: S3Destination;
|
|
386
|
-
StartTime?: string;
|
|
387
|
-
Status?: Status;
|
|
379
|
+
Arn?: string | undefined;
|
|
380
|
+
ChannelId?: string | undefined;
|
|
381
|
+
CreatedAt?: string | undefined;
|
|
382
|
+
EndTime?: string | undefined;
|
|
383
|
+
Id?: string | undefined;
|
|
384
|
+
OriginEndpointId?: string | undefined;
|
|
385
|
+
S3Destination?: S3Destination | undefined;
|
|
386
|
+
StartTime?: string | undefined;
|
|
387
|
+
Status?: Status | undefined;
|
|
388
388
|
}
|
|
389
389
|
export interface CreateOriginEndpointRequest {
|
|
390
|
-
Authorization?: Authorization;
|
|
390
|
+
Authorization?: Authorization | undefined;
|
|
391
391
|
ChannelId: string | undefined;
|
|
392
|
-
CmafPackage?: CmafPackageCreateOrUpdateParameters;
|
|
393
|
-
DashPackage?: DashPackage;
|
|
394
|
-
Description?: string;
|
|
395
|
-
HlsPackage?: HlsPackage;
|
|
392
|
+
CmafPackage?: CmafPackageCreateOrUpdateParameters | undefined;
|
|
393
|
+
DashPackage?: DashPackage | undefined;
|
|
394
|
+
Description?: string | undefined;
|
|
395
|
+
HlsPackage?: HlsPackage | undefined;
|
|
396
396
|
Id: string | undefined;
|
|
397
|
-
ManifestName?: string;
|
|
398
|
-
MssPackage?: MssPackage;
|
|
399
|
-
Origination?: Origination;
|
|
400
|
-
StartoverWindowSeconds?: number;
|
|
401
|
-
Tags?: Record<string, string
|
|
402
|
-
TimeDelaySeconds?: number;
|
|
403
|
-
Whitelist?: string[];
|
|
397
|
+
ManifestName?: string | undefined;
|
|
398
|
+
MssPackage?: MssPackage | undefined;
|
|
399
|
+
Origination?: Origination | undefined;
|
|
400
|
+
StartoverWindowSeconds?: number | undefined;
|
|
401
|
+
Tags?: Record<string, string> | undefined;
|
|
402
|
+
TimeDelaySeconds?: number | undefined;
|
|
403
|
+
Whitelist?: string[] | undefined;
|
|
404
404
|
}
|
|
405
405
|
export interface CreateOriginEndpointResponse {
|
|
406
|
-
Arn?: string;
|
|
407
|
-
Authorization?: Authorization;
|
|
408
|
-
ChannelId?: string;
|
|
409
|
-
CmafPackage?: CmafPackage;
|
|
410
|
-
CreatedAt?: string;
|
|
411
|
-
DashPackage?: DashPackage;
|
|
412
|
-
Description?: string;
|
|
413
|
-
HlsPackage?: HlsPackage;
|
|
414
|
-
Id?: string;
|
|
415
|
-
ManifestName?: string;
|
|
416
|
-
MssPackage?: MssPackage;
|
|
417
|
-
Origination?: Origination;
|
|
418
|
-
StartoverWindowSeconds?: number;
|
|
419
|
-
Tags?: Record<string, string
|
|
420
|
-
TimeDelaySeconds?: number;
|
|
421
|
-
Url?: string;
|
|
422
|
-
Whitelist?: string[];
|
|
406
|
+
Arn?: string | undefined;
|
|
407
|
+
Authorization?: Authorization | undefined;
|
|
408
|
+
ChannelId?: string | undefined;
|
|
409
|
+
CmafPackage?: CmafPackage | undefined;
|
|
410
|
+
CreatedAt?: string | undefined;
|
|
411
|
+
DashPackage?: DashPackage | undefined;
|
|
412
|
+
Description?: string | undefined;
|
|
413
|
+
HlsPackage?: HlsPackage | undefined;
|
|
414
|
+
Id?: string | undefined;
|
|
415
|
+
ManifestName?: string | undefined;
|
|
416
|
+
MssPackage?: MssPackage | undefined;
|
|
417
|
+
Origination?: Origination | undefined;
|
|
418
|
+
StartoverWindowSeconds?: number | undefined;
|
|
419
|
+
Tags?: Record<string, string> | undefined;
|
|
420
|
+
TimeDelaySeconds?: number | undefined;
|
|
421
|
+
Url?: string | undefined;
|
|
422
|
+
Whitelist?: string[] | undefined;
|
|
423
423
|
}
|
|
424
424
|
export interface DeleteChannelRequest {
|
|
425
425
|
Id: string | undefined;
|
|
@@ -433,110 +433,110 @@ export interface DescribeChannelRequest {
|
|
|
433
433
|
Id: string | undefined;
|
|
434
434
|
}
|
|
435
435
|
export interface DescribeChannelResponse {
|
|
436
|
-
Arn?: string;
|
|
437
|
-
CreatedAt?: string;
|
|
438
|
-
Description?: string;
|
|
439
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
440
|
-
HlsIngest?: HlsIngest;
|
|
441
|
-
Id?: string;
|
|
442
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
443
|
-
Tags?: Record<string, string
|
|
436
|
+
Arn?: string | undefined;
|
|
437
|
+
CreatedAt?: string | undefined;
|
|
438
|
+
Description?: string | undefined;
|
|
439
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
440
|
+
HlsIngest?: HlsIngest | undefined;
|
|
441
|
+
Id?: string | undefined;
|
|
442
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
443
|
+
Tags?: Record<string, string> | undefined;
|
|
444
444
|
}
|
|
445
445
|
export interface DescribeHarvestJobRequest {
|
|
446
446
|
Id: string | undefined;
|
|
447
447
|
}
|
|
448
448
|
export interface DescribeHarvestJobResponse {
|
|
449
|
-
Arn?: string;
|
|
450
|
-
ChannelId?: string;
|
|
451
|
-
CreatedAt?: string;
|
|
452
|
-
EndTime?: string;
|
|
453
|
-
Id?: string;
|
|
454
|
-
OriginEndpointId?: string;
|
|
455
|
-
S3Destination?: S3Destination;
|
|
456
|
-
StartTime?: string;
|
|
457
|
-
Status?: Status;
|
|
449
|
+
Arn?: string | undefined;
|
|
450
|
+
ChannelId?: string | undefined;
|
|
451
|
+
CreatedAt?: string | undefined;
|
|
452
|
+
EndTime?: string | undefined;
|
|
453
|
+
Id?: string | undefined;
|
|
454
|
+
OriginEndpointId?: string | undefined;
|
|
455
|
+
S3Destination?: S3Destination | undefined;
|
|
456
|
+
StartTime?: string | undefined;
|
|
457
|
+
Status?: Status | undefined;
|
|
458
458
|
}
|
|
459
459
|
export interface DescribeOriginEndpointRequest {
|
|
460
460
|
Id: string | undefined;
|
|
461
461
|
}
|
|
462
462
|
export interface DescribeOriginEndpointResponse {
|
|
463
|
-
Arn?: string;
|
|
464
|
-
Authorization?: Authorization;
|
|
465
|
-
ChannelId?: string;
|
|
466
|
-
CmafPackage?: CmafPackage;
|
|
467
|
-
CreatedAt?: string;
|
|
468
|
-
DashPackage?: DashPackage;
|
|
469
|
-
Description?: string;
|
|
470
|
-
HlsPackage?: HlsPackage;
|
|
471
|
-
Id?: string;
|
|
472
|
-
ManifestName?: string;
|
|
473
|
-
MssPackage?: MssPackage;
|
|
474
|
-
Origination?: Origination;
|
|
475
|
-
StartoverWindowSeconds?: number;
|
|
476
|
-
Tags?: Record<string, string
|
|
477
|
-
TimeDelaySeconds?: number;
|
|
478
|
-
Url?: string;
|
|
479
|
-
Whitelist?: string[];
|
|
463
|
+
Arn?: string | undefined;
|
|
464
|
+
Authorization?: Authorization | undefined;
|
|
465
|
+
ChannelId?: string | undefined;
|
|
466
|
+
CmafPackage?: CmafPackage | undefined;
|
|
467
|
+
CreatedAt?: string | undefined;
|
|
468
|
+
DashPackage?: DashPackage | undefined;
|
|
469
|
+
Description?: string | undefined;
|
|
470
|
+
HlsPackage?: HlsPackage | undefined;
|
|
471
|
+
Id?: string | undefined;
|
|
472
|
+
ManifestName?: string | undefined;
|
|
473
|
+
MssPackage?: MssPackage | undefined;
|
|
474
|
+
Origination?: Origination | undefined;
|
|
475
|
+
StartoverWindowSeconds?: number | undefined;
|
|
476
|
+
Tags?: Record<string, string> | undefined;
|
|
477
|
+
TimeDelaySeconds?: number | undefined;
|
|
478
|
+
Url?: string | undefined;
|
|
479
|
+
Whitelist?: string[] | undefined;
|
|
480
480
|
}
|
|
481
481
|
export interface ListChannelsRequest {
|
|
482
|
-
MaxResults?: number;
|
|
483
|
-
NextToken?: string;
|
|
482
|
+
MaxResults?: number | undefined;
|
|
483
|
+
NextToken?: string | undefined;
|
|
484
484
|
}
|
|
485
485
|
export interface ListChannelsResponse {
|
|
486
|
-
Channels?: Channel[];
|
|
487
|
-
NextToken?: string;
|
|
486
|
+
Channels?: Channel[] | undefined;
|
|
487
|
+
NextToken?: string | undefined;
|
|
488
488
|
}
|
|
489
489
|
export interface ListHarvestJobsRequest {
|
|
490
|
-
IncludeChannelId?: string;
|
|
491
|
-
IncludeStatus?: string;
|
|
492
|
-
MaxResults?: number;
|
|
493
|
-
NextToken?: string;
|
|
490
|
+
IncludeChannelId?: string | undefined;
|
|
491
|
+
IncludeStatus?: string | undefined;
|
|
492
|
+
MaxResults?: number | undefined;
|
|
493
|
+
NextToken?: string | undefined;
|
|
494
494
|
}
|
|
495
495
|
export interface ListHarvestJobsResponse {
|
|
496
|
-
HarvestJobs?: HarvestJob[];
|
|
497
|
-
NextToken?: string;
|
|
496
|
+
HarvestJobs?: HarvestJob[] | undefined;
|
|
497
|
+
NextToken?: string | undefined;
|
|
498
498
|
}
|
|
499
499
|
export interface ListOriginEndpointsRequest {
|
|
500
|
-
ChannelId?: string;
|
|
501
|
-
MaxResults?: number;
|
|
502
|
-
NextToken?: string;
|
|
500
|
+
ChannelId?: string | undefined;
|
|
501
|
+
MaxResults?: number | undefined;
|
|
502
|
+
NextToken?: string | undefined;
|
|
503
503
|
}
|
|
504
504
|
export interface ListOriginEndpointsResponse {
|
|
505
|
-
NextToken?: string;
|
|
506
|
-
OriginEndpoints?: OriginEndpoint[];
|
|
505
|
+
NextToken?: string | undefined;
|
|
506
|
+
OriginEndpoints?: OriginEndpoint[] | undefined;
|
|
507
507
|
}
|
|
508
508
|
export interface ListTagsForResourceRequest {
|
|
509
509
|
ResourceArn: string | undefined;
|
|
510
510
|
}
|
|
511
511
|
export interface ListTagsForResourceResponse {
|
|
512
|
-
Tags?: Record<string, string
|
|
512
|
+
Tags?: Record<string, string> | undefined;
|
|
513
513
|
}
|
|
514
514
|
export interface RotateChannelCredentialsRequest {
|
|
515
515
|
Id: string | undefined;
|
|
516
516
|
}
|
|
517
517
|
export interface RotateChannelCredentialsResponse {
|
|
518
|
-
Arn?: string;
|
|
519
|
-
CreatedAt?: string;
|
|
520
|
-
Description?: string;
|
|
521
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
522
|
-
HlsIngest?: HlsIngest;
|
|
523
|
-
Id?: string;
|
|
524
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
525
|
-
Tags?: Record<string, string
|
|
518
|
+
Arn?: string | undefined;
|
|
519
|
+
CreatedAt?: string | undefined;
|
|
520
|
+
Description?: string | undefined;
|
|
521
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
522
|
+
HlsIngest?: HlsIngest | undefined;
|
|
523
|
+
Id?: string | undefined;
|
|
524
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
525
|
+
Tags?: Record<string, string> | undefined;
|
|
526
526
|
}
|
|
527
527
|
export interface RotateIngestEndpointCredentialsRequest {
|
|
528
528
|
Id: string | undefined;
|
|
529
529
|
IngestEndpointId: string | undefined;
|
|
530
530
|
}
|
|
531
531
|
export interface RotateIngestEndpointCredentialsResponse {
|
|
532
|
-
Arn?: string;
|
|
533
|
-
CreatedAt?: string;
|
|
534
|
-
Description?: string;
|
|
535
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
536
|
-
HlsIngest?: HlsIngest;
|
|
537
|
-
Id?: string;
|
|
538
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
539
|
-
Tags?: Record<string, string
|
|
532
|
+
Arn?: string | undefined;
|
|
533
|
+
CreatedAt?: string | undefined;
|
|
534
|
+
Description?: string | undefined;
|
|
535
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
536
|
+
HlsIngest?: HlsIngest | undefined;
|
|
537
|
+
Id?: string | undefined;
|
|
538
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
539
|
+
Tags?: Record<string, string> | undefined;
|
|
540
540
|
}
|
|
541
541
|
export interface TagResourceRequest {
|
|
542
542
|
ResourceArn: string | undefined;
|
|
@@ -547,51 +547,51 @@ export interface UntagResourceRequest {
|
|
|
547
547
|
TagKeys: string[] | undefined;
|
|
548
548
|
}
|
|
549
549
|
export interface UpdateChannelRequest {
|
|
550
|
-
Description?: string;
|
|
550
|
+
Description?: string | undefined;
|
|
551
551
|
Id: string | undefined;
|
|
552
552
|
}
|
|
553
553
|
export interface UpdateChannelResponse {
|
|
554
|
-
Arn?: string;
|
|
555
|
-
CreatedAt?: string;
|
|
556
|
-
Description?: string;
|
|
557
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
558
|
-
HlsIngest?: HlsIngest;
|
|
559
|
-
Id?: string;
|
|
560
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
561
|
-
Tags?: Record<string, string
|
|
554
|
+
Arn?: string | undefined;
|
|
555
|
+
CreatedAt?: string | undefined;
|
|
556
|
+
Description?: string | undefined;
|
|
557
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
558
|
+
HlsIngest?: HlsIngest | undefined;
|
|
559
|
+
Id?: string | undefined;
|
|
560
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
561
|
+
Tags?: Record<string, string> | undefined;
|
|
562
562
|
}
|
|
563
563
|
export interface UpdateOriginEndpointRequest {
|
|
564
|
-
Authorization?: Authorization;
|
|
565
|
-
CmafPackage?: CmafPackageCreateOrUpdateParameters;
|
|
566
|
-
DashPackage?: DashPackage;
|
|
567
|
-
Description?: string;
|
|
568
|
-
HlsPackage?: HlsPackage;
|
|
564
|
+
Authorization?: Authorization | undefined;
|
|
565
|
+
CmafPackage?: CmafPackageCreateOrUpdateParameters | undefined;
|
|
566
|
+
DashPackage?: DashPackage | undefined;
|
|
567
|
+
Description?: string | undefined;
|
|
568
|
+
HlsPackage?: HlsPackage | undefined;
|
|
569
569
|
Id: string | undefined;
|
|
570
|
-
ManifestName?: string;
|
|
571
|
-
MssPackage?: MssPackage;
|
|
572
|
-
Origination?: Origination;
|
|
573
|
-
StartoverWindowSeconds?: number;
|
|
574
|
-
TimeDelaySeconds?: number;
|
|
575
|
-
Whitelist?: string[];
|
|
570
|
+
ManifestName?: string | undefined;
|
|
571
|
+
MssPackage?: MssPackage | undefined;
|
|
572
|
+
Origination?: Origination | undefined;
|
|
573
|
+
StartoverWindowSeconds?: number | undefined;
|
|
574
|
+
TimeDelaySeconds?: number | undefined;
|
|
575
|
+
Whitelist?: string[] | undefined;
|
|
576
576
|
}
|
|
577
577
|
export interface UpdateOriginEndpointResponse {
|
|
578
|
-
Arn?: string;
|
|
579
|
-
Authorization?: Authorization;
|
|
580
|
-
ChannelId?: string;
|
|
581
|
-
CmafPackage?: CmafPackage;
|
|
582
|
-
CreatedAt?: string;
|
|
583
|
-
DashPackage?: DashPackage;
|
|
584
|
-
Description?: string;
|
|
585
|
-
HlsPackage?: HlsPackage;
|
|
586
|
-
Id?: string;
|
|
587
|
-
ManifestName?: string;
|
|
588
|
-
MssPackage?: MssPackage;
|
|
589
|
-
Origination?: Origination;
|
|
590
|
-
StartoverWindowSeconds?: number;
|
|
591
|
-
Tags?: Record<string, string
|
|
592
|
-
TimeDelaySeconds?: number;
|
|
593
|
-
Url?: string;
|
|
594
|
-
Whitelist?: string[];
|
|
578
|
+
Arn?: string | undefined;
|
|
579
|
+
Authorization?: Authorization | undefined;
|
|
580
|
+
ChannelId?: string | undefined;
|
|
581
|
+
CmafPackage?: CmafPackage | undefined;
|
|
582
|
+
CreatedAt?: string | undefined;
|
|
583
|
+
DashPackage?: DashPackage | undefined;
|
|
584
|
+
Description?: string | undefined;
|
|
585
|
+
HlsPackage?: HlsPackage | undefined;
|
|
586
|
+
Id?: string | undefined;
|
|
587
|
+
ManifestName?: string | undefined;
|
|
588
|
+
MssPackage?: MssPackage | undefined;
|
|
589
|
+
Origination?: Origination | undefined;
|
|
590
|
+
StartoverWindowSeconds?: number | undefined;
|
|
591
|
+
Tags?: Record<string, string> | undefined;
|
|
592
|
+
TimeDelaySeconds?: number | undefined;
|
|
593
|
+
Url?: string | undefined;
|
|
594
|
+
Whitelist?: string[] | undefined;
|
|
595
595
|
}
|
|
596
596
|
export declare const IngestEndpointFilterSensitiveLog: (
|
|
597
597
|
obj: IngestEndpoint
|