@aws-sdk/client-mediatailor 3.686.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +402 -402
- package/dist-types/ts3.4/models/models_0.d.ts +416 -402
- package/package.json +7 -7
|
@@ -10,35 +10,35 @@ export declare const MessageType: {
|
|
|
10
10
|
};
|
|
11
11
|
export type MessageType = (typeof MessageType)[keyof typeof MessageType];
|
|
12
12
|
export interface SlateSource {
|
|
13
|
-
SourceLocationName?: string;
|
|
14
|
-
VodSourceName?: string;
|
|
13
|
+
SourceLocationName?: string | undefined;
|
|
14
|
+
VodSourceName?: string | undefined;
|
|
15
15
|
}
|
|
16
16
|
export interface SpliceInsertMessage {
|
|
17
|
-
AvailNum?: number;
|
|
18
|
-
AvailsExpected?: number;
|
|
19
|
-
SpliceEventId?: number;
|
|
20
|
-
UniqueProgramId?: number;
|
|
17
|
+
AvailNum?: number | undefined;
|
|
18
|
+
AvailsExpected?: number | undefined;
|
|
19
|
+
SpliceEventId?: number | undefined;
|
|
20
|
+
UniqueProgramId?: number | undefined;
|
|
21
21
|
}
|
|
22
22
|
export interface SegmentationDescriptor {
|
|
23
|
-
SegmentationEventId?: number;
|
|
24
|
-
SegmentationUpidType?: number;
|
|
25
|
-
SegmentationUpid?: string;
|
|
26
|
-
SegmentationTypeId?: number;
|
|
27
|
-
SegmentNum?: number;
|
|
28
|
-
SegmentsExpected?: number;
|
|
29
|
-
SubSegmentNum?: number;
|
|
30
|
-
SubSegmentsExpected?: number;
|
|
23
|
+
SegmentationEventId?: number | undefined;
|
|
24
|
+
SegmentationUpidType?: number | undefined;
|
|
25
|
+
SegmentationUpid?: string | undefined;
|
|
26
|
+
SegmentationTypeId?: number | undefined;
|
|
27
|
+
SegmentNum?: number | undefined;
|
|
28
|
+
SegmentsExpected?: number | undefined;
|
|
29
|
+
SubSegmentNum?: number | undefined;
|
|
30
|
+
SubSegmentsExpected?: number | undefined;
|
|
31
31
|
}
|
|
32
32
|
export interface TimeSignalMessage {
|
|
33
|
-
SegmentationDescriptors?: SegmentationDescriptor[];
|
|
33
|
+
SegmentationDescriptors?: SegmentationDescriptor[] | undefined;
|
|
34
34
|
}
|
|
35
35
|
export interface AdBreak {
|
|
36
|
-
MessageType?: MessageType;
|
|
36
|
+
MessageType?: MessageType | undefined;
|
|
37
37
|
OffsetMillis: number | undefined;
|
|
38
|
-
Slate?: SlateSource;
|
|
39
|
-
SpliceInsertMessage?: SpliceInsertMessage;
|
|
40
|
-
TimeSignalMessage?: TimeSignalMessage;
|
|
41
|
-
AdBreakMetadata?: KeyValuePair[];
|
|
38
|
+
Slate?: SlateSource | undefined;
|
|
39
|
+
SpliceInsertMessage?: SpliceInsertMessage | undefined;
|
|
40
|
+
TimeSignalMessage?: TimeSignalMessage | undefined;
|
|
41
|
+
AdBreakMetadata?: KeyValuePair[] | undefined;
|
|
42
42
|
}
|
|
43
43
|
export declare const AlertCategory: {
|
|
44
44
|
readonly INFO: "INFO";
|
|
@@ -52,24 +52,24 @@ export interface Alert {
|
|
|
52
52
|
LastModifiedTime: Date | undefined;
|
|
53
53
|
RelatedResourceArns: string[] | undefined;
|
|
54
54
|
ResourceArn: string | undefined;
|
|
55
|
-
Category?: AlertCategory;
|
|
55
|
+
Category?: AlertCategory | undefined;
|
|
56
56
|
}
|
|
57
57
|
export interface ClipRange {
|
|
58
|
-
EndOffsetMillis?: number;
|
|
59
|
-
StartOffsetMillis?: number;
|
|
58
|
+
EndOffsetMillis?: number | undefined;
|
|
59
|
+
StartOffsetMillis?: number | undefined;
|
|
60
60
|
}
|
|
61
61
|
export interface AlternateMedia {
|
|
62
|
-
SourceLocationName?: string;
|
|
63
|
-
LiveSourceName?: string;
|
|
64
|
-
VodSourceName?: string;
|
|
65
|
-
ClipRange?: ClipRange;
|
|
66
|
-
ScheduledStartTimeMillis?: number;
|
|
67
|
-
AdBreaks?: AdBreak[];
|
|
68
|
-
DurationMillis?: number;
|
|
62
|
+
SourceLocationName?: string | undefined;
|
|
63
|
+
LiveSourceName?: string | undefined;
|
|
64
|
+
VodSourceName?: string | undefined;
|
|
65
|
+
ClipRange?: ClipRange | undefined;
|
|
66
|
+
ScheduledStartTimeMillis?: number | undefined;
|
|
67
|
+
AdBreaks?: AdBreak[] | undefined;
|
|
68
|
+
DurationMillis?: number | undefined;
|
|
69
69
|
}
|
|
70
70
|
export interface AudienceMedia {
|
|
71
|
-
Audience?: string;
|
|
72
|
-
AlternateMedia?: AlternateMedia[];
|
|
71
|
+
Audience?: string | undefined;
|
|
72
|
+
AlternateMedia?: AlternateMedia[] | undefined;
|
|
73
73
|
}
|
|
74
74
|
export declare const Operator: {
|
|
75
75
|
readonly EQUALS: "EQUALS";
|
|
@@ -84,13 +84,13 @@ export declare const LogType: {
|
|
|
84
84
|
};
|
|
85
85
|
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
86
86
|
export interface LogConfigurationForChannel {
|
|
87
|
-
LogTypes?: LogType[];
|
|
87
|
+
LogTypes?: LogType[] | undefined;
|
|
88
88
|
}
|
|
89
89
|
export interface DashPlaylistSettings {
|
|
90
|
-
ManifestWindowSeconds?: number;
|
|
91
|
-
MinBufferTimeSeconds?: number;
|
|
92
|
-
MinUpdatePeriodSeconds?: number;
|
|
93
|
-
SuggestedPresentationDelaySeconds?: number;
|
|
90
|
+
ManifestWindowSeconds?: number | undefined;
|
|
91
|
+
MinBufferTimeSeconds?: number | undefined;
|
|
92
|
+
MinUpdatePeriodSeconds?: number | undefined;
|
|
93
|
+
SuggestedPresentationDelaySeconds?: number | undefined;
|
|
94
94
|
}
|
|
95
95
|
export declare const AdMarkupType: {
|
|
96
96
|
readonly DATERANGE: "DATERANGE";
|
|
@@ -98,12 +98,12 @@ export declare const AdMarkupType: {
|
|
|
98
98
|
};
|
|
99
99
|
export type AdMarkupType = (typeof AdMarkupType)[keyof typeof AdMarkupType];
|
|
100
100
|
export interface HlsPlaylistSettings {
|
|
101
|
-
ManifestWindowSeconds?: number;
|
|
102
|
-
AdMarkupType?: AdMarkupType[];
|
|
101
|
+
ManifestWindowSeconds?: number | undefined;
|
|
102
|
+
AdMarkupType?: AdMarkupType[] | undefined;
|
|
103
103
|
}
|
|
104
104
|
export interface ResponseOutputItem {
|
|
105
|
-
DashPlaylistSettings?: DashPlaylistSettings;
|
|
106
|
-
HlsPlaylistSettings?: HlsPlaylistSettings;
|
|
105
|
+
DashPlaylistSettings?: DashPlaylistSettings | undefined;
|
|
106
|
+
HlsPlaylistSettings?: HlsPlaylistSettings | undefined;
|
|
107
107
|
ManifestName: string | undefined;
|
|
108
108
|
PlaybackUrl: string | undefined;
|
|
109
109
|
SourceGroup: string | undefined;
|
|
@@ -112,15 +112,15 @@ export interface Channel {
|
|
|
112
112
|
Arn: string | undefined;
|
|
113
113
|
ChannelName: string | undefined;
|
|
114
114
|
ChannelState: string | undefined;
|
|
115
|
-
CreationTime?: Date;
|
|
116
|
-
FillerSlate?: SlateSource;
|
|
117
|
-
LastModifiedTime?: Date;
|
|
115
|
+
CreationTime?: Date | undefined;
|
|
116
|
+
FillerSlate?: SlateSource | undefined;
|
|
117
|
+
LastModifiedTime?: Date | undefined;
|
|
118
118
|
Outputs: ResponseOutputItem[] | undefined;
|
|
119
119
|
PlaybackMode: string | undefined;
|
|
120
|
-
Tags?: Record<string, string
|
|
120
|
+
Tags?: Record<string, string> | undefined;
|
|
121
121
|
Tier: string | undefined;
|
|
122
122
|
LogConfiguration: LogConfigurationForChannel | undefined;
|
|
123
|
-
Audiences?: string[];
|
|
123
|
+
Audiences?: string[] | undefined;
|
|
124
124
|
}
|
|
125
125
|
export declare const Type: {
|
|
126
126
|
readonly DASH: "DASH";
|
|
@@ -134,12 +134,12 @@ export interface HttpPackageConfiguration {
|
|
|
134
134
|
}
|
|
135
135
|
export interface LiveSource {
|
|
136
136
|
Arn: string | undefined;
|
|
137
|
-
CreationTime?: Date;
|
|
137
|
+
CreationTime?: Date | undefined;
|
|
138
138
|
HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
|
|
139
|
-
LastModifiedTime?: Date;
|
|
139
|
+
LastModifiedTime?: Date | undefined;
|
|
140
140
|
LiveSourceName: string | undefined;
|
|
141
141
|
SourceLocationName: string | undefined;
|
|
142
|
-
Tags?: Record<string, string
|
|
142
|
+
Tags?: Record<string, string> | undefined;
|
|
143
143
|
}
|
|
144
144
|
export declare const FillPolicy: {
|
|
145
145
|
readonly FULL_AVAIL_ONLY: "FULL_AVAIL_ONLY";
|
|
@@ -153,17 +153,17 @@ export declare const Mode: {
|
|
|
153
153
|
};
|
|
154
154
|
export type Mode = (typeof Mode)[keyof typeof Mode];
|
|
155
155
|
export interface AvailSuppression {
|
|
156
|
-
Mode?: Mode;
|
|
157
|
-
Value?: string;
|
|
158
|
-
FillPolicy?: FillPolicy;
|
|
156
|
+
Mode?: Mode | undefined;
|
|
157
|
+
Value?: string | undefined;
|
|
158
|
+
FillPolicy?: FillPolicy | undefined;
|
|
159
159
|
}
|
|
160
160
|
export interface Bumper {
|
|
161
|
-
EndUrl?: string;
|
|
162
|
-
StartUrl?: string;
|
|
161
|
+
EndUrl?: string | undefined;
|
|
162
|
+
StartUrl?: string | undefined;
|
|
163
163
|
}
|
|
164
164
|
export interface CdnConfiguration {
|
|
165
|
-
AdSegmentUrlPrefix?: string;
|
|
166
|
-
ContentSegmentUrlPrefix?: string;
|
|
165
|
+
AdSegmentUrlPrefix?: string | undefined;
|
|
166
|
+
ContentSegmentUrlPrefix?: string | undefined;
|
|
167
167
|
}
|
|
168
168
|
export declare const OriginManifestType: {
|
|
169
169
|
readonly MULTI_PERIOD: "MULTI_PERIOD";
|
|
@@ -172,12 +172,12 @@ export declare const OriginManifestType: {
|
|
|
172
172
|
export type OriginManifestType =
|
|
173
173
|
(typeof OriginManifestType)[keyof typeof OriginManifestType];
|
|
174
174
|
export interface DashConfiguration {
|
|
175
|
-
ManifestEndpointPrefix?: string;
|
|
176
|
-
MpdLocation?: string;
|
|
177
|
-
OriginManifestType?: OriginManifestType;
|
|
175
|
+
ManifestEndpointPrefix?: string | undefined;
|
|
176
|
+
MpdLocation?: string | undefined;
|
|
177
|
+
OriginManifestType?: OriginManifestType | undefined;
|
|
178
178
|
}
|
|
179
179
|
export interface HlsConfiguration {
|
|
180
|
-
ManifestEndpointPrefix?: string;
|
|
180
|
+
ManifestEndpointPrefix?: string | undefined;
|
|
181
181
|
}
|
|
182
182
|
export declare const InsertionMode: {
|
|
183
183
|
readonly PLAYER_SELECT: "PLAYER_SELECT";
|
|
@@ -185,49 +185,49 @@ export declare const InsertionMode: {
|
|
|
185
185
|
};
|
|
186
186
|
export type InsertionMode = (typeof InsertionMode)[keyof typeof InsertionMode];
|
|
187
187
|
export interface LivePreRollConfiguration {
|
|
188
|
-
AdDecisionServerUrl?: string;
|
|
189
|
-
MaxDurationSeconds?: number;
|
|
188
|
+
AdDecisionServerUrl?: string | undefined;
|
|
189
|
+
MaxDurationSeconds?: number | undefined;
|
|
190
190
|
}
|
|
191
191
|
export interface LogConfiguration {
|
|
192
192
|
PercentEnabled: number | undefined;
|
|
193
193
|
}
|
|
194
194
|
export interface AdMarkerPassthrough {
|
|
195
|
-
Enabled?: boolean;
|
|
195
|
+
Enabled?: boolean | undefined;
|
|
196
196
|
}
|
|
197
197
|
export interface ManifestProcessingRules {
|
|
198
|
-
AdMarkerPassthrough?: AdMarkerPassthrough;
|
|
198
|
+
AdMarkerPassthrough?: AdMarkerPassthrough | undefined;
|
|
199
199
|
}
|
|
200
200
|
export interface PlaybackConfiguration {
|
|
201
|
-
AdDecisionServerUrl?: string;
|
|
202
|
-
AvailSuppression?: AvailSuppression;
|
|
203
|
-
Bumper?: Bumper;
|
|
204
|
-
CdnConfiguration?: CdnConfiguration;
|
|
205
|
-
ConfigurationAliases?: Record<string, Record<string, string
|
|
206
|
-
DashConfiguration?: DashConfiguration;
|
|
207
|
-
HlsConfiguration?: HlsConfiguration;
|
|
208
|
-
InsertionMode?: InsertionMode;
|
|
209
|
-
LivePreRollConfiguration?: LivePreRollConfiguration;
|
|
210
|
-
LogConfiguration?: LogConfiguration;
|
|
211
|
-
ManifestProcessingRules?: ManifestProcessingRules;
|
|
212
|
-
Name?: string;
|
|
213
|
-
PersonalizationThresholdSeconds?: number;
|
|
214
|
-
PlaybackConfigurationArn?: string;
|
|
215
|
-
PlaybackEndpointPrefix?: string;
|
|
216
|
-
SessionInitializationEndpointPrefix?: string;
|
|
217
|
-
SlateAdUrl?: string;
|
|
218
|
-
Tags?: Record<string, string
|
|
219
|
-
TranscodeProfileName?: string;
|
|
220
|
-
VideoContentSourceUrl?: string;
|
|
201
|
+
AdDecisionServerUrl?: string | undefined;
|
|
202
|
+
AvailSuppression?: AvailSuppression | undefined;
|
|
203
|
+
Bumper?: Bumper | undefined;
|
|
204
|
+
CdnConfiguration?: CdnConfiguration | undefined;
|
|
205
|
+
ConfigurationAliases?: Record<string, Record<string, string>> | undefined;
|
|
206
|
+
DashConfiguration?: DashConfiguration | undefined;
|
|
207
|
+
HlsConfiguration?: HlsConfiguration | undefined;
|
|
208
|
+
InsertionMode?: InsertionMode | undefined;
|
|
209
|
+
LivePreRollConfiguration?: LivePreRollConfiguration | undefined;
|
|
210
|
+
LogConfiguration?: LogConfiguration | undefined;
|
|
211
|
+
ManifestProcessingRules?: ManifestProcessingRules | undefined;
|
|
212
|
+
Name?: string | undefined;
|
|
213
|
+
PersonalizationThresholdSeconds?: number | undefined;
|
|
214
|
+
PlaybackConfigurationArn?: string | undefined;
|
|
215
|
+
PlaybackEndpointPrefix?: string | undefined;
|
|
216
|
+
SessionInitializationEndpointPrefix?: string | undefined;
|
|
217
|
+
SlateAdUrl?: string | undefined;
|
|
218
|
+
Tags?: Record<string, string> | undefined;
|
|
219
|
+
TranscodeProfileName?: string | undefined;
|
|
220
|
+
VideoContentSourceUrl?: string | undefined;
|
|
221
221
|
}
|
|
222
222
|
export interface PrefetchConsumption {
|
|
223
|
-
AvailMatchingCriteria?: AvailMatchingCriteria[];
|
|
223
|
+
AvailMatchingCriteria?: AvailMatchingCriteria[] | undefined;
|
|
224
224
|
EndTime: Date | undefined;
|
|
225
|
-
StartTime?: Date;
|
|
225
|
+
StartTime?: Date | undefined;
|
|
226
226
|
}
|
|
227
227
|
export interface PrefetchRetrieval {
|
|
228
|
-
DynamicVariables?: Record<string, string
|
|
228
|
+
DynamicVariables?: Record<string, string> | undefined;
|
|
229
229
|
EndTime: Date | undefined;
|
|
230
|
-
StartTime?: Date;
|
|
230
|
+
StartTime?: Date | undefined;
|
|
231
231
|
}
|
|
232
232
|
export interface PrefetchSchedule {
|
|
233
233
|
Arn: string | undefined;
|
|
@@ -235,13 +235,13 @@ export interface PrefetchSchedule {
|
|
|
235
235
|
Name: string | undefined;
|
|
236
236
|
PlaybackConfigurationName: string | undefined;
|
|
237
237
|
Retrieval: PrefetchRetrieval | undefined;
|
|
238
|
-
StreamId?: string;
|
|
238
|
+
StreamId?: string | undefined;
|
|
239
239
|
}
|
|
240
240
|
export interface ScheduleAdBreak {
|
|
241
|
-
ApproximateDurationSeconds?: number;
|
|
242
|
-
ApproximateStartTime?: Date;
|
|
243
|
-
SourceLocationName?: string;
|
|
244
|
-
VodSourceName?: string;
|
|
241
|
+
ApproximateDurationSeconds?: number | undefined;
|
|
242
|
+
ApproximateStartTime?: Date | undefined;
|
|
243
|
+
SourceLocationName?: string | undefined;
|
|
244
|
+
VodSourceName?: string | undefined;
|
|
245
245
|
}
|
|
246
246
|
export declare const ScheduleEntryType: {
|
|
247
247
|
readonly ALTERNATE_MEDIA: "ALTERNATE_MEDIA";
|
|
@@ -251,21 +251,21 @@ export declare const ScheduleEntryType: {
|
|
|
251
251
|
export type ScheduleEntryType =
|
|
252
252
|
(typeof ScheduleEntryType)[keyof typeof ScheduleEntryType];
|
|
253
253
|
export interface ScheduleEntry {
|
|
254
|
-
ApproximateDurationSeconds?: number;
|
|
255
|
-
ApproximateStartTime?: Date;
|
|
254
|
+
ApproximateDurationSeconds?: number | undefined;
|
|
255
|
+
ApproximateStartTime?: Date | undefined;
|
|
256
256
|
Arn: string | undefined;
|
|
257
257
|
ChannelName: string | undefined;
|
|
258
|
-
LiveSourceName?: string;
|
|
258
|
+
LiveSourceName?: string | undefined;
|
|
259
259
|
ProgramName: string | undefined;
|
|
260
|
-
ScheduleAdBreaks?: ScheduleAdBreak[];
|
|
261
|
-
ScheduleEntryType?: ScheduleEntryType;
|
|
260
|
+
ScheduleAdBreaks?: ScheduleAdBreak[] | undefined;
|
|
261
|
+
ScheduleEntryType?: ScheduleEntryType | undefined;
|
|
262
262
|
SourceLocationName: string | undefined;
|
|
263
|
-
VodSourceName?: string;
|
|
264
|
-
Audiences?: string[];
|
|
263
|
+
VodSourceName?: string | undefined;
|
|
264
|
+
Audiences?: string[] | undefined;
|
|
265
265
|
}
|
|
266
266
|
export interface SegmentDeliveryConfiguration {
|
|
267
|
-
BaseUrl?: string;
|
|
268
|
-
Name?: string;
|
|
267
|
+
BaseUrl?: string | undefined;
|
|
268
|
+
Name?: string | undefined;
|
|
269
269
|
}
|
|
270
270
|
export declare const AccessType: {
|
|
271
271
|
readonly AUTODETECT_SIGV4: "AUTODETECT_SIGV4";
|
|
@@ -274,38 +274,42 @@ export declare const AccessType: {
|
|
|
274
274
|
};
|
|
275
275
|
export type AccessType = (typeof AccessType)[keyof typeof AccessType];
|
|
276
276
|
export interface SecretsManagerAccessTokenConfiguration {
|
|
277
|
-
HeaderName?: string;
|
|
278
|
-
SecretArn?: string;
|
|
279
|
-
SecretStringKey?: string;
|
|
277
|
+
HeaderName?: string | undefined;
|
|
278
|
+
SecretArn?: string | undefined;
|
|
279
|
+
SecretStringKey?: string | undefined;
|
|
280
280
|
}
|
|
281
281
|
export interface AccessConfiguration {
|
|
282
|
-
AccessType?: AccessType;
|
|
283
|
-
SecretsManagerAccessTokenConfiguration?:
|
|
282
|
+
AccessType?: AccessType | undefined;
|
|
283
|
+
SecretsManagerAccessTokenConfiguration?:
|
|
284
|
+
| SecretsManagerAccessTokenConfiguration
|
|
285
|
+
| undefined;
|
|
284
286
|
}
|
|
285
287
|
export interface DefaultSegmentDeliveryConfiguration {
|
|
286
|
-
BaseUrl?: string;
|
|
288
|
+
BaseUrl?: string | undefined;
|
|
287
289
|
}
|
|
288
290
|
export interface HttpConfiguration {
|
|
289
291
|
BaseUrl: string | undefined;
|
|
290
292
|
}
|
|
291
293
|
export interface SourceLocation {
|
|
292
|
-
AccessConfiguration?: AccessConfiguration;
|
|
294
|
+
AccessConfiguration?: AccessConfiguration | undefined;
|
|
293
295
|
Arn: string | undefined;
|
|
294
|
-
CreationTime?: Date;
|
|
295
|
-
DefaultSegmentDeliveryConfiguration?:
|
|
296
|
+
CreationTime?: Date | undefined;
|
|
297
|
+
DefaultSegmentDeliveryConfiguration?:
|
|
298
|
+
| DefaultSegmentDeliveryConfiguration
|
|
299
|
+
| undefined;
|
|
296
300
|
HttpConfiguration: HttpConfiguration | undefined;
|
|
297
|
-
LastModifiedTime?: Date;
|
|
298
|
-
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
|
|
301
|
+
LastModifiedTime?: Date | undefined;
|
|
302
|
+
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[] | undefined;
|
|
299
303
|
SourceLocationName: string | undefined;
|
|
300
|
-
Tags?: Record<string, string
|
|
304
|
+
Tags?: Record<string, string> | undefined;
|
|
301
305
|
}
|
|
302
306
|
export interface VodSource {
|
|
303
307
|
Arn: string | undefined;
|
|
304
|
-
CreationTime?: Date;
|
|
308
|
+
CreationTime?: Date | undefined;
|
|
305
309
|
HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
|
|
306
|
-
LastModifiedTime?: Date;
|
|
310
|
+
LastModifiedTime?: Date | undefined;
|
|
307
311
|
SourceLocationName: string | undefined;
|
|
308
|
-
Tags?: Record<string, string
|
|
312
|
+
Tags?: Record<string, string> | undefined;
|
|
309
313
|
VodSourceName: string | undefined;
|
|
310
314
|
}
|
|
311
315
|
export interface AdBreakOpportunity {
|
|
@@ -314,7 +318,7 @@ export interface AdBreakOpportunity {
|
|
|
314
318
|
export declare class BadRequestException extends __BaseException {
|
|
315
319
|
readonly name: "BadRequestException";
|
|
316
320
|
readonly $fault: "client";
|
|
317
|
-
Message?: string;
|
|
321
|
+
Message?: string | undefined;
|
|
318
322
|
constructor(
|
|
319
323
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
320
324
|
);
|
|
@@ -327,7 +331,7 @@ export interface GetChannelPolicyRequest {
|
|
|
327
331
|
ChannelName: string | undefined;
|
|
328
332
|
}
|
|
329
333
|
export interface GetChannelPolicyResponse {
|
|
330
|
-
Policy?: string;
|
|
334
|
+
Policy?: string | undefined;
|
|
331
335
|
}
|
|
332
336
|
export interface PutChannelPolicyRequest {
|
|
333
337
|
ChannelName: string | undefined;
|
|
@@ -339,12 +343,12 @@ export interface ConfigureLogsForChannelRequest {
|
|
|
339
343
|
LogTypes: LogType[] | undefined;
|
|
340
344
|
}
|
|
341
345
|
export interface ConfigureLogsForChannelResponse {
|
|
342
|
-
ChannelName?: string;
|
|
343
|
-
LogTypes?: LogType[];
|
|
346
|
+
ChannelName?: string | undefined;
|
|
347
|
+
LogTypes?: LogType[] | undefined;
|
|
344
348
|
}
|
|
345
349
|
export interface RequestOutputItem {
|
|
346
|
-
DashPlaylistSettings?: DashPlaylistSettings;
|
|
347
|
-
HlsPlaylistSettings?: HlsPlaylistSettings;
|
|
350
|
+
DashPlaylistSettings?: DashPlaylistSettings | undefined;
|
|
351
|
+
HlsPlaylistSettings?: HlsPlaylistSettings | undefined;
|
|
348
352
|
ManifestName: string | undefined;
|
|
349
353
|
SourceGroup: string | undefined;
|
|
350
354
|
}
|
|
@@ -363,13 +367,13 @@ export interface TimeShiftConfiguration {
|
|
|
363
367
|
}
|
|
364
368
|
export interface CreateChannelRequest {
|
|
365
369
|
ChannelName: string | undefined;
|
|
366
|
-
FillerSlate?: SlateSource;
|
|
370
|
+
FillerSlate?: SlateSource | undefined;
|
|
367
371
|
Outputs: RequestOutputItem[] | undefined;
|
|
368
372
|
PlaybackMode: PlaybackMode | undefined;
|
|
369
|
-
Tags?: Record<string, string
|
|
370
|
-
Tier?: Tier;
|
|
371
|
-
TimeShiftConfiguration?: TimeShiftConfiguration;
|
|
372
|
-
Audiences?: string[];
|
|
373
|
+
Tags?: Record<string, string> | undefined;
|
|
374
|
+
Tier?: Tier | undefined;
|
|
375
|
+
TimeShiftConfiguration?: TimeShiftConfiguration | undefined;
|
|
376
|
+
Audiences?: string[] | undefined;
|
|
373
377
|
}
|
|
374
378
|
export declare const ChannelState: {
|
|
375
379
|
readonly RUNNING: "RUNNING";
|
|
@@ -377,18 +381,18 @@ export declare const ChannelState: {
|
|
|
377
381
|
};
|
|
378
382
|
export type ChannelState = (typeof ChannelState)[keyof typeof ChannelState];
|
|
379
383
|
export interface CreateChannelResponse {
|
|
380
|
-
Arn?: string;
|
|
381
|
-
ChannelName?: string;
|
|
382
|
-
ChannelState?: ChannelState;
|
|
383
|
-
CreationTime?: Date;
|
|
384
|
-
FillerSlate?: SlateSource;
|
|
385
|
-
LastModifiedTime?: Date;
|
|
386
|
-
Outputs?: ResponseOutputItem[];
|
|
387
|
-
PlaybackMode?: string;
|
|
388
|
-
Tags?: Record<string, string
|
|
389
|
-
Tier?: string;
|
|
390
|
-
TimeShiftConfiguration?: TimeShiftConfiguration;
|
|
391
|
-
Audiences?: string[];
|
|
384
|
+
Arn?: string | undefined;
|
|
385
|
+
ChannelName?: string | undefined;
|
|
386
|
+
ChannelState?: ChannelState | undefined;
|
|
387
|
+
CreationTime?: Date | undefined;
|
|
388
|
+
FillerSlate?: SlateSource | undefined;
|
|
389
|
+
LastModifiedTime?: Date | undefined;
|
|
390
|
+
Outputs?: ResponseOutputItem[] | undefined;
|
|
391
|
+
PlaybackMode?: string | undefined;
|
|
392
|
+
Tags?: Record<string, string> | undefined;
|
|
393
|
+
Tier?: string | undefined;
|
|
394
|
+
TimeShiftConfiguration?: TimeShiftConfiguration | undefined;
|
|
395
|
+
Audiences?: string[] | undefined;
|
|
392
396
|
}
|
|
393
397
|
export interface DeleteChannelRequest {
|
|
394
398
|
ChannelName: string | undefined;
|
|
@@ -398,38 +402,38 @@ export interface DescribeChannelRequest {
|
|
|
398
402
|
ChannelName: string | undefined;
|
|
399
403
|
}
|
|
400
404
|
export interface DescribeChannelResponse {
|
|
401
|
-
Arn?: string;
|
|
402
|
-
ChannelName?: string;
|
|
403
|
-
ChannelState?: ChannelState;
|
|
404
|
-
CreationTime?: Date;
|
|
405
|
-
FillerSlate?: SlateSource;
|
|
406
|
-
LastModifiedTime?: Date;
|
|
407
|
-
Outputs?: ResponseOutputItem[];
|
|
408
|
-
PlaybackMode?: string;
|
|
409
|
-
Tags?: Record<string, string
|
|
410
|
-
Tier?: string;
|
|
405
|
+
Arn?: string | undefined;
|
|
406
|
+
ChannelName?: string | undefined;
|
|
407
|
+
ChannelState?: ChannelState | undefined;
|
|
408
|
+
CreationTime?: Date | undefined;
|
|
409
|
+
FillerSlate?: SlateSource | undefined;
|
|
410
|
+
LastModifiedTime?: Date | undefined;
|
|
411
|
+
Outputs?: ResponseOutputItem[] | undefined;
|
|
412
|
+
PlaybackMode?: string | undefined;
|
|
413
|
+
Tags?: Record<string, string> | undefined;
|
|
414
|
+
Tier?: string | undefined;
|
|
411
415
|
LogConfiguration: LogConfigurationForChannel | undefined;
|
|
412
|
-
TimeShiftConfiguration?: TimeShiftConfiguration;
|
|
413
|
-
Audiences?: string[];
|
|
416
|
+
TimeShiftConfiguration?: TimeShiftConfiguration | undefined;
|
|
417
|
+
Audiences?: string[] | undefined;
|
|
414
418
|
}
|
|
415
419
|
export interface GetChannelScheduleRequest {
|
|
416
420
|
ChannelName: string | undefined;
|
|
417
|
-
DurationMinutes?: string;
|
|
418
|
-
MaxResults?: number;
|
|
419
|
-
NextToken?: string;
|
|
420
|
-
Audience?: string;
|
|
421
|
+
DurationMinutes?: string | undefined;
|
|
422
|
+
MaxResults?: number | undefined;
|
|
423
|
+
NextToken?: string | undefined;
|
|
424
|
+
Audience?: string | undefined;
|
|
421
425
|
}
|
|
422
426
|
export interface GetChannelScheduleResponse {
|
|
423
|
-
Items?: ScheduleEntry[];
|
|
424
|
-
NextToken?: string;
|
|
427
|
+
Items?: ScheduleEntry[] | undefined;
|
|
428
|
+
NextToken?: string | undefined;
|
|
425
429
|
}
|
|
426
430
|
export interface ListChannelsRequest {
|
|
427
|
-
MaxResults?: number;
|
|
428
|
-
NextToken?: string;
|
|
431
|
+
MaxResults?: number | undefined;
|
|
432
|
+
NextToken?: string | undefined;
|
|
429
433
|
}
|
|
430
434
|
export interface ListChannelsResponse {
|
|
431
|
-
Items?: Channel[];
|
|
432
|
-
NextToken?: string;
|
|
435
|
+
Items?: Channel[] | undefined;
|
|
436
|
+
NextToken?: string | undefined;
|
|
433
437
|
}
|
|
434
438
|
export declare const RelativePosition: {
|
|
435
439
|
readonly AFTER_PROGRAM: "AFTER_PROGRAM";
|
|
@@ -438,39 +442,39 @@ export declare const RelativePosition: {
|
|
|
438
442
|
export type RelativePosition =
|
|
439
443
|
(typeof RelativePosition)[keyof typeof RelativePosition];
|
|
440
444
|
export interface Transition {
|
|
441
|
-
DurationMillis?: number;
|
|
445
|
+
DurationMillis?: number | undefined;
|
|
442
446
|
RelativePosition: RelativePosition | undefined;
|
|
443
|
-
RelativeProgram?: string;
|
|
444
|
-
ScheduledStartTimeMillis?: number;
|
|
447
|
+
RelativeProgram?: string | undefined;
|
|
448
|
+
ScheduledStartTimeMillis?: number | undefined;
|
|
445
449
|
Type: string | undefined;
|
|
446
450
|
}
|
|
447
451
|
export interface ScheduleConfiguration {
|
|
448
452
|
Transition: Transition | undefined;
|
|
449
|
-
ClipRange?: ClipRange;
|
|
453
|
+
ClipRange?: ClipRange | undefined;
|
|
450
454
|
}
|
|
451
455
|
export interface CreateProgramRequest {
|
|
452
|
-
AdBreaks?: AdBreak[];
|
|
456
|
+
AdBreaks?: AdBreak[] | undefined;
|
|
453
457
|
ChannelName: string | undefined;
|
|
454
|
-
LiveSourceName?: string;
|
|
458
|
+
LiveSourceName?: string | undefined;
|
|
455
459
|
ProgramName: string | undefined;
|
|
456
460
|
ScheduleConfiguration: ScheduleConfiguration | undefined;
|
|
457
461
|
SourceLocationName: string | undefined;
|
|
458
|
-
VodSourceName?: string;
|
|
459
|
-
AudienceMedia?: AudienceMedia[];
|
|
462
|
+
VodSourceName?: string | undefined;
|
|
463
|
+
AudienceMedia?: AudienceMedia[] | undefined;
|
|
460
464
|
}
|
|
461
465
|
export interface CreateProgramResponse {
|
|
462
|
-
AdBreaks?: AdBreak[];
|
|
463
|
-
Arn?: string;
|
|
464
|
-
ChannelName?: string;
|
|
465
|
-
CreationTime?: Date;
|
|
466
|
-
LiveSourceName?: string;
|
|
467
|
-
ProgramName?: string;
|
|
468
|
-
ScheduledStartTime?: Date;
|
|
469
|
-
SourceLocationName?: string;
|
|
470
|
-
VodSourceName?: string;
|
|
471
|
-
ClipRange?: ClipRange;
|
|
472
|
-
DurationMillis?: number;
|
|
473
|
-
AudienceMedia?: AudienceMedia[];
|
|
466
|
+
AdBreaks?: AdBreak[] | undefined;
|
|
467
|
+
Arn?: string | undefined;
|
|
468
|
+
ChannelName?: string | undefined;
|
|
469
|
+
CreationTime?: Date | undefined;
|
|
470
|
+
LiveSourceName?: string | undefined;
|
|
471
|
+
ProgramName?: string | undefined;
|
|
472
|
+
ScheduledStartTime?: Date | undefined;
|
|
473
|
+
SourceLocationName?: string | undefined;
|
|
474
|
+
VodSourceName?: string | undefined;
|
|
475
|
+
ClipRange?: ClipRange | undefined;
|
|
476
|
+
DurationMillis?: number | undefined;
|
|
477
|
+
AudienceMedia?: AudienceMedia[] | undefined;
|
|
474
478
|
}
|
|
475
479
|
export interface DeleteProgramRequest {
|
|
476
480
|
ChannelName: string | undefined;
|
|
@@ -482,47 +486,47 @@ export interface DescribeProgramRequest {
|
|
|
482
486
|
ProgramName: string | undefined;
|
|
483
487
|
}
|
|
484
488
|
export interface DescribeProgramResponse {
|
|
485
|
-
AdBreaks?: AdBreak[];
|
|
486
|
-
Arn?: string;
|
|
487
|
-
ChannelName?: string;
|
|
488
|
-
CreationTime?: Date;
|
|
489
|
-
LiveSourceName?: string;
|
|
490
|
-
ProgramName?: string;
|
|
491
|
-
ScheduledStartTime?: Date;
|
|
492
|
-
SourceLocationName?: string;
|
|
493
|
-
VodSourceName?: string;
|
|
494
|
-
ClipRange?: ClipRange;
|
|
495
|
-
DurationMillis?: number;
|
|
496
|
-
AudienceMedia?: AudienceMedia[];
|
|
489
|
+
AdBreaks?: AdBreak[] | undefined;
|
|
490
|
+
Arn?: string | undefined;
|
|
491
|
+
ChannelName?: string | undefined;
|
|
492
|
+
CreationTime?: Date | undefined;
|
|
493
|
+
LiveSourceName?: string | undefined;
|
|
494
|
+
ProgramName?: string | undefined;
|
|
495
|
+
ScheduledStartTime?: Date | undefined;
|
|
496
|
+
SourceLocationName?: string | undefined;
|
|
497
|
+
VodSourceName?: string | undefined;
|
|
498
|
+
ClipRange?: ClipRange | undefined;
|
|
499
|
+
DurationMillis?: number | undefined;
|
|
500
|
+
AudienceMedia?: AudienceMedia[] | undefined;
|
|
497
501
|
}
|
|
498
502
|
export interface UpdateProgramTransition {
|
|
499
|
-
ScheduledStartTimeMillis?: number;
|
|
500
|
-
DurationMillis?: number;
|
|
503
|
+
ScheduledStartTimeMillis?: number | undefined;
|
|
504
|
+
DurationMillis?: number | undefined;
|
|
501
505
|
}
|
|
502
506
|
export interface UpdateProgramScheduleConfiguration {
|
|
503
|
-
Transition?: UpdateProgramTransition;
|
|
504
|
-
ClipRange?: ClipRange;
|
|
507
|
+
Transition?: UpdateProgramTransition | undefined;
|
|
508
|
+
ClipRange?: ClipRange | undefined;
|
|
505
509
|
}
|
|
506
510
|
export interface UpdateProgramRequest {
|
|
507
|
-
AdBreaks?: AdBreak[];
|
|
511
|
+
AdBreaks?: AdBreak[] | undefined;
|
|
508
512
|
ChannelName: string | undefined;
|
|
509
513
|
ProgramName: string | undefined;
|
|
510
514
|
ScheduleConfiguration: UpdateProgramScheduleConfiguration | undefined;
|
|
511
|
-
AudienceMedia?: AudienceMedia[];
|
|
515
|
+
AudienceMedia?: AudienceMedia[] | undefined;
|
|
512
516
|
}
|
|
513
517
|
export interface UpdateProgramResponse {
|
|
514
|
-
AdBreaks?: AdBreak[];
|
|
515
|
-
Arn?: string;
|
|
516
|
-
ChannelName?: string;
|
|
517
|
-
CreationTime?: Date;
|
|
518
|
-
ProgramName?: string;
|
|
519
|
-
SourceLocationName?: string;
|
|
520
|
-
VodSourceName?: string;
|
|
521
|
-
LiveSourceName?: string;
|
|
522
|
-
ClipRange?: ClipRange;
|
|
523
|
-
DurationMillis?: number;
|
|
524
|
-
ScheduledStartTime?: Date;
|
|
525
|
-
AudienceMedia?: AudienceMedia[];
|
|
518
|
+
AdBreaks?: AdBreak[] | undefined;
|
|
519
|
+
Arn?: string | undefined;
|
|
520
|
+
ChannelName?: string | undefined;
|
|
521
|
+
CreationTime?: Date | undefined;
|
|
522
|
+
ProgramName?: string | undefined;
|
|
523
|
+
SourceLocationName?: string | undefined;
|
|
524
|
+
VodSourceName?: string | undefined;
|
|
525
|
+
LiveSourceName?: string | undefined;
|
|
526
|
+
ClipRange?: ClipRange | undefined;
|
|
527
|
+
DurationMillis?: number | undefined;
|
|
528
|
+
ScheduledStartTime?: Date | undefined;
|
|
529
|
+
AudienceMedia?: AudienceMedia[] | undefined;
|
|
526
530
|
}
|
|
527
531
|
export interface StartChannelRequest {
|
|
528
532
|
ChannelName: string | undefined;
|
|
@@ -534,24 +538,24 @@ export interface StopChannelRequest {
|
|
|
534
538
|
export interface StopChannelResponse {}
|
|
535
539
|
export interface UpdateChannelRequest {
|
|
536
540
|
ChannelName: string | undefined;
|
|
537
|
-
FillerSlate?: SlateSource;
|
|
541
|
+
FillerSlate?: SlateSource | undefined;
|
|
538
542
|
Outputs: RequestOutputItem[] | undefined;
|
|
539
|
-
TimeShiftConfiguration?: TimeShiftConfiguration;
|
|
540
|
-
Audiences?: string[];
|
|
543
|
+
TimeShiftConfiguration?: TimeShiftConfiguration | undefined;
|
|
544
|
+
Audiences?: string[] | undefined;
|
|
541
545
|
}
|
|
542
546
|
export interface UpdateChannelResponse {
|
|
543
|
-
Arn?: string;
|
|
544
|
-
ChannelName?: string;
|
|
545
|
-
ChannelState?: ChannelState;
|
|
546
|
-
CreationTime?: Date;
|
|
547
|
-
FillerSlate?: SlateSource;
|
|
548
|
-
LastModifiedTime?: Date;
|
|
549
|
-
Outputs?: ResponseOutputItem[];
|
|
550
|
-
PlaybackMode?: string;
|
|
551
|
-
Tags?: Record<string, string
|
|
552
|
-
Tier?: string;
|
|
553
|
-
TimeShiftConfiguration?: TimeShiftConfiguration;
|
|
554
|
-
Audiences?: string[];
|
|
547
|
+
Arn?: string | undefined;
|
|
548
|
+
ChannelName?: string | undefined;
|
|
549
|
+
ChannelState?: ChannelState | undefined;
|
|
550
|
+
CreationTime?: Date | undefined;
|
|
551
|
+
FillerSlate?: SlateSource | undefined;
|
|
552
|
+
LastModifiedTime?: Date | undefined;
|
|
553
|
+
Outputs?: ResponseOutputItem[] | undefined;
|
|
554
|
+
PlaybackMode?: string | undefined;
|
|
555
|
+
Tags?: Record<string, string> | undefined;
|
|
556
|
+
Tier?: string | undefined;
|
|
557
|
+
TimeShiftConfiguration?: TimeShiftConfiguration | undefined;
|
|
558
|
+
Audiences?: string[] | undefined;
|
|
555
559
|
}
|
|
556
560
|
export interface ConfigureLogsForPlaybackConfigurationRequest {
|
|
557
561
|
PercentEnabled: number | undefined;
|
|
@@ -559,75 +563,79 @@ export interface ConfigureLogsForPlaybackConfigurationRequest {
|
|
|
559
563
|
}
|
|
560
564
|
export interface ConfigureLogsForPlaybackConfigurationResponse {
|
|
561
565
|
PercentEnabled: number | undefined;
|
|
562
|
-
PlaybackConfigurationName?: string;
|
|
566
|
+
PlaybackConfigurationName?: string | undefined;
|
|
563
567
|
}
|
|
564
568
|
export interface CreateLiveSourceRequest {
|
|
565
569
|
HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
|
|
566
570
|
LiveSourceName: string | undefined;
|
|
567
571
|
SourceLocationName: string | undefined;
|
|
568
|
-
Tags?: Record<string, string
|
|
572
|
+
Tags?: Record<string, string> | undefined;
|
|
569
573
|
}
|
|
570
574
|
export interface CreateLiveSourceResponse {
|
|
571
|
-
Arn?: string;
|
|
572
|
-
CreationTime?: Date;
|
|
573
|
-
HttpPackageConfigurations?: HttpPackageConfiguration[];
|
|
574
|
-
LastModifiedTime?: Date;
|
|
575
|
-
LiveSourceName?: string;
|
|
576
|
-
SourceLocationName?: string;
|
|
577
|
-
Tags?: Record<string, string
|
|
575
|
+
Arn?: string | undefined;
|
|
576
|
+
CreationTime?: Date | undefined;
|
|
577
|
+
HttpPackageConfigurations?: HttpPackageConfiguration[] | undefined;
|
|
578
|
+
LastModifiedTime?: Date | undefined;
|
|
579
|
+
LiveSourceName?: string | undefined;
|
|
580
|
+
SourceLocationName?: string | undefined;
|
|
581
|
+
Tags?: Record<string, string> | undefined;
|
|
578
582
|
}
|
|
579
583
|
export interface CreatePrefetchScheduleRequest {
|
|
580
584
|
Consumption: PrefetchConsumption | undefined;
|
|
581
585
|
Name: string | undefined;
|
|
582
586
|
PlaybackConfigurationName: string | undefined;
|
|
583
587
|
Retrieval: PrefetchRetrieval | undefined;
|
|
584
|
-
StreamId?: string;
|
|
588
|
+
StreamId?: string | undefined;
|
|
585
589
|
}
|
|
586
590
|
export interface CreatePrefetchScheduleResponse {
|
|
587
|
-
Arn?: string;
|
|
588
|
-
Consumption?: PrefetchConsumption;
|
|
589
|
-
Name?: string;
|
|
590
|
-
PlaybackConfigurationName?: string;
|
|
591
|
-
Retrieval?: PrefetchRetrieval;
|
|
592
|
-
StreamId?: string;
|
|
591
|
+
Arn?: string | undefined;
|
|
592
|
+
Consumption?: PrefetchConsumption | undefined;
|
|
593
|
+
Name?: string | undefined;
|
|
594
|
+
PlaybackConfigurationName?: string | undefined;
|
|
595
|
+
Retrieval?: PrefetchRetrieval | undefined;
|
|
596
|
+
StreamId?: string | undefined;
|
|
593
597
|
}
|
|
594
598
|
export interface CreateSourceLocationRequest {
|
|
595
|
-
AccessConfiguration?: AccessConfiguration;
|
|
596
|
-
DefaultSegmentDeliveryConfiguration?:
|
|
599
|
+
AccessConfiguration?: AccessConfiguration | undefined;
|
|
600
|
+
DefaultSegmentDeliveryConfiguration?:
|
|
601
|
+
| DefaultSegmentDeliveryConfiguration
|
|
602
|
+
| undefined;
|
|
597
603
|
HttpConfiguration: HttpConfiguration | undefined;
|
|
598
|
-
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
|
|
604
|
+
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[] | undefined;
|
|
599
605
|
SourceLocationName: string | undefined;
|
|
600
|
-
Tags?: Record<string, string
|
|
606
|
+
Tags?: Record<string, string> | undefined;
|
|
601
607
|
}
|
|
602
608
|
export interface CreateSourceLocationResponse {
|
|
603
|
-
AccessConfiguration?: AccessConfiguration;
|
|
604
|
-
Arn?: string;
|
|
605
|
-
CreationTime?: Date;
|
|
606
|
-
DefaultSegmentDeliveryConfiguration?:
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
609
|
+
AccessConfiguration?: AccessConfiguration | undefined;
|
|
610
|
+
Arn?: string | undefined;
|
|
611
|
+
CreationTime?: Date | undefined;
|
|
612
|
+
DefaultSegmentDeliveryConfiguration?:
|
|
613
|
+
| DefaultSegmentDeliveryConfiguration
|
|
614
|
+
| undefined;
|
|
615
|
+
HttpConfiguration?: HttpConfiguration | undefined;
|
|
616
|
+
LastModifiedTime?: Date | undefined;
|
|
617
|
+
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[] | undefined;
|
|
618
|
+
SourceLocationName?: string | undefined;
|
|
619
|
+
Tags?: Record<string, string> | undefined;
|
|
612
620
|
}
|
|
613
621
|
export interface CreateVodSourceRequest {
|
|
614
622
|
HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
|
|
615
623
|
SourceLocationName: string | undefined;
|
|
616
|
-
Tags?: Record<string, string
|
|
624
|
+
Tags?: Record<string, string> | undefined;
|
|
617
625
|
VodSourceName: string | undefined;
|
|
618
626
|
}
|
|
619
627
|
export interface CreateVodSourceResponse {
|
|
620
|
-
Arn?: string;
|
|
621
|
-
CreationTime?: Date;
|
|
622
|
-
HttpPackageConfigurations?: HttpPackageConfiguration[];
|
|
623
|
-
LastModifiedTime?: Date;
|
|
624
|
-
SourceLocationName?: string;
|
|
625
|
-
Tags?: Record<string, string
|
|
626
|
-
VodSourceName?: string;
|
|
628
|
+
Arn?: string | undefined;
|
|
629
|
+
CreationTime?: Date | undefined;
|
|
630
|
+
HttpPackageConfigurations?: HttpPackageConfiguration[] | undefined;
|
|
631
|
+
LastModifiedTime?: Date | undefined;
|
|
632
|
+
SourceLocationName?: string | undefined;
|
|
633
|
+
Tags?: Record<string, string> | undefined;
|
|
634
|
+
VodSourceName?: string | undefined;
|
|
627
635
|
}
|
|
628
636
|
export interface DashConfigurationForPut {
|
|
629
|
-
MpdLocation?: string;
|
|
630
|
-
OriginManifestType?: OriginManifestType;
|
|
637
|
+
MpdLocation?: string | undefined;
|
|
638
|
+
OriginManifestType?: OriginManifestType | undefined;
|
|
631
639
|
}
|
|
632
640
|
export interface DeleteLiveSourceRequest {
|
|
633
641
|
LiveSourceName: string | undefined;
|
|
@@ -657,137 +665,139 @@ export interface DescribeLiveSourceRequest {
|
|
|
657
665
|
SourceLocationName: string | undefined;
|
|
658
666
|
}
|
|
659
667
|
export interface DescribeLiveSourceResponse {
|
|
660
|
-
Arn?: string;
|
|
661
|
-
CreationTime?: Date;
|
|
662
|
-
HttpPackageConfigurations?: HttpPackageConfiguration[];
|
|
663
|
-
LastModifiedTime?: Date;
|
|
664
|
-
LiveSourceName?: string;
|
|
665
|
-
SourceLocationName?: string;
|
|
666
|
-
Tags?: Record<string, string
|
|
668
|
+
Arn?: string | undefined;
|
|
669
|
+
CreationTime?: Date | undefined;
|
|
670
|
+
HttpPackageConfigurations?: HttpPackageConfiguration[] | undefined;
|
|
671
|
+
LastModifiedTime?: Date | undefined;
|
|
672
|
+
LiveSourceName?: string | undefined;
|
|
673
|
+
SourceLocationName?: string | undefined;
|
|
674
|
+
Tags?: Record<string, string> | undefined;
|
|
667
675
|
}
|
|
668
676
|
export interface DescribeSourceLocationRequest {
|
|
669
677
|
SourceLocationName: string | undefined;
|
|
670
678
|
}
|
|
671
679
|
export interface DescribeSourceLocationResponse {
|
|
672
|
-
AccessConfiguration?: AccessConfiguration;
|
|
673
|
-
Arn?: string;
|
|
674
|
-
CreationTime?: Date;
|
|
675
|
-
DefaultSegmentDeliveryConfiguration?:
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
680
|
+
AccessConfiguration?: AccessConfiguration | undefined;
|
|
681
|
+
Arn?: string | undefined;
|
|
682
|
+
CreationTime?: Date | undefined;
|
|
683
|
+
DefaultSegmentDeliveryConfiguration?:
|
|
684
|
+
| DefaultSegmentDeliveryConfiguration
|
|
685
|
+
| undefined;
|
|
686
|
+
HttpConfiguration?: HttpConfiguration | undefined;
|
|
687
|
+
LastModifiedTime?: Date | undefined;
|
|
688
|
+
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[] | undefined;
|
|
689
|
+
SourceLocationName?: string | undefined;
|
|
690
|
+
Tags?: Record<string, string> | undefined;
|
|
681
691
|
}
|
|
682
692
|
export interface DescribeVodSourceRequest {
|
|
683
693
|
SourceLocationName: string | undefined;
|
|
684
694
|
VodSourceName: string | undefined;
|
|
685
695
|
}
|
|
686
696
|
export interface DescribeVodSourceResponse {
|
|
687
|
-
AdBreakOpportunities?: AdBreakOpportunity[];
|
|
688
|
-
Arn?: string;
|
|
689
|
-
CreationTime?: Date;
|
|
690
|
-
HttpPackageConfigurations?: HttpPackageConfiguration[];
|
|
691
|
-
LastModifiedTime?: Date;
|
|
692
|
-
SourceLocationName?: string;
|
|
693
|
-
Tags?: Record<string, string
|
|
694
|
-
VodSourceName?: string;
|
|
697
|
+
AdBreakOpportunities?: AdBreakOpportunity[] | undefined;
|
|
698
|
+
Arn?: string | undefined;
|
|
699
|
+
CreationTime?: Date | undefined;
|
|
700
|
+
HttpPackageConfigurations?: HttpPackageConfiguration[] | undefined;
|
|
701
|
+
LastModifiedTime?: Date | undefined;
|
|
702
|
+
SourceLocationName?: string | undefined;
|
|
703
|
+
Tags?: Record<string, string> | undefined;
|
|
704
|
+
VodSourceName?: string | undefined;
|
|
695
705
|
}
|
|
696
706
|
export interface GetPlaybackConfigurationRequest {
|
|
697
707
|
Name: string | undefined;
|
|
698
708
|
}
|
|
699
709
|
export interface GetPlaybackConfigurationResponse {
|
|
700
|
-
AdDecisionServerUrl?: string;
|
|
701
|
-
AvailSuppression?: AvailSuppression;
|
|
702
|
-
Bumper?: Bumper;
|
|
703
|
-
CdnConfiguration?: CdnConfiguration;
|
|
704
|
-
ConfigurationAliases?: Record<string, Record<string, string
|
|
705
|
-
DashConfiguration?: DashConfiguration;
|
|
706
|
-
HlsConfiguration?: HlsConfiguration;
|
|
707
|
-
InsertionMode?: InsertionMode;
|
|
708
|
-
LivePreRollConfiguration?: LivePreRollConfiguration;
|
|
709
|
-
LogConfiguration?: LogConfiguration;
|
|
710
|
-
ManifestProcessingRules?: ManifestProcessingRules;
|
|
711
|
-
Name?: string;
|
|
712
|
-
PersonalizationThresholdSeconds?: number;
|
|
713
|
-
PlaybackConfigurationArn?: string;
|
|
714
|
-
PlaybackEndpointPrefix?: string;
|
|
715
|
-
SessionInitializationEndpointPrefix?: string;
|
|
716
|
-
SlateAdUrl?: string;
|
|
717
|
-
Tags?: Record<string, string
|
|
718
|
-
TranscodeProfileName?: string;
|
|
719
|
-
VideoContentSourceUrl?: string;
|
|
710
|
+
AdDecisionServerUrl?: string | undefined;
|
|
711
|
+
AvailSuppression?: AvailSuppression | undefined;
|
|
712
|
+
Bumper?: Bumper | undefined;
|
|
713
|
+
CdnConfiguration?: CdnConfiguration | undefined;
|
|
714
|
+
ConfigurationAliases?: Record<string, Record<string, string>> | undefined;
|
|
715
|
+
DashConfiguration?: DashConfiguration | undefined;
|
|
716
|
+
HlsConfiguration?: HlsConfiguration | undefined;
|
|
717
|
+
InsertionMode?: InsertionMode | undefined;
|
|
718
|
+
LivePreRollConfiguration?: LivePreRollConfiguration | undefined;
|
|
719
|
+
LogConfiguration?: LogConfiguration | undefined;
|
|
720
|
+
ManifestProcessingRules?: ManifestProcessingRules | undefined;
|
|
721
|
+
Name?: string | undefined;
|
|
722
|
+
PersonalizationThresholdSeconds?: number | undefined;
|
|
723
|
+
PlaybackConfigurationArn?: string | undefined;
|
|
724
|
+
PlaybackEndpointPrefix?: string | undefined;
|
|
725
|
+
SessionInitializationEndpointPrefix?: string | undefined;
|
|
726
|
+
SlateAdUrl?: string | undefined;
|
|
727
|
+
Tags?: Record<string, string> | undefined;
|
|
728
|
+
TranscodeProfileName?: string | undefined;
|
|
729
|
+
VideoContentSourceUrl?: string | undefined;
|
|
720
730
|
}
|
|
721
731
|
export interface GetPrefetchScheduleRequest {
|
|
722
732
|
Name: string | undefined;
|
|
723
733
|
PlaybackConfigurationName: string | undefined;
|
|
724
734
|
}
|
|
725
735
|
export interface GetPrefetchScheduleResponse {
|
|
726
|
-
Arn?: string;
|
|
727
|
-
Consumption?: PrefetchConsumption;
|
|
728
|
-
Name?: string;
|
|
729
|
-
PlaybackConfigurationName?: string;
|
|
730
|
-
Retrieval?: PrefetchRetrieval;
|
|
731
|
-
StreamId?: string;
|
|
736
|
+
Arn?: string | undefined;
|
|
737
|
+
Consumption?: PrefetchConsumption | undefined;
|
|
738
|
+
Name?: string | undefined;
|
|
739
|
+
PlaybackConfigurationName?: string | undefined;
|
|
740
|
+
Retrieval?: PrefetchRetrieval | undefined;
|
|
741
|
+
StreamId?: string | undefined;
|
|
732
742
|
}
|
|
733
743
|
export interface ListAlertsRequest {
|
|
734
|
-
MaxResults?: number;
|
|
735
|
-
NextToken?: string;
|
|
744
|
+
MaxResults?: number | undefined;
|
|
745
|
+
NextToken?: string | undefined;
|
|
736
746
|
ResourceArn: string | undefined;
|
|
737
747
|
}
|
|
738
748
|
export interface ListAlertsResponse {
|
|
739
|
-
Items?: Alert[];
|
|
740
|
-
NextToken?: string;
|
|
749
|
+
Items?: Alert[] | undefined;
|
|
750
|
+
NextToken?: string | undefined;
|
|
741
751
|
}
|
|
742
752
|
export interface ListLiveSourcesRequest {
|
|
743
|
-
MaxResults?: number;
|
|
744
|
-
NextToken?: string;
|
|
753
|
+
MaxResults?: number | undefined;
|
|
754
|
+
NextToken?: string | undefined;
|
|
745
755
|
SourceLocationName: string | undefined;
|
|
746
756
|
}
|
|
747
757
|
export interface ListLiveSourcesResponse {
|
|
748
|
-
Items?: LiveSource[];
|
|
749
|
-
NextToken?: string;
|
|
758
|
+
Items?: LiveSource[] | undefined;
|
|
759
|
+
NextToken?: string | undefined;
|
|
750
760
|
}
|
|
751
761
|
export interface ListPlaybackConfigurationsRequest {
|
|
752
|
-
MaxResults?: number;
|
|
753
|
-
NextToken?: string;
|
|
762
|
+
MaxResults?: number | undefined;
|
|
763
|
+
NextToken?: string | undefined;
|
|
754
764
|
}
|
|
755
765
|
export interface ListPlaybackConfigurationsResponse {
|
|
756
|
-
Items?: PlaybackConfiguration[];
|
|
757
|
-
NextToken?: string;
|
|
766
|
+
Items?: PlaybackConfiguration[] | undefined;
|
|
767
|
+
NextToken?: string | undefined;
|
|
758
768
|
}
|
|
759
769
|
export interface ListPrefetchSchedulesRequest {
|
|
760
|
-
MaxResults?: number;
|
|
761
|
-
NextToken?: string;
|
|
770
|
+
MaxResults?: number | undefined;
|
|
771
|
+
NextToken?: string | undefined;
|
|
762
772
|
PlaybackConfigurationName: string | undefined;
|
|
763
|
-
StreamId?: string;
|
|
773
|
+
StreamId?: string | undefined;
|
|
764
774
|
}
|
|
765
775
|
export interface ListPrefetchSchedulesResponse {
|
|
766
|
-
Items?: PrefetchSchedule[];
|
|
767
|
-
NextToken?: string;
|
|
776
|
+
Items?: PrefetchSchedule[] | undefined;
|
|
777
|
+
NextToken?: string | undefined;
|
|
768
778
|
}
|
|
769
779
|
export interface ListSourceLocationsRequest {
|
|
770
|
-
MaxResults?: number;
|
|
771
|
-
NextToken?: string;
|
|
780
|
+
MaxResults?: number | undefined;
|
|
781
|
+
NextToken?: string | undefined;
|
|
772
782
|
}
|
|
773
783
|
export interface ListSourceLocationsResponse {
|
|
774
|
-
Items?: SourceLocation[];
|
|
775
|
-
NextToken?: string;
|
|
784
|
+
Items?: SourceLocation[] | undefined;
|
|
785
|
+
NextToken?: string | undefined;
|
|
776
786
|
}
|
|
777
787
|
export interface ListTagsForResourceRequest {
|
|
778
788
|
ResourceArn: string | undefined;
|
|
779
789
|
}
|
|
780
790
|
export interface ListTagsForResourceResponse {
|
|
781
|
-
Tags?: Record<string, string
|
|
791
|
+
Tags?: Record<string, string> | undefined;
|
|
782
792
|
}
|
|
783
793
|
export interface ListVodSourcesRequest {
|
|
784
|
-
MaxResults?: number;
|
|
785
|
-
NextToken?: string;
|
|
794
|
+
MaxResults?: number | undefined;
|
|
795
|
+
NextToken?: string | undefined;
|
|
786
796
|
SourceLocationName: string | undefined;
|
|
787
797
|
}
|
|
788
798
|
export interface ListVodSourcesResponse {
|
|
789
|
-
Items?: VodSource[];
|
|
790
|
-
NextToken?: string;
|
|
799
|
+
Items?: VodSource[] | undefined;
|
|
800
|
+
NextToken?: string | undefined;
|
|
791
801
|
}
|
|
792
802
|
export interface UpdateLiveSourceRequest {
|
|
793
803
|
HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
|
|
@@ -795,70 +805,74 @@ export interface UpdateLiveSourceRequest {
|
|
|
795
805
|
SourceLocationName: string | undefined;
|
|
796
806
|
}
|
|
797
807
|
export interface UpdateLiveSourceResponse {
|
|
798
|
-
Arn?: string;
|
|
799
|
-
CreationTime?: Date;
|
|
800
|
-
HttpPackageConfigurations?: HttpPackageConfiguration[];
|
|
801
|
-
LastModifiedTime?: Date;
|
|
802
|
-
LiveSourceName?: string;
|
|
803
|
-
SourceLocationName?: string;
|
|
804
|
-
Tags?: Record<string, string
|
|
808
|
+
Arn?: string | undefined;
|
|
809
|
+
CreationTime?: Date | undefined;
|
|
810
|
+
HttpPackageConfigurations?: HttpPackageConfiguration[] | undefined;
|
|
811
|
+
LastModifiedTime?: Date | undefined;
|
|
812
|
+
LiveSourceName?: string | undefined;
|
|
813
|
+
SourceLocationName?: string | undefined;
|
|
814
|
+
Tags?: Record<string, string> | undefined;
|
|
805
815
|
}
|
|
806
816
|
export interface PutPlaybackConfigurationRequest {
|
|
807
|
-
AdDecisionServerUrl?: string;
|
|
808
|
-
AvailSuppression?: AvailSuppression;
|
|
809
|
-
Bumper?: Bumper;
|
|
810
|
-
CdnConfiguration?: CdnConfiguration;
|
|
811
|
-
ConfigurationAliases?: Record<string, Record<string, string
|
|
812
|
-
DashConfiguration?: DashConfigurationForPut;
|
|
813
|
-
InsertionMode?: InsertionMode;
|
|
814
|
-
LivePreRollConfiguration?: LivePreRollConfiguration;
|
|
815
|
-
ManifestProcessingRules?: ManifestProcessingRules;
|
|
817
|
+
AdDecisionServerUrl?: string | undefined;
|
|
818
|
+
AvailSuppression?: AvailSuppression | undefined;
|
|
819
|
+
Bumper?: Bumper | undefined;
|
|
820
|
+
CdnConfiguration?: CdnConfiguration | undefined;
|
|
821
|
+
ConfigurationAliases?: Record<string, Record<string, string>> | undefined;
|
|
822
|
+
DashConfiguration?: DashConfigurationForPut | undefined;
|
|
823
|
+
InsertionMode?: InsertionMode | undefined;
|
|
824
|
+
LivePreRollConfiguration?: LivePreRollConfiguration | undefined;
|
|
825
|
+
ManifestProcessingRules?: ManifestProcessingRules | undefined;
|
|
816
826
|
Name: string | undefined;
|
|
817
|
-
PersonalizationThresholdSeconds?: number;
|
|
818
|
-
SlateAdUrl?: string;
|
|
819
|
-
Tags?: Record<string, string
|
|
820
|
-
TranscodeProfileName?: string;
|
|
821
|
-
VideoContentSourceUrl?: string;
|
|
827
|
+
PersonalizationThresholdSeconds?: number | undefined;
|
|
828
|
+
SlateAdUrl?: string | undefined;
|
|
829
|
+
Tags?: Record<string, string> | undefined;
|
|
830
|
+
TranscodeProfileName?: string | undefined;
|
|
831
|
+
VideoContentSourceUrl?: string | undefined;
|
|
822
832
|
}
|
|
823
833
|
export interface PutPlaybackConfigurationResponse {
|
|
824
|
-
AdDecisionServerUrl?: string;
|
|
825
|
-
AvailSuppression?: AvailSuppression;
|
|
826
|
-
Bumper?: Bumper;
|
|
827
|
-
CdnConfiguration?: CdnConfiguration;
|
|
828
|
-
ConfigurationAliases?: Record<string, Record<string, string
|
|
829
|
-
DashConfiguration?: DashConfiguration;
|
|
830
|
-
HlsConfiguration?: HlsConfiguration;
|
|
831
|
-
InsertionMode?: InsertionMode;
|
|
832
|
-
LivePreRollConfiguration?: LivePreRollConfiguration;
|
|
833
|
-
LogConfiguration?: LogConfiguration;
|
|
834
|
-
ManifestProcessingRules?: ManifestProcessingRules;
|
|
835
|
-
Name?: string;
|
|
836
|
-
PersonalizationThresholdSeconds?: number;
|
|
837
|
-
PlaybackConfigurationArn?: string;
|
|
838
|
-
PlaybackEndpointPrefix?: string;
|
|
839
|
-
SessionInitializationEndpointPrefix?: string;
|
|
840
|
-
SlateAdUrl?: string;
|
|
841
|
-
Tags?: Record<string, string
|
|
842
|
-
TranscodeProfileName?: string;
|
|
843
|
-
VideoContentSourceUrl?: string;
|
|
834
|
+
AdDecisionServerUrl?: string | undefined;
|
|
835
|
+
AvailSuppression?: AvailSuppression | undefined;
|
|
836
|
+
Bumper?: Bumper | undefined;
|
|
837
|
+
CdnConfiguration?: CdnConfiguration | undefined;
|
|
838
|
+
ConfigurationAliases?: Record<string, Record<string, string>> | undefined;
|
|
839
|
+
DashConfiguration?: DashConfiguration | undefined;
|
|
840
|
+
HlsConfiguration?: HlsConfiguration | undefined;
|
|
841
|
+
InsertionMode?: InsertionMode | undefined;
|
|
842
|
+
LivePreRollConfiguration?: LivePreRollConfiguration | undefined;
|
|
843
|
+
LogConfiguration?: LogConfiguration | undefined;
|
|
844
|
+
ManifestProcessingRules?: ManifestProcessingRules | undefined;
|
|
845
|
+
Name?: string | undefined;
|
|
846
|
+
PersonalizationThresholdSeconds?: number | undefined;
|
|
847
|
+
PlaybackConfigurationArn?: string | undefined;
|
|
848
|
+
PlaybackEndpointPrefix?: string | undefined;
|
|
849
|
+
SessionInitializationEndpointPrefix?: string | undefined;
|
|
850
|
+
SlateAdUrl?: string | undefined;
|
|
851
|
+
Tags?: Record<string, string> | undefined;
|
|
852
|
+
TranscodeProfileName?: string | undefined;
|
|
853
|
+
VideoContentSourceUrl?: string | undefined;
|
|
844
854
|
}
|
|
845
855
|
export interface UpdateSourceLocationRequest {
|
|
846
|
-
AccessConfiguration?: AccessConfiguration;
|
|
847
|
-
DefaultSegmentDeliveryConfiguration?:
|
|
856
|
+
AccessConfiguration?: AccessConfiguration | undefined;
|
|
857
|
+
DefaultSegmentDeliveryConfiguration?:
|
|
858
|
+
| DefaultSegmentDeliveryConfiguration
|
|
859
|
+
| undefined;
|
|
848
860
|
HttpConfiguration: HttpConfiguration | undefined;
|
|
849
|
-
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
|
|
861
|
+
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[] | undefined;
|
|
850
862
|
SourceLocationName: string | undefined;
|
|
851
863
|
}
|
|
852
864
|
export interface UpdateSourceLocationResponse {
|
|
853
|
-
AccessConfiguration?: AccessConfiguration;
|
|
854
|
-
Arn?: string;
|
|
855
|
-
CreationTime?: Date;
|
|
856
|
-
DefaultSegmentDeliveryConfiguration?:
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
865
|
+
AccessConfiguration?: AccessConfiguration | undefined;
|
|
866
|
+
Arn?: string | undefined;
|
|
867
|
+
CreationTime?: Date | undefined;
|
|
868
|
+
DefaultSegmentDeliveryConfiguration?:
|
|
869
|
+
| DefaultSegmentDeliveryConfiguration
|
|
870
|
+
| undefined;
|
|
871
|
+
HttpConfiguration?: HttpConfiguration | undefined;
|
|
872
|
+
LastModifiedTime?: Date | undefined;
|
|
873
|
+
SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[] | undefined;
|
|
874
|
+
SourceLocationName?: string | undefined;
|
|
875
|
+
Tags?: Record<string, string> | undefined;
|
|
862
876
|
}
|
|
863
877
|
export interface TagResourceRequest {
|
|
864
878
|
ResourceArn: string | undefined;
|
|
@@ -874,11 +888,11 @@ export interface UpdateVodSourceRequest {
|
|
|
874
888
|
VodSourceName: string | undefined;
|
|
875
889
|
}
|
|
876
890
|
export interface UpdateVodSourceResponse {
|
|
877
|
-
Arn?: string;
|
|
878
|
-
CreationTime?: Date;
|
|
879
|
-
HttpPackageConfigurations?: HttpPackageConfiguration[];
|
|
880
|
-
LastModifiedTime?: Date;
|
|
881
|
-
SourceLocationName?: string;
|
|
882
|
-
Tags?: Record<string, string
|
|
883
|
-
VodSourceName?: string;
|
|
891
|
+
Arn?: string | undefined;
|
|
892
|
+
CreationTime?: Date | undefined;
|
|
893
|
+
HttpPackageConfigurations?: HttpPackageConfiguration[] | undefined;
|
|
894
|
+
LastModifiedTime?: Date | undefined;
|
|
895
|
+
SourceLocationName?: string | undefined;
|
|
896
|
+
Tags?: Record<string, string> | undefined;
|
|
897
|
+
VodSourceName?: string | undefined;
|
|
884
898
|
}
|