@aws-sdk/client-mediatailor 3.170.0 → 3.178.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/CHANGELOG.md +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/MediaTailor.d.ts +0 -42
- package/dist-types/ts3.4/MediaTailorClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/ConfigureLogsForPlaybackConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateLiveSourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreatePrefetchScheduleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateProgramCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateSourceLocationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateVodSourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteChannelPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteLiveSourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeletePlaybackConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeletePrefetchScheduleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteProgramCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteSourceLocationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteVodSourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeChannelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeLiveSourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeProgramCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeSourceLocationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeVodSourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetChannelPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetChannelScheduleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetPlaybackConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetPrefetchScheduleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAlertsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListLiveSourcesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListPlaybackConfigurationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListPrefetchSchedulesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListSourceLocationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListVodSourcesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutChannelPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutPlaybackConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartChannelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StopChannelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateLiveSourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateSourceLocationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateVodSourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/MediaTailorServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -500
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -3,365 +3,231 @@ import { MediaTailorServiceException as __BaseException } from "./MediaTailorSer
|
|
|
3
3
|
export declare enum MessageType {
|
|
4
4
|
SPLICE_INSERT = "SPLICE_INSERT",
|
|
5
5
|
}
|
|
6
|
-
|
|
7
6
|
export interface SlateSource {
|
|
8
7
|
SourceLocationName?: string;
|
|
9
|
-
|
|
10
8
|
VodSourceName?: string;
|
|
11
9
|
}
|
|
12
|
-
|
|
13
10
|
export interface SpliceInsertMessage {
|
|
14
11
|
AvailNum?: number;
|
|
15
|
-
|
|
16
12
|
AvailsExpected?: number;
|
|
17
|
-
|
|
18
13
|
SpliceEventId?: number;
|
|
19
|
-
|
|
20
14
|
UniqueProgramId?: number;
|
|
21
15
|
}
|
|
22
|
-
|
|
23
16
|
export interface AdBreak {
|
|
24
17
|
MessageType?: MessageType | string;
|
|
25
|
-
|
|
26
18
|
OffsetMillis?: number;
|
|
27
|
-
|
|
28
19
|
Slate?: SlateSource;
|
|
29
|
-
|
|
30
20
|
SpliceInsertMessage?: SpliceInsertMessage;
|
|
31
21
|
}
|
|
32
|
-
|
|
33
22
|
export interface Alert {
|
|
34
23
|
AlertCode: string | undefined;
|
|
35
|
-
|
|
36
24
|
AlertMessage: string | undefined;
|
|
37
|
-
|
|
38
25
|
LastModifiedTime: Date | undefined;
|
|
39
|
-
|
|
40
26
|
RelatedResourceArns: string[] | undefined;
|
|
41
|
-
|
|
42
27
|
ResourceArn: string | undefined;
|
|
43
28
|
}
|
|
44
29
|
export declare enum Operator {
|
|
45
30
|
EQUALS = "EQUALS",
|
|
46
31
|
}
|
|
47
|
-
|
|
48
32
|
export interface AvailMatchingCriteria {
|
|
49
33
|
DynamicVariable: string | undefined;
|
|
50
|
-
|
|
51
34
|
Operator: Operator | string | undefined;
|
|
52
35
|
}
|
|
53
|
-
|
|
54
36
|
export interface DashPlaylistSettings {
|
|
55
37
|
ManifestWindowSeconds?: number;
|
|
56
|
-
|
|
57
38
|
MinBufferTimeSeconds?: number;
|
|
58
|
-
|
|
59
39
|
MinUpdatePeriodSeconds?: number;
|
|
60
|
-
|
|
61
40
|
SuggestedPresentationDelaySeconds?: number;
|
|
62
41
|
}
|
|
63
|
-
|
|
64
42
|
export interface HlsPlaylistSettings {
|
|
65
43
|
ManifestWindowSeconds?: number;
|
|
66
44
|
}
|
|
67
|
-
|
|
68
45
|
export interface ResponseOutputItem {
|
|
69
46
|
DashPlaylistSettings?: DashPlaylistSettings;
|
|
70
|
-
|
|
71
47
|
HlsPlaylistSettings?: HlsPlaylistSettings;
|
|
72
|
-
|
|
73
48
|
ManifestName: string | undefined;
|
|
74
|
-
|
|
75
49
|
PlaybackUrl: string | undefined;
|
|
76
|
-
|
|
77
50
|
SourceGroup: string | undefined;
|
|
78
51
|
}
|
|
79
|
-
|
|
80
52
|
export interface Channel {
|
|
81
53
|
Arn: string | undefined;
|
|
82
|
-
|
|
83
54
|
ChannelName: string | undefined;
|
|
84
|
-
|
|
85
55
|
ChannelState: string | undefined;
|
|
86
|
-
|
|
87
56
|
CreationTime?: Date;
|
|
88
|
-
|
|
89
57
|
FillerSlate?: SlateSource;
|
|
90
|
-
|
|
91
58
|
LastModifiedTime?: Date;
|
|
92
|
-
|
|
93
59
|
Outputs: ResponseOutputItem[] | undefined;
|
|
94
|
-
|
|
95
60
|
PlaybackMode: string | undefined;
|
|
96
|
-
|
|
97
61
|
Tags?: Record<string, string>;
|
|
98
|
-
|
|
99
62
|
Tier: string | undefined;
|
|
100
63
|
}
|
|
101
64
|
export declare enum Type {
|
|
102
65
|
DASH = "DASH",
|
|
103
66
|
HLS = "HLS",
|
|
104
67
|
}
|
|
105
|
-
|
|
106
68
|
export interface HttpPackageConfiguration {
|
|
107
69
|
Path: string | undefined;
|
|
108
|
-
|
|
109
70
|
SourceGroup: string | undefined;
|
|
110
|
-
|
|
111
71
|
Type: Type | string | undefined;
|
|
112
72
|
}
|
|
113
|
-
|
|
114
73
|
export interface LiveSource {
|
|
115
74
|
Arn: string | undefined;
|
|
116
|
-
|
|
117
75
|
CreationTime?: Date;
|
|
118
|
-
|
|
119
76
|
HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
|
|
120
|
-
|
|
121
77
|
LastModifiedTime?: Date;
|
|
122
|
-
|
|
123
78
|
LiveSourceName: string | undefined;
|
|
124
|
-
|
|
125
79
|
SourceLocationName: string | undefined;
|
|
126
|
-
|
|
127
80
|
Tags?: Record<string, string>;
|
|
128
81
|
}
|
|
129
82
|
export declare enum Mode {
|
|
130
83
|
BEHIND_LIVE_EDGE = "BEHIND_LIVE_EDGE",
|
|
131
84
|
OFF = "OFF",
|
|
132
85
|
}
|
|
133
|
-
|
|
134
86
|
export interface AvailSuppression {
|
|
135
87
|
Mode?: Mode | string;
|
|
136
|
-
|
|
137
88
|
Value?: string;
|
|
138
89
|
}
|
|
139
|
-
|
|
140
90
|
export interface Bumper {
|
|
141
91
|
EndUrl?: string;
|
|
142
|
-
|
|
143
92
|
StartUrl?: string;
|
|
144
93
|
}
|
|
145
|
-
|
|
146
94
|
export interface CdnConfiguration {
|
|
147
95
|
AdSegmentUrlPrefix?: string;
|
|
148
|
-
|
|
149
96
|
ContentSegmentUrlPrefix?: string;
|
|
150
97
|
}
|
|
151
98
|
export declare enum OriginManifestType {
|
|
152
99
|
MULTI_PERIOD = "MULTI_PERIOD",
|
|
153
100
|
SINGLE_PERIOD = "SINGLE_PERIOD",
|
|
154
101
|
}
|
|
155
|
-
|
|
156
102
|
export interface DashConfiguration {
|
|
157
103
|
ManifestEndpointPrefix?: string;
|
|
158
|
-
|
|
159
104
|
MpdLocation?: string;
|
|
160
|
-
|
|
161
105
|
OriginManifestType?: OriginManifestType | string;
|
|
162
106
|
}
|
|
163
|
-
|
|
164
107
|
export interface HlsConfiguration {
|
|
165
108
|
ManifestEndpointPrefix?: string;
|
|
166
109
|
}
|
|
167
|
-
|
|
168
110
|
export interface LivePreRollConfiguration {
|
|
169
111
|
AdDecisionServerUrl?: string;
|
|
170
|
-
|
|
171
112
|
MaxDurationSeconds?: number;
|
|
172
113
|
}
|
|
173
|
-
|
|
174
114
|
export interface LogConfiguration {
|
|
175
115
|
PercentEnabled: number | undefined;
|
|
176
116
|
}
|
|
177
|
-
|
|
178
117
|
export interface AdMarkerPassthrough {
|
|
179
118
|
Enabled?: boolean;
|
|
180
119
|
}
|
|
181
|
-
|
|
182
120
|
export interface ManifestProcessingRules {
|
|
183
121
|
AdMarkerPassthrough?: AdMarkerPassthrough;
|
|
184
122
|
}
|
|
185
|
-
|
|
186
123
|
export interface PlaybackConfiguration {
|
|
187
124
|
AdDecisionServerUrl?: string;
|
|
188
|
-
|
|
189
125
|
AvailSuppression?: AvailSuppression;
|
|
190
|
-
|
|
191
126
|
Bumper?: Bumper;
|
|
192
|
-
|
|
193
127
|
CdnConfiguration?: CdnConfiguration;
|
|
194
|
-
|
|
195
128
|
ConfigurationAliases?: Record<string, Record<string, string>>;
|
|
196
|
-
|
|
197
129
|
DashConfiguration?: DashConfiguration;
|
|
198
|
-
|
|
199
130
|
HlsConfiguration?: HlsConfiguration;
|
|
200
|
-
|
|
201
131
|
LivePreRollConfiguration?: LivePreRollConfiguration;
|
|
202
|
-
|
|
203
132
|
LogConfiguration?: LogConfiguration;
|
|
204
|
-
|
|
205
133
|
ManifestProcessingRules?: ManifestProcessingRules;
|
|
206
|
-
|
|
207
134
|
Name?: string;
|
|
208
|
-
|
|
209
135
|
PersonalizationThresholdSeconds?: number;
|
|
210
|
-
|
|
211
136
|
PlaybackConfigurationArn?: string;
|
|
212
|
-
|
|
213
137
|
PlaybackEndpointPrefix?: string;
|
|
214
|
-
|
|
215
138
|
SessionInitializationEndpointPrefix?: string;
|
|
216
|
-
|
|
217
139
|
SlateAdUrl?: string;
|
|
218
|
-
|
|
219
140
|
Tags?: Record<string, string>;
|
|
220
|
-
|
|
221
141
|
TranscodeProfileName?: string;
|
|
222
|
-
|
|
223
142
|
VideoContentSourceUrl?: string;
|
|
224
143
|
}
|
|
225
|
-
|
|
226
144
|
export interface PrefetchConsumption {
|
|
227
145
|
AvailMatchingCriteria?: AvailMatchingCriteria[];
|
|
228
|
-
|
|
229
146
|
EndTime: Date | undefined;
|
|
230
|
-
|
|
231
147
|
StartTime?: Date;
|
|
232
148
|
}
|
|
233
|
-
|
|
234
149
|
export interface PrefetchRetrieval {
|
|
235
150
|
DynamicVariables?: Record<string, string>;
|
|
236
|
-
|
|
237
151
|
EndTime: Date | undefined;
|
|
238
|
-
|
|
239
152
|
StartTime?: Date;
|
|
240
153
|
}
|
|
241
|
-
|
|
242
154
|
export interface PrefetchSchedule {
|
|
243
155
|
Arn: string | undefined;
|
|
244
|
-
|
|
245
156
|
Consumption: PrefetchConsumption | undefined;
|
|
246
|
-
|
|
247
157
|
Name: string | undefined;
|
|
248
|
-
|
|
249
158
|
PlaybackConfigurationName: string | undefined;
|
|
250
|
-
|
|
251
159
|
Retrieval: PrefetchRetrieval | undefined;
|
|
252
|
-
|
|
253
160
|
StreamId?: string;
|
|
254
161
|
}
|
|
255
|
-
|
|
256
162
|
export interface ScheduleAdBreak {
|
|
257
163
|
ApproximateDurationSeconds?: number;
|
|
258
|
-
|
|
259
164
|
ApproximateStartTime?: Date;
|
|
260
|
-
|
|
261
165
|
SourceLocationName?: string;
|
|
262
|
-
|
|
263
166
|
VodSourceName?: string;
|
|
264
167
|
}
|
|
265
168
|
export declare enum ScheduleEntryType {
|
|
266
169
|
FILLER_SLATE = "FILLER_SLATE",
|
|
267
170
|
PROGRAM = "PROGRAM",
|
|
268
171
|
}
|
|
269
|
-
|
|
270
172
|
export interface ScheduleEntry {
|
|
271
173
|
ApproximateDurationSeconds?: number;
|
|
272
|
-
|
|
273
174
|
ApproximateStartTime?: Date;
|
|
274
|
-
|
|
275
175
|
Arn: string | undefined;
|
|
276
|
-
|
|
277
176
|
ChannelName: string | undefined;
|
|
278
|
-
|
|
279
177
|
LiveSourceName?: string;
|
|
280
|
-
|
|
281
178
|
ProgramName: string | undefined;
|
|
282
|
-
|
|
283
179
|
ScheduleAdBreaks?: ScheduleAdBreak[];
|
|
284
|
-
|
|
285
180
|
ScheduleEntryType?: ScheduleEntryType | string;
|
|
286
|
-
|
|
287
181
|
SourceLocationName: string | undefined;
|
|
288
|
-
|
|
289
182
|
VodSourceName?: string;
|
|
290
183
|
}
|
|
291
|
-
|
|
292
184
|
export interface SegmentDeliveryConfiguration {
|
|
293
185
|
BaseUrl?: string;
|
|
294
|
-
|
|
295
186
|
Name?: string;
|
|
296
187
|
}
|
|
297
188
|
export declare enum AccessType {
|
|
298
189
|
S3_SIGV4 = "S3_SIGV4",
|
|
299
190
|
SECRETS_MANAGER_ACCESS_TOKEN = "SECRETS_MANAGER_ACCESS_TOKEN",
|
|
300
191
|
}
|
|
301
|
-
|
|
302
192
|
export interface SecretsManagerAccessTokenConfiguration {
|
|
303
193
|
HeaderName?: string;
|
|
304
|
-
|
|
305
194
|
SecretArn?: string;
|
|
306
|
-
|
|
307
195
|
SecretStringKey?: string;
|
|
308
196
|
}
|
|
309
|
-
|
|
310
197
|
export interface AccessConfiguration {
|
|
311
198
|
AccessType?: AccessType | string;
|
|
312
|
-
|
|
313
199
|
SecretsManagerAccessTokenConfiguration?: SecretsManagerAccessTokenConfiguration;
|
|
314
200
|
}
|
|
315
|
-
|
|
316
201
|
export interface DefaultSegmentDeliveryConfiguration {
|
|
317
202
|
BaseUrl?: string;
|
|
318
203
|
}
|
|
319
|
-
|
|
320
204
|
export interface HttpConfiguration {
|
|
321
205
|
BaseUrl: string | undefined;
|
|
322
206
|
}
|
|
323
|
-
|
|
324
207
|
export interface SourceLocation {
|
|
325
208
|
AccessConfiguration?: AccessConfiguration;
|
|
326
|
-
|
|
327
209
|
Arn: string | undefined;
|
|
328
|
-
|
|
329
210
|
CreationTime?: Date;
|
|
330
|
-
|
|
331
211
|
DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration;
|
|
332
|
-
|
|
333
212
|
HttpConfiguration: HttpConfiguration | undefined;
|
|
334
|
-
|
|
335
213
|
LastModifiedTime?: Date;
|
|
336
|
-
|
|
337
214
|
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
|
|
338
|
-
|
|
339
215
|
SourceLocationName: string | undefined;
|
|
340
|
-
|
|
341
216
|
Tags?: Record<string, string>;
|
|
342
217
|
}
|
|
343
|
-
|
|
344
218
|
export interface VodSource {
|
|
345
219
|
Arn: string | undefined;
|
|
346
|
-
|
|
347
220
|
CreationTime?: Date;
|
|
348
|
-
|
|
349
221
|
HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
|
|
350
|
-
|
|
351
222
|
LastModifiedTime?: Date;
|
|
352
|
-
|
|
353
223
|
SourceLocationName: string | undefined;
|
|
354
|
-
|
|
355
224
|
Tags?: Record<string, string>;
|
|
356
|
-
|
|
357
225
|
VodSourceName: string | undefined;
|
|
358
226
|
}
|
|
359
|
-
|
|
360
227
|
export declare class BadRequestException extends __BaseException {
|
|
361
228
|
readonly name: "BadRequestException";
|
|
362
229
|
readonly $fault: "client";
|
|
363
230
|
Message?: string;
|
|
364
|
-
|
|
365
231
|
constructor(
|
|
366
232
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
367
233
|
);
|
|
@@ -370,25 +236,18 @@ export declare enum ChannelState {
|
|
|
370
236
|
RUNNING = "RUNNING",
|
|
371
237
|
STOPPED = "STOPPED",
|
|
372
238
|
}
|
|
373
|
-
|
|
374
239
|
export interface ConfigureLogsForPlaybackConfigurationRequest {
|
|
375
240
|
PercentEnabled: number | undefined;
|
|
376
|
-
|
|
377
241
|
PlaybackConfigurationName: string | undefined;
|
|
378
242
|
}
|
|
379
243
|
export interface ConfigureLogsForPlaybackConfigurationResponse {
|
|
380
244
|
PercentEnabled?: number;
|
|
381
|
-
|
|
382
245
|
PlaybackConfigurationName?: string;
|
|
383
246
|
}
|
|
384
|
-
|
|
385
247
|
export interface RequestOutputItem {
|
|
386
248
|
DashPlaylistSettings?: DashPlaylistSettings;
|
|
387
|
-
|
|
388
249
|
HlsPlaylistSettings?: HlsPlaylistSettings;
|
|
389
|
-
|
|
390
250
|
ManifestName: string | undefined;
|
|
391
|
-
|
|
392
251
|
SourceGroup: string | undefined;
|
|
393
252
|
}
|
|
394
253
|
export declare enum PlaybackMode {
|
|
@@ -401,200 +260,124 @@ export declare enum Tier {
|
|
|
401
260
|
}
|
|
402
261
|
export interface CreateChannelRequest {
|
|
403
262
|
ChannelName: string | undefined;
|
|
404
|
-
|
|
405
263
|
FillerSlate?: SlateSource;
|
|
406
|
-
|
|
407
264
|
Outputs: RequestOutputItem[] | undefined;
|
|
408
|
-
|
|
409
265
|
PlaybackMode: PlaybackMode | string | undefined;
|
|
410
|
-
|
|
411
266
|
Tags?: Record<string, string>;
|
|
412
|
-
|
|
413
267
|
Tier?: Tier | string;
|
|
414
268
|
}
|
|
415
269
|
export interface CreateChannelResponse {
|
|
416
270
|
Arn?: string;
|
|
417
|
-
|
|
418
271
|
ChannelName?: string;
|
|
419
|
-
|
|
420
272
|
ChannelState?: ChannelState | string;
|
|
421
|
-
|
|
422
273
|
CreationTime?: Date;
|
|
423
|
-
|
|
424
274
|
FillerSlate?: SlateSource;
|
|
425
|
-
|
|
426
275
|
LastModifiedTime?: Date;
|
|
427
|
-
|
|
428
276
|
Outputs?: ResponseOutputItem[];
|
|
429
|
-
|
|
430
277
|
PlaybackMode?: string;
|
|
431
|
-
|
|
432
278
|
Tags?: Record<string, string>;
|
|
433
|
-
|
|
434
279
|
Tier?: string;
|
|
435
280
|
}
|
|
436
281
|
export interface CreateLiveSourceRequest {
|
|
437
282
|
HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
|
|
438
|
-
|
|
439
283
|
LiveSourceName: string | undefined;
|
|
440
|
-
|
|
441
284
|
SourceLocationName: string | undefined;
|
|
442
|
-
|
|
443
285
|
Tags?: Record<string, string>;
|
|
444
286
|
}
|
|
445
287
|
export interface CreateLiveSourceResponse {
|
|
446
288
|
Arn?: string;
|
|
447
|
-
|
|
448
289
|
CreationTime?: Date;
|
|
449
|
-
|
|
450
290
|
HttpPackageConfigurations?: HttpPackageConfiguration[];
|
|
451
|
-
|
|
452
291
|
LastModifiedTime?: Date;
|
|
453
|
-
|
|
454
292
|
LiveSourceName?: string;
|
|
455
|
-
|
|
456
293
|
SourceLocationName?: string;
|
|
457
|
-
|
|
458
294
|
Tags?: Record<string, string>;
|
|
459
295
|
}
|
|
460
296
|
export interface CreatePrefetchScheduleRequest {
|
|
461
297
|
Consumption: PrefetchConsumption | undefined;
|
|
462
|
-
|
|
463
298
|
Name: string | undefined;
|
|
464
|
-
|
|
465
299
|
PlaybackConfigurationName: string | undefined;
|
|
466
|
-
|
|
467
300
|
Retrieval: PrefetchRetrieval | undefined;
|
|
468
|
-
|
|
469
301
|
StreamId?: string;
|
|
470
302
|
}
|
|
471
303
|
export interface CreatePrefetchScheduleResponse {
|
|
472
304
|
Arn?: string;
|
|
473
|
-
|
|
474
305
|
Consumption?: PrefetchConsumption;
|
|
475
|
-
|
|
476
306
|
Name?: string;
|
|
477
|
-
|
|
478
307
|
PlaybackConfigurationName?: string;
|
|
479
|
-
|
|
480
308
|
Retrieval?: PrefetchRetrieval;
|
|
481
|
-
|
|
482
309
|
StreamId?: string;
|
|
483
310
|
}
|
|
484
311
|
export declare enum RelativePosition {
|
|
485
312
|
AFTER_PROGRAM = "AFTER_PROGRAM",
|
|
486
313
|
BEFORE_PROGRAM = "BEFORE_PROGRAM",
|
|
487
314
|
}
|
|
488
|
-
|
|
489
315
|
export interface Transition {
|
|
490
316
|
DurationMillis?: number;
|
|
491
|
-
|
|
492
317
|
RelativePosition: RelativePosition | string | undefined;
|
|
493
|
-
|
|
494
318
|
RelativeProgram?: string;
|
|
495
|
-
|
|
496
319
|
ScheduledStartTimeMillis?: number;
|
|
497
|
-
|
|
498
320
|
Type: string | undefined;
|
|
499
321
|
}
|
|
500
|
-
|
|
501
322
|
export interface ScheduleConfiguration {
|
|
502
323
|
Transition: Transition | undefined;
|
|
503
324
|
}
|
|
504
325
|
export interface CreateProgramRequest {
|
|
505
326
|
AdBreaks?: AdBreak[];
|
|
506
|
-
|
|
507
327
|
ChannelName: string | undefined;
|
|
508
|
-
|
|
509
328
|
LiveSourceName?: string;
|
|
510
|
-
|
|
511
329
|
ProgramName: string | undefined;
|
|
512
|
-
|
|
513
330
|
ScheduleConfiguration: ScheduleConfiguration | undefined;
|
|
514
|
-
|
|
515
331
|
SourceLocationName: string | undefined;
|
|
516
|
-
|
|
517
332
|
VodSourceName?: string;
|
|
518
333
|
}
|
|
519
334
|
export interface CreateProgramResponse {
|
|
520
335
|
AdBreaks?: AdBreak[];
|
|
521
|
-
|
|
522
336
|
Arn?: string;
|
|
523
|
-
|
|
524
337
|
ChannelName?: string;
|
|
525
|
-
|
|
526
338
|
CreationTime?: Date;
|
|
527
|
-
|
|
528
339
|
LiveSourceName?: string;
|
|
529
|
-
|
|
530
340
|
ProgramName?: string;
|
|
531
|
-
|
|
532
341
|
ScheduledStartTime?: Date;
|
|
533
|
-
|
|
534
342
|
SourceLocationName?: string;
|
|
535
|
-
|
|
536
343
|
VodSourceName?: string;
|
|
537
344
|
}
|
|
538
345
|
export interface CreateSourceLocationRequest {
|
|
539
346
|
AccessConfiguration?: AccessConfiguration;
|
|
540
|
-
|
|
541
347
|
DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration;
|
|
542
|
-
|
|
543
348
|
HttpConfiguration: HttpConfiguration | undefined;
|
|
544
|
-
|
|
545
349
|
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
|
|
546
|
-
|
|
547
350
|
SourceLocationName: string | undefined;
|
|
548
|
-
|
|
549
351
|
Tags?: Record<string, string>;
|
|
550
352
|
}
|
|
551
353
|
export interface CreateSourceLocationResponse {
|
|
552
354
|
AccessConfiguration?: AccessConfiguration;
|
|
553
|
-
|
|
554
355
|
Arn?: string;
|
|
555
|
-
|
|
556
356
|
CreationTime?: Date;
|
|
557
|
-
|
|
558
357
|
DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration;
|
|
559
|
-
|
|
560
358
|
HttpConfiguration?: HttpConfiguration;
|
|
561
|
-
|
|
562
359
|
LastModifiedTime?: Date;
|
|
563
|
-
|
|
564
360
|
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
|
|
565
|
-
|
|
566
361
|
SourceLocationName?: string;
|
|
567
|
-
|
|
568
362
|
Tags?: Record<string, string>;
|
|
569
363
|
}
|
|
570
364
|
export interface CreateVodSourceRequest {
|
|
571
365
|
HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
|
|
572
|
-
|
|
573
366
|
SourceLocationName: string | undefined;
|
|
574
|
-
|
|
575
367
|
Tags?: Record<string, string>;
|
|
576
|
-
|
|
577
368
|
VodSourceName: string | undefined;
|
|
578
369
|
}
|
|
579
370
|
export interface CreateVodSourceResponse {
|
|
580
371
|
Arn?: string;
|
|
581
|
-
|
|
582
372
|
CreationTime?: Date;
|
|
583
|
-
|
|
584
373
|
HttpPackageConfigurations?: HttpPackageConfiguration[];
|
|
585
|
-
|
|
586
374
|
LastModifiedTime?: Date;
|
|
587
|
-
|
|
588
375
|
SourceLocationName?: string;
|
|
589
|
-
|
|
590
376
|
Tags?: Record<string, string>;
|
|
591
|
-
|
|
592
377
|
VodSourceName?: string;
|
|
593
378
|
}
|
|
594
|
-
|
|
595
379
|
export interface DashConfigurationForPut {
|
|
596
380
|
MpdLocation?: string;
|
|
597
|
-
|
|
598
381
|
OriginManifestType?: OriginManifestType | string;
|
|
599
382
|
}
|
|
600
383
|
export interface DeleteChannelRequest {
|
|
@@ -607,7 +390,6 @@ export interface DeleteChannelPolicyRequest {
|
|
|
607
390
|
export interface DeleteChannelPolicyResponse {}
|
|
608
391
|
export interface DeleteLiveSourceRequest {
|
|
609
392
|
LiveSourceName: string | undefined;
|
|
610
|
-
|
|
611
393
|
SourceLocationName: string | undefined;
|
|
612
394
|
}
|
|
613
395
|
export interface DeleteLiveSourceResponse {}
|
|
@@ -617,13 +399,11 @@ export interface DeletePlaybackConfigurationRequest {
|
|
|
617
399
|
export interface DeletePlaybackConfigurationResponse {}
|
|
618
400
|
export interface DeletePrefetchScheduleRequest {
|
|
619
401
|
Name: string | undefined;
|
|
620
|
-
|
|
621
402
|
PlaybackConfigurationName: string | undefined;
|
|
622
403
|
}
|
|
623
404
|
export interface DeletePrefetchScheduleResponse {}
|
|
624
405
|
export interface DeleteProgramRequest {
|
|
625
406
|
ChannelName: string | undefined;
|
|
626
|
-
|
|
627
407
|
ProgramName: string | undefined;
|
|
628
408
|
}
|
|
629
409
|
export interface DeleteProgramResponse {}
|
|
@@ -633,7 +413,6 @@ export interface DeleteSourceLocationRequest {
|
|
|
633
413
|
export interface DeleteSourceLocationResponse {}
|
|
634
414
|
export interface DeleteVodSourceRequest {
|
|
635
415
|
SourceLocationName: string | undefined;
|
|
636
|
-
|
|
637
416
|
VodSourceName: string | undefined;
|
|
638
417
|
}
|
|
639
418
|
export interface DeleteVodSourceResponse {}
|
|
@@ -642,67 +421,42 @@ export interface DescribeChannelRequest {
|
|
|
642
421
|
}
|
|
643
422
|
export interface DescribeChannelResponse {
|
|
644
423
|
Arn?: string;
|
|
645
|
-
|
|
646
424
|
ChannelName?: string;
|
|
647
|
-
|
|
648
425
|
ChannelState?: ChannelState | string;
|
|
649
|
-
|
|
650
426
|
CreationTime?: Date;
|
|
651
|
-
|
|
652
427
|
FillerSlate?: SlateSource;
|
|
653
|
-
|
|
654
428
|
LastModifiedTime?: Date;
|
|
655
|
-
|
|
656
429
|
Outputs?: ResponseOutputItem[];
|
|
657
|
-
|
|
658
430
|
PlaybackMode?: string;
|
|
659
|
-
|
|
660
431
|
Tags?: Record<string, string>;
|
|
661
|
-
|
|
662
432
|
Tier?: string;
|
|
663
433
|
}
|
|
664
434
|
export interface DescribeLiveSourceRequest {
|
|
665
435
|
LiveSourceName: string | undefined;
|
|
666
|
-
|
|
667
436
|
SourceLocationName: string | undefined;
|
|
668
437
|
}
|
|
669
438
|
export interface DescribeLiveSourceResponse {
|
|
670
439
|
Arn?: string;
|
|
671
|
-
|
|
672
440
|
CreationTime?: Date;
|
|
673
|
-
|
|
674
441
|
HttpPackageConfigurations?: HttpPackageConfiguration[];
|
|
675
|
-
|
|
676
442
|
LastModifiedTime?: Date;
|
|
677
|
-
|
|
678
443
|
LiveSourceName?: string;
|
|
679
|
-
|
|
680
444
|
SourceLocationName?: string;
|
|
681
|
-
|
|
682
445
|
Tags?: Record<string, string>;
|
|
683
446
|
}
|
|
684
447
|
export interface DescribeProgramRequest {
|
|
685
448
|
ChannelName: string | undefined;
|
|
686
|
-
|
|
687
449
|
ProgramName: string | undefined;
|
|
688
450
|
}
|
|
689
451
|
export interface DescribeProgramResponse {
|
|
690
452
|
AdBreaks?: AdBreak[];
|
|
691
|
-
|
|
692
453
|
Arn?: string;
|
|
693
|
-
|
|
694
454
|
ChannelName?: string;
|
|
695
|
-
|
|
696
455
|
CreationTime?: Date;
|
|
697
|
-
|
|
698
456
|
LiveSourceName?: string;
|
|
699
|
-
|
|
700
457
|
ProgramName?: string;
|
|
701
|
-
|
|
702
458
|
ScheduledStartTime?: Date;
|
|
703
|
-
|
|
704
459
|
SourceLocationName?: string;
|
|
705
|
-
|
|
706
460
|
VodSourceName?: string;
|
|
707
461
|
}
|
|
708
462
|
export interface DescribeSourceLocationRequest {
|
|
@@ -710,41 +464,26 @@ export interface DescribeSourceLocationRequest {
|
|
|
710
464
|
}
|
|
711
465
|
export interface DescribeSourceLocationResponse {
|
|
712
466
|
AccessConfiguration?: AccessConfiguration;
|
|
713
|
-
|
|
714
467
|
Arn?: string;
|
|
715
|
-
|
|
716
468
|
CreationTime?: Date;
|
|
717
|
-
|
|
718
469
|
DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration;
|
|
719
|
-
|
|
720
470
|
HttpConfiguration?: HttpConfiguration;
|
|
721
|
-
|
|
722
471
|
LastModifiedTime?: Date;
|
|
723
|
-
|
|
724
472
|
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
|
|
725
|
-
|
|
726
473
|
SourceLocationName?: string;
|
|
727
|
-
|
|
728
474
|
Tags?: Record<string, string>;
|
|
729
475
|
}
|
|
730
476
|
export interface DescribeVodSourceRequest {
|
|
731
477
|
SourceLocationName: string | undefined;
|
|
732
|
-
|
|
733
478
|
VodSourceName: string | undefined;
|
|
734
479
|
}
|
|
735
480
|
export interface DescribeVodSourceResponse {
|
|
736
481
|
Arn?: string;
|
|
737
|
-
|
|
738
482
|
CreationTime?: Date;
|
|
739
|
-
|
|
740
483
|
HttpPackageConfigurations?: HttpPackageConfiguration[];
|
|
741
|
-
|
|
742
484
|
LastModifiedTime?: Date;
|
|
743
|
-
|
|
744
485
|
SourceLocationName?: string;
|
|
745
|
-
|
|
746
486
|
Tags?: Record<string, string>;
|
|
747
|
-
|
|
748
487
|
VodSourceName?: string;
|
|
749
488
|
}
|
|
750
489
|
export interface GetChannelPolicyRequest {
|
|
@@ -755,16 +494,12 @@ export interface GetChannelPolicyResponse {
|
|
|
755
494
|
}
|
|
756
495
|
export interface GetChannelScheduleRequest {
|
|
757
496
|
ChannelName: string | undefined;
|
|
758
|
-
|
|
759
497
|
DurationMinutes?: string;
|
|
760
|
-
|
|
761
498
|
MaxResults?: number;
|
|
762
|
-
|
|
763
499
|
NextToken?: string;
|
|
764
500
|
}
|
|
765
501
|
export interface GetChannelScheduleResponse {
|
|
766
502
|
Items?: ScheduleEntry[];
|
|
767
|
-
|
|
768
503
|
NextToken?: string;
|
|
769
504
|
}
|
|
770
505
|
export interface GetPlaybackConfigurationRequest {
|
|
@@ -772,127 +507,87 @@ export interface GetPlaybackConfigurationRequest {
|
|
|
772
507
|
}
|
|
773
508
|
export interface GetPlaybackConfigurationResponse {
|
|
774
509
|
AdDecisionServerUrl?: string;
|
|
775
|
-
|
|
776
510
|
AvailSuppression?: AvailSuppression;
|
|
777
|
-
|
|
778
511
|
Bumper?: Bumper;
|
|
779
|
-
|
|
780
512
|
CdnConfiguration?: CdnConfiguration;
|
|
781
|
-
|
|
782
513
|
ConfigurationAliases?: Record<string, Record<string, string>>;
|
|
783
|
-
|
|
784
514
|
DashConfiguration?: DashConfiguration;
|
|
785
|
-
|
|
786
515
|
HlsConfiguration?: HlsConfiguration;
|
|
787
|
-
|
|
788
516
|
LivePreRollConfiguration?: LivePreRollConfiguration;
|
|
789
|
-
|
|
790
517
|
LogConfiguration?: LogConfiguration;
|
|
791
|
-
|
|
792
518
|
ManifestProcessingRules?: ManifestProcessingRules;
|
|
793
|
-
|
|
794
519
|
Name?: string;
|
|
795
|
-
|
|
796
520
|
PersonalizationThresholdSeconds?: number;
|
|
797
|
-
|
|
798
521
|
PlaybackConfigurationArn?: string;
|
|
799
|
-
|
|
800
522
|
PlaybackEndpointPrefix?: string;
|
|
801
|
-
|
|
802
523
|
SessionInitializationEndpointPrefix?: string;
|
|
803
|
-
|
|
804
524
|
SlateAdUrl?: string;
|
|
805
|
-
|
|
806
525
|
Tags?: Record<string, string>;
|
|
807
|
-
|
|
808
526
|
TranscodeProfileName?: string;
|
|
809
|
-
|
|
810
527
|
VideoContentSourceUrl?: string;
|
|
811
528
|
}
|
|
812
529
|
export interface GetPrefetchScheduleRequest {
|
|
813
530
|
Name: string | undefined;
|
|
814
|
-
|
|
815
531
|
PlaybackConfigurationName: string | undefined;
|
|
816
532
|
}
|
|
817
533
|
export interface GetPrefetchScheduleResponse {
|
|
818
534
|
Arn?: string;
|
|
819
|
-
|
|
820
535
|
Consumption?: PrefetchConsumption;
|
|
821
|
-
|
|
822
536
|
Name?: string;
|
|
823
|
-
|
|
824
537
|
PlaybackConfigurationName?: string;
|
|
825
|
-
|
|
826
538
|
Retrieval?: PrefetchRetrieval;
|
|
827
|
-
|
|
828
539
|
StreamId?: string;
|
|
829
540
|
}
|
|
830
541
|
export interface ListAlertsRequest {
|
|
831
542
|
MaxResults?: number;
|
|
832
|
-
|
|
833
543
|
NextToken?: string;
|
|
834
|
-
|
|
835
544
|
ResourceArn: string | undefined;
|
|
836
545
|
}
|
|
837
546
|
export interface ListAlertsResponse {
|
|
838
547
|
Items?: Alert[];
|
|
839
|
-
|
|
840
548
|
NextToken?: string;
|
|
841
549
|
}
|
|
842
550
|
export interface ListChannelsRequest {
|
|
843
551
|
MaxResults?: number;
|
|
844
|
-
|
|
845
552
|
NextToken?: string;
|
|
846
553
|
}
|
|
847
554
|
export interface ListChannelsResponse {
|
|
848
555
|
Items?: Channel[];
|
|
849
|
-
|
|
850
556
|
NextToken?: string;
|
|
851
557
|
}
|
|
852
558
|
export interface ListLiveSourcesRequest {
|
|
853
559
|
MaxResults?: number;
|
|
854
|
-
|
|
855
560
|
NextToken?: string;
|
|
856
|
-
|
|
857
561
|
SourceLocationName: string | undefined;
|
|
858
562
|
}
|
|
859
563
|
export interface ListLiveSourcesResponse {
|
|
860
564
|
Items?: LiveSource[];
|
|
861
|
-
|
|
862
565
|
NextToken?: string;
|
|
863
566
|
}
|
|
864
567
|
export interface ListPlaybackConfigurationsRequest {
|
|
865
568
|
MaxResults?: number;
|
|
866
|
-
|
|
867
569
|
NextToken?: string;
|
|
868
570
|
}
|
|
869
571
|
export interface ListPlaybackConfigurationsResponse {
|
|
870
572
|
Items?: PlaybackConfiguration[];
|
|
871
|
-
|
|
872
573
|
NextToken?: string;
|
|
873
574
|
}
|
|
874
575
|
export interface ListPrefetchSchedulesRequest {
|
|
875
576
|
MaxResults?: number;
|
|
876
|
-
|
|
877
577
|
NextToken?: string;
|
|
878
|
-
|
|
879
578
|
PlaybackConfigurationName: string | undefined;
|
|
880
|
-
|
|
881
579
|
StreamId?: string;
|
|
882
580
|
}
|
|
883
581
|
export interface ListPrefetchSchedulesResponse {
|
|
884
582
|
Items?: PrefetchSchedule[];
|
|
885
|
-
|
|
886
583
|
NextToken?: string;
|
|
887
584
|
}
|
|
888
585
|
export interface ListSourceLocationsRequest {
|
|
889
586
|
MaxResults?: number;
|
|
890
|
-
|
|
891
587
|
NextToken?: string;
|
|
892
588
|
}
|
|
893
589
|
export interface ListSourceLocationsResponse {
|
|
894
590
|
Items?: SourceLocation[];
|
|
895
|
-
|
|
896
591
|
NextToken?: string;
|
|
897
592
|
}
|
|
898
593
|
export interface ListTagsForResourceRequest {
|
|
@@ -903,88 +598,53 @@ export interface ListTagsForResourceResponse {
|
|
|
903
598
|
}
|
|
904
599
|
export interface ListVodSourcesRequest {
|
|
905
600
|
MaxResults?: number;
|
|
906
|
-
|
|
907
601
|
NextToken?: string;
|
|
908
|
-
|
|
909
602
|
SourceLocationName: string | undefined;
|
|
910
603
|
}
|
|
911
604
|
export interface ListVodSourcesResponse {
|
|
912
605
|
Items?: VodSource[];
|
|
913
|
-
|
|
914
606
|
NextToken?: string;
|
|
915
607
|
}
|
|
916
608
|
export interface PutChannelPolicyRequest {
|
|
917
609
|
ChannelName: string | undefined;
|
|
918
|
-
|
|
919
610
|
Policy: string | undefined;
|
|
920
611
|
}
|
|
921
612
|
export interface PutChannelPolicyResponse {}
|
|
922
613
|
export interface PutPlaybackConfigurationRequest {
|
|
923
614
|
AdDecisionServerUrl?: string;
|
|
924
|
-
|
|
925
615
|
AvailSuppression?: AvailSuppression;
|
|
926
|
-
|
|
927
616
|
Bumper?: Bumper;
|
|
928
|
-
|
|
929
617
|
CdnConfiguration?: CdnConfiguration;
|
|
930
|
-
|
|
931
618
|
ConfigurationAliases?: Record<string, Record<string, string>>;
|
|
932
|
-
|
|
933
619
|
DashConfiguration?: DashConfigurationForPut;
|
|
934
|
-
|
|
935
620
|
LivePreRollConfiguration?: LivePreRollConfiguration;
|
|
936
|
-
|
|
937
621
|
ManifestProcessingRules?: ManifestProcessingRules;
|
|
938
|
-
|
|
939
622
|
Name?: string;
|
|
940
|
-
|
|
941
623
|
PersonalizationThresholdSeconds?: number;
|
|
942
|
-
|
|
943
624
|
SlateAdUrl?: string;
|
|
944
|
-
|
|
945
625
|
Tags?: Record<string, string>;
|
|
946
|
-
|
|
947
626
|
TranscodeProfileName?: string;
|
|
948
|
-
|
|
949
627
|
VideoContentSourceUrl?: string;
|
|
950
628
|
}
|
|
951
629
|
export interface PutPlaybackConfigurationResponse {
|
|
952
630
|
AdDecisionServerUrl?: string;
|
|
953
|
-
|
|
954
631
|
AvailSuppression?: AvailSuppression;
|
|
955
|
-
|
|
956
632
|
Bumper?: Bumper;
|
|
957
|
-
|
|
958
633
|
CdnConfiguration?: CdnConfiguration;
|
|
959
|
-
|
|
960
634
|
ConfigurationAliases?: Record<string, Record<string, string>>;
|
|
961
|
-
|
|
962
635
|
DashConfiguration?: DashConfiguration;
|
|
963
|
-
|
|
964
636
|
HlsConfiguration?: HlsConfiguration;
|
|
965
|
-
|
|
966
637
|
LivePreRollConfiguration?: LivePreRollConfiguration;
|
|
967
|
-
|
|
968
638
|
LogConfiguration?: LogConfiguration;
|
|
969
|
-
|
|
970
639
|
ManifestProcessingRules?: ManifestProcessingRules;
|
|
971
|
-
|
|
972
640
|
Name?: string;
|
|
973
|
-
|
|
974
641
|
PersonalizationThresholdSeconds?: number;
|
|
975
|
-
|
|
976
642
|
PlaybackConfigurationArn?: string;
|
|
977
|
-
|
|
978
643
|
PlaybackEndpointPrefix?: string;
|
|
979
|
-
|
|
980
644
|
SessionInitializationEndpointPrefix?: string;
|
|
981
|
-
|
|
982
645
|
SlateAdUrl?: string;
|
|
983
|
-
|
|
984
646
|
Tags?: Record<string, string>;
|
|
985
|
-
|
|
986
647
|
TranscodeProfileName?: string;
|
|
987
|
-
|
|
988
648
|
VideoContentSourceUrl?: string;
|
|
989
649
|
}
|
|
990
650
|
export interface StartChannelRequest {
|
|
@@ -997,573 +657,413 @@ export interface StopChannelRequest {
|
|
|
997
657
|
export interface StopChannelResponse {}
|
|
998
658
|
export interface TagResourceRequest {
|
|
999
659
|
ResourceArn: string | undefined;
|
|
1000
|
-
|
|
1001
660
|
Tags: Record<string, string> | undefined;
|
|
1002
661
|
}
|
|
1003
662
|
export interface UntagResourceRequest {
|
|
1004
663
|
ResourceArn: string | undefined;
|
|
1005
|
-
|
|
1006
664
|
TagKeys: string[] | undefined;
|
|
1007
665
|
}
|
|
1008
666
|
export interface UpdateChannelRequest {
|
|
1009
667
|
ChannelName: string | undefined;
|
|
1010
|
-
|
|
1011
668
|
FillerSlate?: SlateSource;
|
|
1012
|
-
|
|
1013
669
|
Outputs: RequestOutputItem[] | undefined;
|
|
1014
670
|
}
|
|
1015
671
|
export interface UpdateChannelResponse {
|
|
1016
672
|
Arn?: string;
|
|
1017
|
-
|
|
1018
673
|
ChannelName?: string;
|
|
1019
|
-
|
|
1020
674
|
ChannelState?: ChannelState | string;
|
|
1021
|
-
|
|
1022
675
|
CreationTime?: Date;
|
|
1023
|
-
|
|
1024
676
|
FillerSlate?: SlateSource;
|
|
1025
|
-
|
|
1026
677
|
LastModifiedTime?: Date;
|
|
1027
|
-
|
|
1028
678
|
Outputs?: ResponseOutputItem[];
|
|
1029
|
-
|
|
1030
679
|
PlaybackMode?: string;
|
|
1031
|
-
|
|
1032
680
|
Tags?: Record<string, string>;
|
|
1033
|
-
|
|
1034
681
|
Tier?: string;
|
|
1035
682
|
}
|
|
1036
683
|
export interface UpdateLiveSourceRequest {
|
|
1037
684
|
HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
|
|
1038
|
-
|
|
1039
685
|
LiveSourceName: string | undefined;
|
|
1040
|
-
|
|
1041
686
|
SourceLocationName: string | undefined;
|
|
1042
687
|
}
|
|
1043
688
|
export interface UpdateLiveSourceResponse {
|
|
1044
689
|
Arn?: string;
|
|
1045
|
-
|
|
1046
690
|
CreationTime?: Date;
|
|
1047
|
-
|
|
1048
691
|
HttpPackageConfigurations?: HttpPackageConfiguration[];
|
|
1049
|
-
|
|
1050
692
|
LastModifiedTime?: Date;
|
|
1051
|
-
|
|
1052
693
|
LiveSourceName?: string;
|
|
1053
|
-
|
|
1054
694
|
SourceLocationName?: string;
|
|
1055
|
-
|
|
1056
695
|
Tags?: Record<string, string>;
|
|
1057
696
|
}
|
|
1058
697
|
export interface UpdateSourceLocationRequest {
|
|
1059
698
|
AccessConfiguration?: AccessConfiguration;
|
|
1060
|
-
|
|
1061
699
|
DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration;
|
|
1062
|
-
|
|
1063
700
|
HttpConfiguration: HttpConfiguration | undefined;
|
|
1064
|
-
|
|
1065
701
|
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
|
|
1066
|
-
|
|
1067
702
|
SourceLocationName: string | undefined;
|
|
1068
703
|
}
|
|
1069
704
|
export interface UpdateSourceLocationResponse {
|
|
1070
705
|
AccessConfiguration?: AccessConfiguration;
|
|
1071
|
-
|
|
1072
706
|
Arn?: string;
|
|
1073
|
-
|
|
1074
707
|
CreationTime?: Date;
|
|
1075
|
-
|
|
1076
708
|
DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration;
|
|
1077
|
-
|
|
1078
709
|
HttpConfiguration?: HttpConfiguration;
|
|
1079
|
-
|
|
1080
710
|
LastModifiedTime?: Date;
|
|
1081
|
-
|
|
1082
711
|
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
|
|
1083
|
-
|
|
1084
712
|
SourceLocationName?: string;
|
|
1085
|
-
|
|
1086
713
|
Tags?: Record<string, string>;
|
|
1087
714
|
}
|
|
1088
715
|
export interface UpdateVodSourceRequest {
|
|
1089
716
|
HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
|
|
1090
|
-
|
|
1091
717
|
SourceLocationName: string | undefined;
|
|
1092
|
-
|
|
1093
718
|
VodSourceName: string | undefined;
|
|
1094
719
|
}
|
|
1095
720
|
export interface UpdateVodSourceResponse {
|
|
1096
721
|
Arn?: string;
|
|
1097
|
-
|
|
1098
722
|
CreationTime?: Date;
|
|
1099
|
-
|
|
1100
723
|
HttpPackageConfigurations?: HttpPackageConfiguration[];
|
|
1101
|
-
|
|
1102
724
|
LastModifiedTime?: Date;
|
|
1103
|
-
|
|
1104
725
|
SourceLocationName?: string;
|
|
1105
|
-
|
|
1106
726
|
Tags?: Record<string, string>;
|
|
1107
|
-
|
|
1108
727
|
VodSourceName?: string;
|
|
1109
728
|
}
|
|
1110
|
-
|
|
1111
729
|
export declare const SlateSourceFilterSensitiveLog: (obj: SlateSource) => any;
|
|
1112
|
-
|
|
1113
730
|
export declare const SpliceInsertMessageFilterSensitiveLog: (
|
|
1114
731
|
obj: SpliceInsertMessage
|
|
1115
732
|
) => any;
|
|
1116
|
-
|
|
1117
733
|
export declare const AdBreakFilterSensitiveLog: (obj: AdBreak) => any;
|
|
1118
|
-
|
|
1119
734
|
export declare const AlertFilterSensitiveLog: (obj: Alert) => any;
|
|
1120
|
-
|
|
1121
735
|
export declare const AvailMatchingCriteriaFilterSensitiveLog: (
|
|
1122
736
|
obj: AvailMatchingCriteria
|
|
1123
737
|
) => any;
|
|
1124
|
-
|
|
1125
738
|
export declare const DashPlaylistSettingsFilterSensitiveLog: (
|
|
1126
739
|
obj: DashPlaylistSettings
|
|
1127
740
|
) => any;
|
|
1128
|
-
|
|
1129
741
|
export declare const HlsPlaylistSettingsFilterSensitiveLog: (
|
|
1130
742
|
obj: HlsPlaylistSettings
|
|
1131
743
|
) => any;
|
|
1132
|
-
|
|
1133
744
|
export declare const ResponseOutputItemFilterSensitiveLog: (
|
|
1134
745
|
obj: ResponseOutputItem
|
|
1135
746
|
) => any;
|
|
1136
|
-
|
|
1137
747
|
export declare const ChannelFilterSensitiveLog: (obj: Channel) => any;
|
|
1138
|
-
|
|
1139
748
|
export declare const HttpPackageConfigurationFilterSensitiveLog: (
|
|
1140
749
|
obj: HttpPackageConfiguration
|
|
1141
750
|
) => any;
|
|
1142
|
-
|
|
1143
751
|
export declare const LiveSourceFilterSensitiveLog: (obj: LiveSource) => any;
|
|
1144
|
-
|
|
1145
752
|
export declare const AvailSuppressionFilterSensitiveLog: (
|
|
1146
753
|
obj: AvailSuppression
|
|
1147
754
|
) => any;
|
|
1148
|
-
|
|
1149
755
|
export declare const BumperFilterSensitiveLog: (obj: Bumper) => any;
|
|
1150
|
-
|
|
1151
756
|
export declare const CdnConfigurationFilterSensitiveLog: (
|
|
1152
757
|
obj: CdnConfiguration
|
|
1153
758
|
) => any;
|
|
1154
|
-
|
|
1155
759
|
export declare const DashConfigurationFilterSensitiveLog: (
|
|
1156
760
|
obj: DashConfiguration
|
|
1157
761
|
) => any;
|
|
1158
|
-
|
|
1159
762
|
export declare const HlsConfigurationFilterSensitiveLog: (
|
|
1160
763
|
obj: HlsConfiguration
|
|
1161
764
|
) => any;
|
|
1162
|
-
|
|
1163
765
|
export declare const LivePreRollConfigurationFilterSensitiveLog: (
|
|
1164
766
|
obj: LivePreRollConfiguration
|
|
1165
767
|
) => any;
|
|
1166
|
-
|
|
1167
768
|
export declare const LogConfigurationFilterSensitiveLog: (
|
|
1168
769
|
obj: LogConfiguration
|
|
1169
770
|
) => any;
|
|
1170
|
-
|
|
1171
771
|
export declare const AdMarkerPassthroughFilterSensitiveLog: (
|
|
1172
772
|
obj: AdMarkerPassthrough
|
|
1173
773
|
) => any;
|
|
1174
|
-
|
|
1175
774
|
export declare const ManifestProcessingRulesFilterSensitiveLog: (
|
|
1176
775
|
obj: ManifestProcessingRules
|
|
1177
776
|
) => any;
|
|
1178
|
-
|
|
1179
777
|
export declare const PlaybackConfigurationFilterSensitiveLog: (
|
|
1180
778
|
obj: PlaybackConfiguration
|
|
1181
779
|
) => any;
|
|
1182
|
-
|
|
1183
780
|
export declare const PrefetchConsumptionFilterSensitiveLog: (
|
|
1184
781
|
obj: PrefetchConsumption
|
|
1185
782
|
) => any;
|
|
1186
|
-
|
|
1187
783
|
export declare const PrefetchRetrievalFilterSensitiveLog: (
|
|
1188
784
|
obj: PrefetchRetrieval
|
|
1189
785
|
) => any;
|
|
1190
|
-
|
|
1191
786
|
export declare const PrefetchScheduleFilterSensitiveLog: (
|
|
1192
787
|
obj: PrefetchSchedule
|
|
1193
788
|
) => any;
|
|
1194
|
-
|
|
1195
789
|
export declare const ScheduleAdBreakFilterSensitiveLog: (
|
|
1196
790
|
obj: ScheduleAdBreak
|
|
1197
791
|
) => any;
|
|
1198
|
-
|
|
1199
792
|
export declare const ScheduleEntryFilterSensitiveLog: (
|
|
1200
793
|
obj: ScheduleEntry
|
|
1201
794
|
) => any;
|
|
1202
|
-
|
|
1203
795
|
export declare const SegmentDeliveryConfigurationFilterSensitiveLog: (
|
|
1204
796
|
obj: SegmentDeliveryConfiguration
|
|
1205
797
|
) => any;
|
|
1206
|
-
|
|
1207
798
|
export declare const SecretsManagerAccessTokenConfigurationFilterSensitiveLog: (
|
|
1208
799
|
obj: SecretsManagerAccessTokenConfiguration
|
|
1209
800
|
) => any;
|
|
1210
|
-
|
|
1211
801
|
export declare const AccessConfigurationFilterSensitiveLog: (
|
|
1212
802
|
obj: AccessConfiguration
|
|
1213
803
|
) => any;
|
|
1214
|
-
|
|
1215
804
|
export declare const DefaultSegmentDeliveryConfigurationFilterSensitiveLog: (
|
|
1216
805
|
obj: DefaultSegmentDeliveryConfiguration
|
|
1217
806
|
) => any;
|
|
1218
|
-
|
|
1219
807
|
export declare const HttpConfigurationFilterSensitiveLog: (
|
|
1220
808
|
obj: HttpConfiguration
|
|
1221
809
|
) => any;
|
|
1222
|
-
|
|
1223
810
|
export declare const SourceLocationFilterSensitiveLog: (
|
|
1224
811
|
obj: SourceLocation
|
|
1225
812
|
) => any;
|
|
1226
|
-
|
|
1227
813
|
export declare const VodSourceFilterSensitiveLog: (obj: VodSource) => any;
|
|
1228
|
-
|
|
1229
814
|
export declare const ConfigureLogsForPlaybackConfigurationRequestFilterSensitiveLog: (
|
|
1230
815
|
obj: ConfigureLogsForPlaybackConfigurationRequest
|
|
1231
816
|
) => any;
|
|
1232
|
-
|
|
1233
817
|
export declare const ConfigureLogsForPlaybackConfigurationResponseFilterSensitiveLog: (
|
|
1234
818
|
obj: ConfigureLogsForPlaybackConfigurationResponse
|
|
1235
819
|
) => any;
|
|
1236
|
-
|
|
1237
820
|
export declare const RequestOutputItemFilterSensitiveLog: (
|
|
1238
821
|
obj: RequestOutputItem
|
|
1239
822
|
) => any;
|
|
1240
|
-
|
|
1241
823
|
export declare const CreateChannelRequestFilterSensitiveLog: (
|
|
1242
824
|
obj: CreateChannelRequest
|
|
1243
825
|
) => any;
|
|
1244
|
-
|
|
1245
826
|
export declare const CreateChannelResponseFilterSensitiveLog: (
|
|
1246
827
|
obj: CreateChannelResponse
|
|
1247
828
|
) => any;
|
|
1248
|
-
|
|
1249
829
|
export declare const CreateLiveSourceRequestFilterSensitiveLog: (
|
|
1250
830
|
obj: CreateLiveSourceRequest
|
|
1251
831
|
) => any;
|
|
1252
|
-
|
|
1253
832
|
export declare const CreateLiveSourceResponseFilterSensitiveLog: (
|
|
1254
833
|
obj: CreateLiveSourceResponse
|
|
1255
834
|
) => any;
|
|
1256
|
-
|
|
1257
835
|
export declare const CreatePrefetchScheduleRequestFilterSensitiveLog: (
|
|
1258
836
|
obj: CreatePrefetchScheduleRequest
|
|
1259
837
|
) => any;
|
|
1260
|
-
|
|
1261
838
|
export declare const CreatePrefetchScheduleResponseFilterSensitiveLog: (
|
|
1262
839
|
obj: CreatePrefetchScheduleResponse
|
|
1263
840
|
) => any;
|
|
1264
|
-
|
|
1265
841
|
export declare const TransitionFilterSensitiveLog: (obj: Transition) => any;
|
|
1266
|
-
|
|
1267
842
|
export declare const ScheduleConfigurationFilterSensitiveLog: (
|
|
1268
843
|
obj: ScheduleConfiguration
|
|
1269
844
|
) => any;
|
|
1270
|
-
|
|
1271
845
|
export declare const CreateProgramRequestFilterSensitiveLog: (
|
|
1272
846
|
obj: CreateProgramRequest
|
|
1273
847
|
) => any;
|
|
1274
|
-
|
|
1275
848
|
export declare const CreateProgramResponseFilterSensitiveLog: (
|
|
1276
849
|
obj: CreateProgramResponse
|
|
1277
850
|
) => any;
|
|
1278
|
-
|
|
1279
851
|
export declare const CreateSourceLocationRequestFilterSensitiveLog: (
|
|
1280
852
|
obj: CreateSourceLocationRequest
|
|
1281
853
|
) => any;
|
|
1282
|
-
|
|
1283
854
|
export declare const CreateSourceLocationResponseFilterSensitiveLog: (
|
|
1284
855
|
obj: CreateSourceLocationResponse
|
|
1285
856
|
) => any;
|
|
1286
|
-
|
|
1287
857
|
export declare const CreateVodSourceRequestFilterSensitiveLog: (
|
|
1288
858
|
obj: CreateVodSourceRequest
|
|
1289
859
|
) => any;
|
|
1290
|
-
|
|
1291
860
|
export declare const CreateVodSourceResponseFilterSensitiveLog: (
|
|
1292
861
|
obj: CreateVodSourceResponse
|
|
1293
862
|
) => any;
|
|
1294
|
-
|
|
1295
863
|
export declare const DashConfigurationForPutFilterSensitiveLog: (
|
|
1296
864
|
obj: DashConfigurationForPut
|
|
1297
865
|
) => any;
|
|
1298
|
-
|
|
1299
866
|
export declare const DeleteChannelRequestFilterSensitiveLog: (
|
|
1300
867
|
obj: DeleteChannelRequest
|
|
1301
868
|
) => any;
|
|
1302
|
-
|
|
1303
869
|
export declare const DeleteChannelResponseFilterSensitiveLog: (
|
|
1304
870
|
obj: DeleteChannelResponse
|
|
1305
871
|
) => any;
|
|
1306
|
-
|
|
1307
872
|
export declare const DeleteChannelPolicyRequestFilterSensitiveLog: (
|
|
1308
873
|
obj: DeleteChannelPolicyRequest
|
|
1309
874
|
) => any;
|
|
1310
|
-
|
|
1311
875
|
export declare const DeleteChannelPolicyResponseFilterSensitiveLog: (
|
|
1312
876
|
obj: DeleteChannelPolicyResponse
|
|
1313
877
|
) => any;
|
|
1314
|
-
|
|
1315
878
|
export declare const DeleteLiveSourceRequestFilterSensitiveLog: (
|
|
1316
879
|
obj: DeleteLiveSourceRequest
|
|
1317
880
|
) => any;
|
|
1318
|
-
|
|
1319
881
|
export declare const DeleteLiveSourceResponseFilterSensitiveLog: (
|
|
1320
882
|
obj: DeleteLiveSourceResponse
|
|
1321
883
|
) => any;
|
|
1322
|
-
|
|
1323
884
|
export declare const DeletePlaybackConfigurationRequestFilterSensitiveLog: (
|
|
1324
885
|
obj: DeletePlaybackConfigurationRequest
|
|
1325
886
|
) => any;
|
|
1326
|
-
|
|
1327
887
|
export declare const DeletePlaybackConfigurationResponseFilterSensitiveLog: (
|
|
1328
888
|
obj: DeletePlaybackConfigurationResponse
|
|
1329
889
|
) => any;
|
|
1330
|
-
|
|
1331
890
|
export declare const DeletePrefetchScheduleRequestFilterSensitiveLog: (
|
|
1332
891
|
obj: DeletePrefetchScheduleRequest
|
|
1333
892
|
) => any;
|
|
1334
|
-
|
|
1335
893
|
export declare const DeletePrefetchScheduleResponseFilterSensitiveLog: (
|
|
1336
894
|
obj: DeletePrefetchScheduleResponse
|
|
1337
895
|
) => any;
|
|
1338
|
-
|
|
1339
896
|
export declare const DeleteProgramRequestFilterSensitiveLog: (
|
|
1340
897
|
obj: DeleteProgramRequest
|
|
1341
898
|
) => any;
|
|
1342
|
-
|
|
1343
899
|
export declare const DeleteProgramResponseFilterSensitiveLog: (
|
|
1344
900
|
obj: DeleteProgramResponse
|
|
1345
901
|
) => any;
|
|
1346
|
-
|
|
1347
902
|
export declare const DeleteSourceLocationRequestFilterSensitiveLog: (
|
|
1348
903
|
obj: DeleteSourceLocationRequest
|
|
1349
904
|
) => any;
|
|
1350
|
-
|
|
1351
905
|
export declare const DeleteSourceLocationResponseFilterSensitiveLog: (
|
|
1352
906
|
obj: DeleteSourceLocationResponse
|
|
1353
907
|
) => any;
|
|
1354
|
-
|
|
1355
908
|
export declare const DeleteVodSourceRequestFilterSensitiveLog: (
|
|
1356
909
|
obj: DeleteVodSourceRequest
|
|
1357
910
|
) => any;
|
|
1358
|
-
|
|
1359
911
|
export declare const DeleteVodSourceResponseFilterSensitiveLog: (
|
|
1360
912
|
obj: DeleteVodSourceResponse
|
|
1361
913
|
) => any;
|
|
1362
|
-
|
|
1363
914
|
export declare const DescribeChannelRequestFilterSensitiveLog: (
|
|
1364
915
|
obj: DescribeChannelRequest
|
|
1365
916
|
) => any;
|
|
1366
|
-
|
|
1367
917
|
export declare const DescribeChannelResponseFilterSensitiveLog: (
|
|
1368
918
|
obj: DescribeChannelResponse
|
|
1369
919
|
) => any;
|
|
1370
|
-
|
|
1371
920
|
export declare const DescribeLiveSourceRequestFilterSensitiveLog: (
|
|
1372
921
|
obj: DescribeLiveSourceRequest
|
|
1373
922
|
) => any;
|
|
1374
|
-
|
|
1375
923
|
export declare const DescribeLiveSourceResponseFilterSensitiveLog: (
|
|
1376
924
|
obj: DescribeLiveSourceResponse
|
|
1377
925
|
) => any;
|
|
1378
|
-
|
|
1379
926
|
export declare const DescribeProgramRequestFilterSensitiveLog: (
|
|
1380
927
|
obj: DescribeProgramRequest
|
|
1381
928
|
) => any;
|
|
1382
|
-
|
|
1383
929
|
export declare const DescribeProgramResponseFilterSensitiveLog: (
|
|
1384
930
|
obj: DescribeProgramResponse
|
|
1385
931
|
) => any;
|
|
1386
|
-
|
|
1387
932
|
export declare const DescribeSourceLocationRequestFilterSensitiveLog: (
|
|
1388
933
|
obj: DescribeSourceLocationRequest
|
|
1389
934
|
) => any;
|
|
1390
|
-
|
|
1391
935
|
export declare const DescribeSourceLocationResponseFilterSensitiveLog: (
|
|
1392
936
|
obj: DescribeSourceLocationResponse
|
|
1393
937
|
) => any;
|
|
1394
|
-
|
|
1395
938
|
export declare const DescribeVodSourceRequestFilterSensitiveLog: (
|
|
1396
939
|
obj: DescribeVodSourceRequest
|
|
1397
940
|
) => any;
|
|
1398
|
-
|
|
1399
941
|
export declare const DescribeVodSourceResponseFilterSensitiveLog: (
|
|
1400
942
|
obj: DescribeVodSourceResponse
|
|
1401
943
|
) => any;
|
|
1402
|
-
|
|
1403
944
|
export declare const GetChannelPolicyRequestFilterSensitiveLog: (
|
|
1404
945
|
obj: GetChannelPolicyRequest
|
|
1405
946
|
) => any;
|
|
1406
|
-
|
|
1407
947
|
export declare const GetChannelPolicyResponseFilterSensitiveLog: (
|
|
1408
948
|
obj: GetChannelPolicyResponse
|
|
1409
949
|
) => any;
|
|
1410
|
-
|
|
1411
950
|
export declare const GetChannelScheduleRequestFilterSensitiveLog: (
|
|
1412
951
|
obj: GetChannelScheduleRequest
|
|
1413
952
|
) => any;
|
|
1414
|
-
|
|
1415
953
|
export declare const GetChannelScheduleResponseFilterSensitiveLog: (
|
|
1416
954
|
obj: GetChannelScheduleResponse
|
|
1417
955
|
) => any;
|
|
1418
|
-
|
|
1419
956
|
export declare const GetPlaybackConfigurationRequestFilterSensitiveLog: (
|
|
1420
957
|
obj: GetPlaybackConfigurationRequest
|
|
1421
958
|
) => any;
|
|
1422
|
-
|
|
1423
959
|
export declare const GetPlaybackConfigurationResponseFilterSensitiveLog: (
|
|
1424
960
|
obj: GetPlaybackConfigurationResponse
|
|
1425
961
|
) => any;
|
|
1426
|
-
|
|
1427
962
|
export declare const GetPrefetchScheduleRequestFilterSensitiveLog: (
|
|
1428
963
|
obj: GetPrefetchScheduleRequest
|
|
1429
964
|
) => any;
|
|
1430
|
-
|
|
1431
965
|
export declare const GetPrefetchScheduleResponseFilterSensitiveLog: (
|
|
1432
966
|
obj: GetPrefetchScheduleResponse
|
|
1433
967
|
) => any;
|
|
1434
|
-
|
|
1435
968
|
export declare const ListAlertsRequestFilterSensitiveLog: (
|
|
1436
969
|
obj: ListAlertsRequest
|
|
1437
970
|
) => any;
|
|
1438
|
-
|
|
1439
971
|
export declare const ListAlertsResponseFilterSensitiveLog: (
|
|
1440
972
|
obj: ListAlertsResponse
|
|
1441
973
|
) => any;
|
|
1442
|
-
|
|
1443
974
|
export declare const ListChannelsRequestFilterSensitiveLog: (
|
|
1444
975
|
obj: ListChannelsRequest
|
|
1445
976
|
) => any;
|
|
1446
|
-
|
|
1447
977
|
export declare const ListChannelsResponseFilterSensitiveLog: (
|
|
1448
978
|
obj: ListChannelsResponse
|
|
1449
979
|
) => any;
|
|
1450
|
-
|
|
1451
980
|
export declare const ListLiveSourcesRequestFilterSensitiveLog: (
|
|
1452
981
|
obj: ListLiveSourcesRequest
|
|
1453
982
|
) => any;
|
|
1454
|
-
|
|
1455
983
|
export declare const ListLiveSourcesResponseFilterSensitiveLog: (
|
|
1456
984
|
obj: ListLiveSourcesResponse
|
|
1457
985
|
) => any;
|
|
1458
|
-
|
|
1459
986
|
export declare const ListPlaybackConfigurationsRequestFilterSensitiveLog: (
|
|
1460
987
|
obj: ListPlaybackConfigurationsRequest
|
|
1461
988
|
) => any;
|
|
1462
|
-
|
|
1463
989
|
export declare const ListPlaybackConfigurationsResponseFilterSensitiveLog: (
|
|
1464
990
|
obj: ListPlaybackConfigurationsResponse
|
|
1465
991
|
) => any;
|
|
1466
|
-
|
|
1467
992
|
export declare const ListPrefetchSchedulesRequestFilterSensitiveLog: (
|
|
1468
993
|
obj: ListPrefetchSchedulesRequest
|
|
1469
994
|
) => any;
|
|
1470
|
-
|
|
1471
995
|
export declare const ListPrefetchSchedulesResponseFilterSensitiveLog: (
|
|
1472
996
|
obj: ListPrefetchSchedulesResponse
|
|
1473
997
|
) => any;
|
|
1474
|
-
|
|
1475
998
|
export declare const ListSourceLocationsRequestFilterSensitiveLog: (
|
|
1476
999
|
obj: ListSourceLocationsRequest
|
|
1477
1000
|
) => any;
|
|
1478
|
-
|
|
1479
1001
|
export declare const ListSourceLocationsResponseFilterSensitiveLog: (
|
|
1480
1002
|
obj: ListSourceLocationsResponse
|
|
1481
1003
|
) => any;
|
|
1482
|
-
|
|
1483
1004
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1484
1005
|
obj: ListTagsForResourceRequest
|
|
1485
1006
|
) => any;
|
|
1486
|
-
|
|
1487
1007
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1488
1008
|
obj: ListTagsForResourceResponse
|
|
1489
1009
|
) => any;
|
|
1490
|
-
|
|
1491
1010
|
export declare const ListVodSourcesRequestFilterSensitiveLog: (
|
|
1492
1011
|
obj: ListVodSourcesRequest
|
|
1493
1012
|
) => any;
|
|
1494
|
-
|
|
1495
1013
|
export declare const ListVodSourcesResponseFilterSensitiveLog: (
|
|
1496
1014
|
obj: ListVodSourcesResponse
|
|
1497
1015
|
) => any;
|
|
1498
|
-
|
|
1499
1016
|
export declare const PutChannelPolicyRequestFilterSensitiveLog: (
|
|
1500
1017
|
obj: PutChannelPolicyRequest
|
|
1501
1018
|
) => any;
|
|
1502
|
-
|
|
1503
1019
|
export declare const PutChannelPolicyResponseFilterSensitiveLog: (
|
|
1504
1020
|
obj: PutChannelPolicyResponse
|
|
1505
1021
|
) => any;
|
|
1506
|
-
|
|
1507
1022
|
export declare const PutPlaybackConfigurationRequestFilterSensitiveLog: (
|
|
1508
1023
|
obj: PutPlaybackConfigurationRequest
|
|
1509
1024
|
) => any;
|
|
1510
|
-
|
|
1511
1025
|
export declare const PutPlaybackConfigurationResponseFilterSensitiveLog: (
|
|
1512
1026
|
obj: PutPlaybackConfigurationResponse
|
|
1513
1027
|
) => any;
|
|
1514
|
-
|
|
1515
1028
|
export declare const StartChannelRequestFilterSensitiveLog: (
|
|
1516
1029
|
obj: StartChannelRequest
|
|
1517
1030
|
) => any;
|
|
1518
|
-
|
|
1519
1031
|
export declare const StartChannelResponseFilterSensitiveLog: (
|
|
1520
1032
|
obj: StartChannelResponse
|
|
1521
1033
|
) => any;
|
|
1522
|
-
|
|
1523
1034
|
export declare const StopChannelRequestFilterSensitiveLog: (
|
|
1524
1035
|
obj: StopChannelRequest
|
|
1525
1036
|
) => any;
|
|
1526
|
-
|
|
1527
1037
|
export declare const StopChannelResponseFilterSensitiveLog: (
|
|
1528
1038
|
obj: StopChannelResponse
|
|
1529
1039
|
) => any;
|
|
1530
|
-
|
|
1531
1040
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1532
1041
|
obj: TagResourceRequest
|
|
1533
1042
|
) => any;
|
|
1534
|
-
|
|
1535
1043
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1536
1044
|
obj: UntagResourceRequest
|
|
1537
1045
|
) => any;
|
|
1538
|
-
|
|
1539
1046
|
export declare const UpdateChannelRequestFilterSensitiveLog: (
|
|
1540
1047
|
obj: UpdateChannelRequest
|
|
1541
1048
|
) => any;
|
|
1542
|
-
|
|
1543
1049
|
export declare const UpdateChannelResponseFilterSensitiveLog: (
|
|
1544
1050
|
obj: UpdateChannelResponse
|
|
1545
1051
|
) => any;
|
|
1546
|
-
|
|
1547
1052
|
export declare const UpdateLiveSourceRequestFilterSensitiveLog: (
|
|
1548
1053
|
obj: UpdateLiveSourceRequest
|
|
1549
1054
|
) => any;
|
|
1550
|
-
|
|
1551
1055
|
export declare const UpdateLiveSourceResponseFilterSensitiveLog: (
|
|
1552
1056
|
obj: UpdateLiveSourceResponse
|
|
1553
1057
|
) => any;
|
|
1554
|
-
|
|
1555
1058
|
export declare const UpdateSourceLocationRequestFilterSensitiveLog: (
|
|
1556
1059
|
obj: UpdateSourceLocationRequest
|
|
1557
1060
|
) => any;
|
|
1558
|
-
|
|
1559
1061
|
export declare const UpdateSourceLocationResponseFilterSensitiveLog: (
|
|
1560
1062
|
obj: UpdateSourceLocationResponse
|
|
1561
1063
|
) => any;
|
|
1562
|
-
|
|
1563
1064
|
export declare const UpdateVodSourceRequestFilterSensitiveLog: (
|
|
1564
1065
|
obj: UpdateVodSourceRequest
|
|
1565
1066
|
) => any;
|
|
1566
|
-
|
|
1567
1067
|
export declare const UpdateVodSourceResponseFilterSensitiveLog: (
|
|
1568
1068
|
obj: UpdateVodSourceResponse
|
|
1569
1069
|
) => any;
|