@aws-sdk/client-chime-sdk-media-pipelines 3.145.0 → 3.154.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 +27 -0
- package/README.md +2 -4
- package/dist-cjs/ChimeSDKMediaPipelines.js +75 -0
- package/dist-cjs/commands/CreateMediaConcatenationPipelineCommand.js +36 -0
- package/dist-cjs/commands/CreateMediaLiveConnectorPipelineCommand.js +36 -0
- package/dist-cjs/commands/DeleteMediaPipelineCommand.js +36 -0
- package/dist-cjs/commands/GetMediaPipelineCommand.js +36 -0
- package/dist-cjs/commands/ListMediaPipelinesCommand.js +36 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +237 -1
- package/dist-cjs/pagination/ListMediaPipelinesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +878 -85
- package/dist-es/ChimeSDKMediaPipelines.js +75 -0
- package/dist-es/commands/CreateMediaConcatenationPipelineCommand.js +39 -0
- package/dist-es/commands/CreateMediaLiveConnectorPipelineCommand.js +39 -0
- package/dist-es/commands/DeleteMediaPipelineCommand.js +39 -0
- package/dist-es/commands/GetMediaPipelineCommand.js +39 -0
- package/dist-es/commands/ListMediaPipelinesCommand.js +39 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +111 -0
- package/dist-es/pagination/ListMediaPipelinesPaginator.js +75 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +912 -26
- package/dist-types/ChimeSDKMediaPipelines.d.ts +44 -11
- package/dist-types/ChimeSDKMediaPipelinesClient.d.ts +9 -6
- package/dist-types/commands/CreateMediaCapturePipelineCommand.d.ts +1 -1
- package/dist-types/commands/CreateMediaConcatenationPipelineCommand.d.ts +35 -0
- package/dist-types/commands/CreateMediaLiveConnectorPipelineCommand.d.ts +35 -0
- package/dist-types/commands/DeleteMediaCapturePipelineCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMediaPipelineCommand.d.ts +35 -0
- package/dist-types/commands/GetMediaCapturePipelineCommand.d.ts +1 -1
- package/dist-types/commands/GetMediaPipelineCommand.d.ts +35 -0
- package/dist-types/commands/ListMediaCapturePipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListMediaPipelinesCommand.d.ts +35 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +674 -39
- package/dist-types/pagination/ListMediaPipelinesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/ts3.4/ChimeSDKMediaPipelines.d.ts +25 -0
- package/dist-types/ts3.4/ChimeSDKMediaPipelinesClient.d.ts +7 -2
- package/dist-types/ts3.4/commands/CreateMediaConcatenationPipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateMediaLiveConnectorPipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteMediaPipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetMediaPipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListMediaPipelinesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +355 -1
- package/dist-types/ts3.4/pagination/ListMediaPipelinesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
- package/package.json +4 -4
|
@@ -1,8 +1,116 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ChimeSDKMediaPipelinesServiceException as __BaseException } from "./ChimeSDKMediaPipelinesServiceException";
|
|
3
|
+
export declare enum AudioArtifactsConcatenationState {
|
|
4
|
+
Enabled = "Enabled"
|
|
5
|
+
}
|
|
6
|
+
/**
|
|
7
|
+
* <p>The audio artifact concatenation configuration object.</p>
|
|
8
|
+
*/
|
|
9
|
+
export interface AudioConcatenationConfiguration {
|
|
10
|
+
/**
|
|
11
|
+
* <p>Enables the <i>name</i> object, where <i>name</i>
|
|
12
|
+
* is the name of the configuration object, such as <code>AudioConcatenation</code>.</p>
|
|
13
|
+
*/
|
|
14
|
+
State: AudioArtifactsConcatenationState | string | undefined;
|
|
15
|
+
}
|
|
16
|
+
export declare enum ArtifactsConcatenationState {
|
|
17
|
+
Disabled = "Disabled",
|
|
18
|
+
Enabled = "Enabled"
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* <p>The composited video configuration object for a specified
|
|
22
|
+
* media pipeline. <code>SourceType</code> must be
|
|
23
|
+
* <code>ChimeSdkMeeting</code>.</p>
|
|
24
|
+
*/
|
|
25
|
+
export interface CompositedVideoConcatenationConfiguration {
|
|
26
|
+
/**
|
|
27
|
+
* <p>Enables or disables the configuration object.</p>
|
|
28
|
+
*/
|
|
29
|
+
State: ArtifactsConcatenationState | string | undefined;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* <p>The composited content configuration object for a specified
|
|
33
|
+
* media pipeline. </p>
|
|
34
|
+
*/
|
|
35
|
+
export interface ContentConcatenationConfiguration {
|
|
36
|
+
/**
|
|
37
|
+
* <p>Enables or disables the configuration object.</p>
|
|
38
|
+
*/
|
|
39
|
+
State: ArtifactsConcatenationState | string | undefined;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* <p>The content configuration object's data channel.</p>
|
|
43
|
+
*/
|
|
44
|
+
export interface DataChannelConcatenationConfiguration {
|
|
45
|
+
/**
|
|
46
|
+
* <p>Enables or disables the configuration object.</p>
|
|
47
|
+
*/
|
|
48
|
+
State: ArtifactsConcatenationState | string | undefined;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* <p>The configuration object for an event concatenation pipeline.</p>
|
|
52
|
+
*/
|
|
53
|
+
export interface MeetingEventsConcatenationConfiguration {
|
|
54
|
+
/**
|
|
55
|
+
* <p>Enables or disables the configuration object.</p>
|
|
56
|
+
*/
|
|
57
|
+
State: ArtifactsConcatenationState | string | undefined;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* <p>The configuration object for concatenating transcription messages.</p>
|
|
61
|
+
*/
|
|
62
|
+
export interface TranscriptionMessagesConcatenationConfiguration {
|
|
63
|
+
/**
|
|
64
|
+
* <p>Enables or disables the configuration object.</p>
|
|
65
|
+
*/
|
|
66
|
+
State: ArtifactsConcatenationState | string | undefined;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* <p>The configuration object of a video contacatentation pipeline.</p>
|
|
70
|
+
*/
|
|
71
|
+
export interface VideoConcatenationConfiguration {
|
|
72
|
+
/**
|
|
73
|
+
* <p>Enables or disables the configuration object.</p>
|
|
74
|
+
*/
|
|
75
|
+
State: ArtifactsConcatenationState | string | undefined;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* <p>The configuration for the artifacts concatenation.</p>
|
|
79
|
+
*/
|
|
80
|
+
export interface ArtifactsConcatenationConfiguration {
|
|
81
|
+
/**
|
|
82
|
+
* <p>The configuration for the audio artifacts concatenation.</p>
|
|
83
|
+
*/
|
|
84
|
+
Audio: AudioConcatenationConfiguration | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* <p>The configuration for the video artifacts concatenation.</p>
|
|
87
|
+
*/
|
|
88
|
+
Video: VideoConcatenationConfiguration | undefined;
|
|
89
|
+
/**
|
|
90
|
+
* <p>The configuration for the content artifacts concatenation.</p>
|
|
91
|
+
*/
|
|
92
|
+
Content: ContentConcatenationConfiguration | undefined;
|
|
93
|
+
/**
|
|
94
|
+
* <p>The configuration for the data channel artifacts concatenation.</p>
|
|
95
|
+
*/
|
|
96
|
+
DataChannel: DataChannelConcatenationConfiguration | undefined;
|
|
97
|
+
/**
|
|
98
|
+
* <p>The configuration for the transcription messages artifacts concatenation.</p>
|
|
99
|
+
*/
|
|
100
|
+
TranscriptionMessages: TranscriptionMessagesConcatenationConfiguration | undefined;
|
|
101
|
+
/**
|
|
102
|
+
* <p>The configuration for the meeting events artifacts concatenation.</p>
|
|
103
|
+
*/
|
|
104
|
+
MeetingEvents: MeetingEventsConcatenationConfiguration | undefined;
|
|
105
|
+
/**
|
|
106
|
+
* <p>The configuration for the composited video artifacts concatenation.</p>
|
|
107
|
+
*/
|
|
108
|
+
CompositedVideo: CompositedVideoConcatenationConfiguration | undefined;
|
|
109
|
+
}
|
|
3
110
|
export declare enum AudioMuxType {
|
|
4
111
|
AudioOnly = "AudioOnly",
|
|
5
|
-
AudioWithActiveSpeakerVideo = "AudioWithActiveSpeakerVideo"
|
|
112
|
+
AudioWithActiveSpeakerVideo = "AudioWithActiveSpeakerVideo",
|
|
113
|
+
AudioWithCompositedVideo = "AudioWithCompositedVideo"
|
|
6
114
|
}
|
|
7
115
|
/**
|
|
8
116
|
* <p>The audio artifact configuration object.</p>
|
|
@@ -13,6 +121,63 @@ export interface AudioArtifactsConfiguration {
|
|
|
13
121
|
*/
|
|
14
122
|
MuxType: AudioMuxType | string | undefined;
|
|
15
123
|
}
|
|
124
|
+
export declare enum ContentShareLayoutOption {
|
|
125
|
+
Horizontal = "Horizontal",
|
|
126
|
+
PresenterOnly = "PresenterOnly",
|
|
127
|
+
Vertical = "Vertical"
|
|
128
|
+
}
|
|
129
|
+
export declare enum PresenterPosition {
|
|
130
|
+
BottomLeft = "BottomLeft",
|
|
131
|
+
BottomRight = "BottomRight",
|
|
132
|
+
TopLeft = "TopLeft",
|
|
133
|
+
TopRight = "TopRight"
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* <p>Defines the configuration for a presenter only video tile.</p>
|
|
137
|
+
*/
|
|
138
|
+
export interface PresenterOnlyConfiguration {
|
|
139
|
+
/**
|
|
140
|
+
* <p>Defines the position of the presenter video tile. Default: <code>TopRight</code>.</p>
|
|
141
|
+
*/
|
|
142
|
+
PresenterPosition?: PresenterPosition | string;
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* <p>Specifies the type of grid layout.</p>
|
|
146
|
+
*/
|
|
147
|
+
export interface GridViewConfiguration {
|
|
148
|
+
/**
|
|
149
|
+
* <p>Defines the layout of the video tiles when content sharing is enabled.</p>
|
|
150
|
+
*/
|
|
151
|
+
ContentShareLayout: ContentShareLayoutOption | string | undefined;
|
|
152
|
+
/**
|
|
153
|
+
* <p>Defines the configuration options for a presenter only video tile.</p>
|
|
154
|
+
*/
|
|
155
|
+
PresenterOnlyConfiguration?: PresenterOnlyConfiguration;
|
|
156
|
+
}
|
|
157
|
+
export declare enum LayoutOption {
|
|
158
|
+
GridView = "GridView"
|
|
159
|
+
}
|
|
160
|
+
export declare enum ResolutionOption {
|
|
161
|
+
FHD = "FHD",
|
|
162
|
+
HD = "HD"
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* <p>Describes the configuration for the composited video artifacts.</p>
|
|
166
|
+
*/
|
|
167
|
+
export interface CompositedVideoArtifactsConfiguration {
|
|
168
|
+
/**
|
|
169
|
+
* <p>The layout setting, such as <code>GridView</code> in the configuration object.</p>
|
|
170
|
+
*/
|
|
171
|
+
Layout?: LayoutOption | string;
|
|
172
|
+
/**
|
|
173
|
+
* <p>The video resolution setting in the configuration object. Default: HD at 1280 x 720. FHD resolution: 1920 x 1080.</p>
|
|
174
|
+
*/
|
|
175
|
+
Resolution?: ResolutionOption | string;
|
|
176
|
+
/**
|
|
177
|
+
* <p>The <code>GridView</code> configuration setting.</p>
|
|
178
|
+
*/
|
|
179
|
+
GridViewConfiguration: GridViewConfiguration | undefined;
|
|
180
|
+
}
|
|
16
181
|
export declare enum ContentMuxType {
|
|
17
182
|
ContentOnly = "ContentOnly"
|
|
18
183
|
}
|
|
@@ -65,6 +230,14 @@ export interface ArtifactsConfiguration {
|
|
|
65
230
|
* <p>The configuration for the content artifacts.</p>
|
|
66
231
|
*/
|
|
67
232
|
Content: ContentArtifactsConfiguration | undefined;
|
|
233
|
+
/**
|
|
234
|
+
* <p>Enables video compositing.</p>
|
|
235
|
+
*/
|
|
236
|
+
CompositedVideo?: CompositedVideoArtifactsConfiguration;
|
|
237
|
+
}
|
|
238
|
+
export declare enum AudioChannelsOption {
|
|
239
|
+
Mono = "Mono",
|
|
240
|
+
Stereo = "Stereo"
|
|
68
241
|
}
|
|
69
242
|
export declare enum ErrorCode {
|
|
70
243
|
BadRequest = "BadRequest",
|
|
@@ -93,33 +266,35 @@ export declare class BadRequestException extends __BaseException {
|
|
|
93
266
|
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
94
267
|
}
|
|
95
268
|
/**
|
|
96
|
-
* <p>The video streams
|
|
269
|
+
* <p>The video streams for a specified media pipeline. The total number of
|
|
270
|
+
* video streams can't exceed 25.</p>
|
|
97
271
|
*/
|
|
98
272
|
export interface SelectedVideoStreams {
|
|
99
273
|
/**
|
|
100
|
-
* <p>The attendee IDs of the streams selected for a media
|
|
274
|
+
* <p>The attendee IDs of the streams selected for a media pipeline. </p>
|
|
101
275
|
*/
|
|
102
276
|
AttendeeIds?: string[];
|
|
103
277
|
/**
|
|
104
|
-
* <p>The external user IDs of the streams selected for a media
|
|
278
|
+
* <p>The external user IDs of the streams selected for a media pipeline.</p>
|
|
105
279
|
*/
|
|
106
280
|
ExternalUserIds?: string[];
|
|
107
281
|
}
|
|
108
282
|
/**
|
|
109
|
-
* <p>Source configuration for a specified media
|
|
283
|
+
* <p>Source configuration for a specified media pipeline.</p>
|
|
110
284
|
*/
|
|
111
285
|
export interface SourceConfiguration {
|
|
112
286
|
/**
|
|
113
|
-
* <p>The selected video streams
|
|
287
|
+
* <p>The selected video streams for a specified media pipeline. The number
|
|
288
|
+
* of video streams can't exceed 25.</p>
|
|
114
289
|
*/
|
|
115
290
|
SelectedVideoStreams?: SelectedVideoStreams;
|
|
116
291
|
}
|
|
117
292
|
/**
|
|
118
|
-
* <p>The configuration object of the Amazon Chime SDK meeting for a specified media
|
|
293
|
+
* <p>The configuration object of the Amazon Chime SDK meeting for a specified media pipeline. <code>SourceType</code> must be <code>ChimeSdkMeeting</code>.</p>
|
|
119
294
|
*/
|
|
120
295
|
export interface ChimeSdkMeetingConfiguration {
|
|
121
296
|
/**
|
|
122
|
-
* <p>The source configuration for a specified media
|
|
297
|
+
* <p>The source configuration for a specified media pipline.</p>
|
|
123
298
|
*/
|
|
124
299
|
SourceConfiguration?: SourceConfiguration;
|
|
125
300
|
/**
|
|
@@ -134,22 +309,22 @@ export declare enum MediaPipelineSourceType {
|
|
|
134
309
|
ChimeSdkMeeting = "ChimeSdkMeeting"
|
|
135
310
|
}
|
|
136
311
|
/**
|
|
137
|
-
* <p>
|
|
312
|
+
* <p>A key/value pair that grants users access to meeting resources.</p>
|
|
138
313
|
*/
|
|
139
314
|
export interface Tag {
|
|
140
315
|
/**
|
|
141
|
-
* <p>The key of
|
|
316
|
+
* <p>The key half of a tag.</p>
|
|
142
317
|
*/
|
|
143
318
|
Key: string | undefined;
|
|
144
319
|
/**
|
|
145
|
-
* <p>The value of
|
|
320
|
+
* <p>The value half of a tag.</p>
|
|
146
321
|
*/
|
|
147
322
|
Value: string | undefined;
|
|
148
323
|
}
|
|
149
324
|
export interface CreateMediaCapturePipelineRequest {
|
|
150
325
|
/**
|
|
151
|
-
* <p>Source type from which the media artifacts are captured. A Chime SDK Meeting
|
|
152
|
-
*
|
|
326
|
+
* <p>Source type from which the media artifacts are captured. A Chime SDK Meeting is the only
|
|
327
|
+
* supported source.</p>
|
|
153
328
|
*/
|
|
154
329
|
SourceType: MediaPipelineSourceType | string | undefined;
|
|
155
330
|
/**
|
|
@@ -157,7 +332,7 @@ export interface CreateMediaCapturePipelineRequest {
|
|
|
157
332
|
*/
|
|
158
333
|
SourceArn: string | undefined;
|
|
159
334
|
/**
|
|
160
|
-
* <p>Destination type to which the media artifacts are saved. You must use an S3 bucket
|
|
335
|
+
* <p>Destination type to which the media artifacts are saved. You must use an S3 bucket.</p>
|
|
161
336
|
*/
|
|
162
337
|
SinkType: MediaPipelineSinkType | string | undefined;
|
|
163
338
|
/**
|
|
@@ -165,15 +340,16 @@ export interface CreateMediaCapturePipelineRequest {
|
|
|
165
340
|
*/
|
|
166
341
|
SinkArn: string | undefined;
|
|
167
342
|
/**
|
|
168
|
-
* <p>The
|
|
343
|
+
* <p>The unique identifier for the client request. The token makes the API request idempotent. Use a unique token for each media pipeline request.</p>
|
|
169
344
|
*/
|
|
170
345
|
ClientRequestToken?: string;
|
|
171
346
|
/**
|
|
172
|
-
* <p>The configuration for a specified media
|
|
347
|
+
* <p>The configuration for a specified media pipeline. <code>SourceType</code> must
|
|
348
|
+
* be <code>ChimeSdkMeeting</code>.</p>
|
|
173
349
|
*/
|
|
174
350
|
ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration;
|
|
175
351
|
/**
|
|
176
|
-
* <p>The
|
|
352
|
+
* <p>The tag key-value pairs.</p>
|
|
177
353
|
*/
|
|
178
354
|
Tags?: Tag[];
|
|
179
355
|
}
|
|
@@ -185,19 +361,21 @@ export declare enum MediaPipelineStatus {
|
|
|
185
361
|
Stopping = "Stopping"
|
|
186
362
|
}
|
|
187
363
|
/**
|
|
188
|
-
* <p>A media
|
|
364
|
+
* <p>A media pipeline object consisting of an ID, source type, source ARN, a sink
|
|
365
|
+
* type, a sink ARN, and a configuration object.</p>
|
|
189
366
|
*/
|
|
190
367
|
export interface MediaCapturePipeline {
|
|
191
368
|
/**
|
|
192
|
-
* <p>The ID of a media
|
|
369
|
+
* <p>The ID of a media pipeline.</p>
|
|
193
370
|
*/
|
|
194
371
|
MediaPipelineId?: string;
|
|
195
372
|
/**
|
|
196
|
-
* <p>The ARN of
|
|
373
|
+
* <p>The ARN of the media capture pipeline</p>
|
|
197
374
|
*/
|
|
198
375
|
MediaPipelineArn?: string;
|
|
199
376
|
/**
|
|
200
|
-
* <p>Source type from which media artifacts are saved. You must use
|
|
377
|
+
* <p>Source type from which media artifacts are saved. You must use
|
|
378
|
+
* <code>ChimeMeeting</code>.</p>
|
|
201
379
|
*/
|
|
202
380
|
SourceType?: MediaPipelineSourceType | string;
|
|
203
381
|
/**
|
|
@@ -205,11 +383,12 @@ export interface MediaCapturePipeline {
|
|
|
205
383
|
*/
|
|
206
384
|
SourceArn?: string;
|
|
207
385
|
/**
|
|
208
|
-
* <p>The status of the media
|
|
386
|
+
* <p>The status of the media pipeline.</p>
|
|
209
387
|
*/
|
|
210
388
|
Status?: MediaPipelineStatus | string;
|
|
211
389
|
/**
|
|
212
|
-
* <p>Destination type to which the media artifacts are saved. You must use an S3
|
|
390
|
+
* <p>Destination type to which the media artifacts are saved. You must use an S3
|
|
391
|
+
* Bucket.</p>
|
|
213
392
|
*/
|
|
214
393
|
SinkType?: MediaPipelineSinkType | string;
|
|
215
394
|
/**
|
|
@@ -217,21 +396,23 @@ export interface MediaCapturePipeline {
|
|
|
217
396
|
*/
|
|
218
397
|
SinkArn?: string;
|
|
219
398
|
/**
|
|
220
|
-
* <p>The time at which the
|
|
399
|
+
* <p>The time at which the pipeline was created, in ISO 8601 format.</p>
|
|
221
400
|
*/
|
|
222
401
|
CreatedTimestamp?: Date;
|
|
223
402
|
/**
|
|
224
|
-
* <p>The time at which the
|
|
403
|
+
* <p>The time at which the pipeline was updated, in ISO 8601 format.</p>
|
|
225
404
|
*/
|
|
226
405
|
UpdatedTimestamp?: Date;
|
|
227
406
|
/**
|
|
228
|
-
* <p>The configuration for a specified media
|
|
407
|
+
* <p>The configuration for a specified media pipeline. <code>SourceType</code> must
|
|
408
|
+
* be <code>ChimeSdkMeeting</code>.</p>
|
|
229
409
|
*/
|
|
230
410
|
ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration;
|
|
231
411
|
}
|
|
232
412
|
export interface CreateMediaCapturePipelineResponse {
|
|
233
413
|
/**
|
|
234
|
-
* <p>A media
|
|
414
|
+
* <p>A media pipeline object, the ID, source type, source ARN, sink type, and sink
|
|
415
|
+
* ARN of a media pipeline object.</p>
|
|
235
416
|
*/
|
|
236
417
|
MediaCapturePipeline?: MediaCapturePipeline;
|
|
237
418
|
}
|
|
@@ -337,9 +518,263 @@ export declare class UnauthorizedClientException extends __BaseException {
|
|
|
337
518
|
*/
|
|
338
519
|
constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
|
|
339
520
|
}
|
|
521
|
+
/**
|
|
522
|
+
* <p>The configuration settings for the S3 bucket.</p>
|
|
523
|
+
*/
|
|
524
|
+
export interface S3BucketSinkConfiguration {
|
|
525
|
+
/**
|
|
526
|
+
* <p>The destination URL of the S3 bucket.</p>
|
|
527
|
+
*/
|
|
528
|
+
Destination: string | undefined;
|
|
529
|
+
}
|
|
530
|
+
export declare enum ConcatenationSinkType {
|
|
531
|
+
S3Bucket = "S3Bucket"
|
|
532
|
+
}
|
|
533
|
+
/**
|
|
534
|
+
* <p>The data sink of the configuration object.</p>
|
|
535
|
+
*/
|
|
536
|
+
export interface ConcatenationSink {
|
|
537
|
+
/**
|
|
538
|
+
* <p>The type of data sink in the configuration object.</p>
|
|
539
|
+
*/
|
|
540
|
+
Type: ConcatenationSinkType | string | undefined;
|
|
541
|
+
/**
|
|
542
|
+
* <p>The configuration settings for an Amazon S3 bucket sink.</p>
|
|
543
|
+
*/
|
|
544
|
+
S3BucketSinkConfiguration: S3BucketSinkConfiguration | undefined;
|
|
545
|
+
}
|
|
546
|
+
/**
|
|
547
|
+
* <p>The configuration object of the Amazon Chime SDK meeting concatenation for a specified
|
|
548
|
+
* media pipeline.</p>
|
|
549
|
+
*/
|
|
550
|
+
export interface ChimeSdkMeetingConcatenationConfiguration {
|
|
551
|
+
/**
|
|
552
|
+
* <p>The configuration for the artifacts in an Amazon Chime SDK meeting concatenation.</p>
|
|
553
|
+
*/
|
|
554
|
+
ArtifactsConfiguration: ArtifactsConcatenationConfiguration | undefined;
|
|
555
|
+
}
|
|
556
|
+
/**
|
|
557
|
+
* <p>The source configuration object of a media capture pipeline.</p>
|
|
558
|
+
*/
|
|
559
|
+
export interface MediaCapturePipelineSourceConfiguration {
|
|
560
|
+
/**
|
|
561
|
+
* <p>The media pipeline ARN in the configuration object of a media capture pipeline.</p>
|
|
562
|
+
*/
|
|
563
|
+
MediaPipelineArn: string | undefined;
|
|
564
|
+
/**
|
|
565
|
+
* <p>The meeting configuration settings in a media capture pipeline configuration object. </p>
|
|
566
|
+
*/
|
|
567
|
+
ChimeSdkMeetingConfiguration: ChimeSdkMeetingConcatenationConfiguration | undefined;
|
|
568
|
+
}
|
|
569
|
+
export declare enum ConcatenationSourceType {
|
|
570
|
+
MediaCapturePipeline = "MediaCapturePipeline"
|
|
571
|
+
}
|
|
572
|
+
/**
|
|
573
|
+
* <p>The source type and media pipeline configuration settings in a configuration object.</p>
|
|
574
|
+
*/
|
|
575
|
+
export interface ConcatenationSource {
|
|
576
|
+
/**
|
|
577
|
+
* <p>The type of concatenation source in a configuration object.</p>
|
|
578
|
+
*/
|
|
579
|
+
Type: ConcatenationSourceType | string | undefined;
|
|
580
|
+
/**
|
|
581
|
+
* <p>The concatenation settings for the media pipeline in a configuration object.</p>
|
|
582
|
+
*/
|
|
583
|
+
MediaCapturePipelineSourceConfiguration: MediaCapturePipelineSourceConfiguration | undefined;
|
|
584
|
+
}
|
|
585
|
+
export interface CreateMediaConcatenationPipelineRequest {
|
|
586
|
+
/**
|
|
587
|
+
* <p>An object that specifies the sources for the media concatenation pipeline.</p>
|
|
588
|
+
*/
|
|
589
|
+
Sources: ConcatenationSource[] | undefined;
|
|
590
|
+
/**
|
|
591
|
+
* <p>An object that specifies the data sinks for the media concatenation pipeline.</p>
|
|
592
|
+
*/
|
|
593
|
+
Sinks: ConcatenationSink[] | undefined;
|
|
594
|
+
/**
|
|
595
|
+
* <p>The unique identifier for the client request. The token makes the API request
|
|
596
|
+
* idempotent. Use a unique token for each media concatenation pipeline request.</p>
|
|
597
|
+
*/
|
|
598
|
+
ClientRequestToken?: string;
|
|
599
|
+
/**
|
|
600
|
+
* <p>The tags associated with the media concatenation pipeline.</p>
|
|
601
|
+
*/
|
|
602
|
+
Tags?: Tag[];
|
|
603
|
+
}
|
|
604
|
+
/**
|
|
605
|
+
* <p>Concatenates audio and video data from one or more data streams.</p>
|
|
606
|
+
*/
|
|
607
|
+
export interface MediaConcatenationPipeline {
|
|
608
|
+
/**
|
|
609
|
+
* <p>The ID of the media pipeline being concatenated.</p>
|
|
610
|
+
*/
|
|
611
|
+
MediaPipelineId?: string;
|
|
612
|
+
/**
|
|
613
|
+
* <p>The ARN of the media pipeline that you specify in the <code>SourceConfiguration</code> object.</p>
|
|
614
|
+
*/
|
|
615
|
+
MediaPipelineArn?: string;
|
|
616
|
+
/**
|
|
617
|
+
* <p>The data sources being concatnated.</p>
|
|
618
|
+
*/
|
|
619
|
+
Sources?: ConcatenationSource[];
|
|
620
|
+
/**
|
|
621
|
+
* <p>The data sinks of the concatenation pipeline.</p>
|
|
622
|
+
*/
|
|
623
|
+
Sinks?: ConcatenationSink[];
|
|
624
|
+
/**
|
|
625
|
+
* <p>The status of the concatenation pipeline.</p>
|
|
626
|
+
*/
|
|
627
|
+
Status?: MediaPipelineStatus | string;
|
|
628
|
+
/**
|
|
629
|
+
* <p>The time at which the concatenation pipeline was created.</p>
|
|
630
|
+
*/
|
|
631
|
+
CreatedTimestamp?: Date;
|
|
632
|
+
/**
|
|
633
|
+
* <p>The time at which the concatenation pipeline was last updated.</p>
|
|
634
|
+
*/
|
|
635
|
+
UpdatedTimestamp?: Date;
|
|
636
|
+
}
|
|
637
|
+
export interface CreateMediaConcatenationPipelineResponse {
|
|
638
|
+
/**
|
|
639
|
+
* <p>A media concatenation pipeline object, the ID, source type, <code>MediaPipelineARN</code>, and sink of a
|
|
640
|
+
* media concatenation pipeline object.</p>
|
|
641
|
+
*/
|
|
642
|
+
MediaConcatenationPipeline?: MediaConcatenationPipeline;
|
|
643
|
+
}
|
|
644
|
+
/**
|
|
645
|
+
* <p>The media pipeline's RTMP configuration object.</p>
|
|
646
|
+
*/
|
|
647
|
+
export interface LiveConnectorRTMPConfiguration {
|
|
648
|
+
/**
|
|
649
|
+
* <p>The URL of the RTMP configuration.</p>
|
|
650
|
+
*/
|
|
651
|
+
Url: string | undefined;
|
|
652
|
+
/**
|
|
653
|
+
* <p>The audio channels set for the RTMP configuration</p>
|
|
654
|
+
*/
|
|
655
|
+
AudioChannels?: AudioChannelsOption | string;
|
|
656
|
+
/**
|
|
657
|
+
* <p>The audio sample rate set for the RTMP configuration. Default: 48000.</p>
|
|
658
|
+
*/
|
|
659
|
+
AudioSampleRate?: string;
|
|
660
|
+
}
|
|
661
|
+
export declare enum LiveConnectorSinkType {
|
|
662
|
+
RTMP = "RTMP"
|
|
663
|
+
}
|
|
664
|
+
/**
|
|
665
|
+
* <p>The media pipeline's sink configuration settings.</p>
|
|
666
|
+
*/
|
|
667
|
+
export interface LiveConnectorSinkConfiguration {
|
|
668
|
+
/**
|
|
669
|
+
* <p>The sink configuration's sink type.</p>
|
|
670
|
+
*/
|
|
671
|
+
SinkType: LiveConnectorSinkType | string | undefined;
|
|
672
|
+
/**
|
|
673
|
+
* <p>The sink configuration's RTMP configuration setttings.</p>
|
|
674
|
+
*/
|
|
675
|
+
RTMPConfiguration: LiveConnectorRTMPConfiguration | undefined;
|
|
676
|
+
}
|
|
677
|
+
export declare enum LiveConnectorMuxType {
|
|
678
|
+
AudioWithActiveSpeakerVideo = "AudioWithActiveSpeakerVideo",
|
|
679
|
+
AudioWithCompositedVideo = "AudioWithCompositedVideo"
|
|
680
|
+
}
|
|
681
|
+
/**
|
|
682
|
+
* <p>The media pipeline's configuration object.</p>
|
|
683
|
+
*/
|
|
684
|
+
export interface ChimeSdkMeetingLiveConnectorConfiguration {
|
|
685
|
+
/**
|
|
686
|
+
* <p>The configuration object's Chime SDK meeting ARN.</p>
|
|
687
|
+
*/
|
|
688
|
+
Arn: string | undefined;
|
|
689
|
+
/**
|
|
690
|
+
* <p>The configuration object's multiplex type.</p>
|
|
691
|
+
*/
|
|
692
|
+
MuxType: LiveConnectorMuxType | string | undefined;
|
|
693
|
+
/**
|
|
694
|
+
* <p>The media pipeline's composited video.</p>
|
|
695
|
+
*/
|
|
696
|
+
CompositedVideo?: CompositedVideoArtifactsConfiguration;
|
|
697
|
+
/**
|
|
698
|
+
* <p>The source configuration settings of the media pipeline's configuration object.</p>
|
|
699
|
+
*/
|
|
700
|
+
SourceConfiguration?: SourceConfiguration;
|
|
701
|
+
}
|
|
702
|
+
export declare enum LiveConnectorSourceType {
|
|
703
|
+
ChimeSdkMeeting = "ChimeSdkMeeting"
|
|
704
|
+
}
|
|
705
|
+
/**
|
|
706
|
+
* <p>The data source configuration object of a streaming media pipeline.</p>
|
|
707
|
+
*/
|
|
708
|
+
export interface LiveConnectorSourceConfiguration {
|
|
709
|
+
/**
|
|
710
|
+
* <p>The source configuration's media source type.</p>
|
|
711
|
+
*/
|
|
712
|
+
SourceType: LiveConnectorSourceType | string | undefined;
|
|
713
|
+
/**
|
|
714
|
+
* <p>The configuration settings of the connector pipeline.</p>
|
|
715
|
+
*/
|
|
716
|
+
ChimeSdkMeetingLiveConnectorConfiguration: ChimeSdkMeetingLiveConnectorConfiguration | undefined;
|
|
717
|
+
}
|
|
718
|
+
export interface CreateMediaLiveConnectorPipelineRequest {
|
|
719
|
+
/**
|
|
720
|
+
* <p>The media pipeline's data sources.</p>
|
|
721
|
+
*/
|
|
722
|
+
Sources: LiveConnectorSourceConfiguration[] | undefined;
|
|
723
|
+
/**
|
|
724
|
+
* <p>The media pipeline's data sinks.</p>
|
|
725
|
+
*/
|
|
726
|
+
Sinks: LiveConnectorSinkConfiguration[] | undefined;
|
|
727
|
+
/**
|
|
728
|
+
* <p>The token assigned to the client making the request.</p>
|
|
729
|
+
*/
|
|
730
|
+
ClientRequestToken?: string;
|
|
731
|
+
/**
|
|
732
|
+
* <p>The tags associated with the media pipeline.</p>
|
|
733
|
+
*/
|
|
734
|
+
Tags?: Tag[];
|
|
735
|
+
}
|
|
736
|
+
/**
|
|
737
|
+
* <p>The connector pipeline.</p>
|
|
738
|
+
*/
|
|
739
|
+
export interface MediaLiveConnectorPipeline {
|
|
740
|
+
/**
|
|
741
|
+
* <p>The connector pipeline's data sources.</p>
|
|
742
|
+
*/
|
|
743
|
+
Sources?: LiveConnectorSourceConfiguration[];
|
|
744
|
+
/**
|
|
745
|
+
* <p>The connector pipeline's data sinks.</p>
|
|
746
|
+
*/
|
|
747
|
+
Sinks?: LiveConnectorSinkConfiguration[];
|
|
748
|
+
/**
|
|
749
|
+
* <p>The connector pipeline's ID.</p>
|
|
750
|
+
*/
|
|
751
|
+
MediaPipelineId?: string;
|
|
752
|
+
/**
|
|
753
|
+
* <p>The connector pipeline's ARN.</p>
|
|
754
|
+
*/
|
|
755
|
+
MediaPipelineArn?: string;
|
|
756
|
+
/**
|
|
757
|
+
* <p>The connector pipeline's status.</p>
|
|
758
|
+
*/
|
|
759
|
+
Status?: MediaPipelineStatus | string;
|
|
760
|
+
/**
|
|
761
|
+
* <p>Thetime at which the connector pipeline was created.</p>
|
|
762
|
+
*/
|
|
763
|
+
CreatedTimestamp?: Date;
|
|
764
|
+
/**
|
|
765
|
+
* <p>The time at which the connector pipeline was last updated.</p>
|
|
766
|
+
*/
|
|
767
|
+
UpdatedTimestamp?: Date;
|
|
768
|
+
}
|
|
769
|
+
export interface CreateMediaLiveConnectorPipelineResponse {
|
|
770
|
+
/**
|
|
771
|
+
* <p>The new media pipeline.</p>
|
|
772
|
+
*/
|
|
773
|
+
MediaLiveConnectorPipeline?: MediaLiveConnectorPipeline;
|
|
774
|
+
}
|
|
340
775
|
export interface DeleteMediaCapturePipelineRequest {
|
|
341
776
|
/**
|
|
342
|
-
* <p>The ID of the media
|
|
777
|
+
* <p>The ID of the media pipeline being deleted. </p>
|
|
343
778
|
*/
|
|
344
779
|
MediaPipelineId: string | undefined;
|
|
345
780
|
}
|
|
@@ -360,6 +795,12 @@ export declare class NotFoundException extends __BaseException {
|
|
|
360
795
|
*/
|
|
361
796
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
362
797
|
}
|
|
798
|
+
export interface DeleteMediaPipelineRequest {
|
|
799
|
+
/**
|
|
800
|
+
* <p>The ID of the media pipeline to delete.</p>
|
|
801
|
+
*/
|
|
802
|
+
MediaPipelineId: string | undefined;
|
|
803
|
+
}
|
|
363
804
|
export interface GetMediaCapturePipelineRequest {
|
|
364
805
|
/**
|
|
365
806
|
* <p>The ID of the pipeline that you want to get.</p>
|
|
@@ -368,10 +809,39 @@ export interface GetMediaCapturePipelineRequest {
|
|
|
368
809
|
}
|
|
369
810
|
export interface GetMediaCapturePipelineResponse {
|
|
370
811
|
/**
|
|
371
|
-
* <p>The media
|
|
812
|
+
* <p>The media pipeline object.</p>
|
|
372
813
|
*/
|
|
373
814
|
MediaCapturePipeline?: MediaCapturePipeline;
|
|
374
815
|
}
|
|
816
|
+
export interface GetMediaPipelineRequest {
|
|
817
|
+
/**
|
|
818
|
+
* <p>The ID of the pipeline that you want to get.</p>
|
|
819
|
+
*/
|
|
820
|
+
MediaPipelineId: string | undefined;
|
|
821
|
+
}
|
|
822
|
+
/**
|
|
823
|
+
* <p>A pipeline consisting of a media capture, media concatenation, or live-streaming pipeline.</p>
|
|
824
|
+
*/
|
|
825
|
+
export interface MediaPipeline {
|
|
826
|
+
/**
|
|
827
|
+
* <p>A pipeline that enables users to capture audio and video.</p>
|
|
828
|
+
*/
|
|
829
|
+
MediaCapturePipeline?: MediaCapturePipeline;
|
|
830
|
+
/**
|
|
831
|
+
* <p>The connector pipeline of the media pipeline.</p>
|
|
832
|
+
*/
|
|
833
|
+
MediaLiveConnectorPipeline?: MediaLiveConnectorPipeline;
|
|
834
|
+
/**
|
|
835
|
+
* <p>The media concatenation pipeline in a media pipeline.</p>
|
|
836
|
+
*/
|
|
837
|
+
MediaConcatenationPipeline?: MediaConcatenationPipeline;
|
|
838
|
+
}
|
|
839
|
+
export interface GetMediaPipelineResponse {
|
|
840
|
+
/**
|
|
841
|
+
* <p>The media pipeline object.</p>
|
|
842
|
+
*/
|
|
843
|
+
MediaPipeline?: MediaPipeline;
|
|
844
|
+
}
|
|
375
845
|
export interface ListMediaCapturePipelinesRequest {
|
|
376
846
|
/**
|
|
377
847
|
* <p>The token used to retrieve the next page of results.</p>
|
|
@@ -383,21 +853,21 @@ export interface ListMediaCapturePipelinesRequest {
|
|
|
383
853
|
MaxResults?: number;
|
|
384
854
|
}
|
|
385
855
|
/**
|
|
386
|
-
* <p>
|
|
856
|
+
* <p>The summary data of a media capture pipeline.</p>
|
|
387
857
|
*/
|
|
388
858
|
export interface MediaCapturePipelineSummary {
|
|
389
859
|
/**
|
|
390
|
-
* <p>The ID of
|
|
860
|
+
* <p>The ID of the media pipeline in the summary.</p>
|
|
391
861
|
*/
|
|
392
862
|
MediaPipelineId?: string;
|
|
393
863
|
/**
|
|
394
|
-
* <p>The ARN of
|
|
864
|
+
* <p>The ARN of the media pipeline in the summary.</p>
|
|
395
865
|
*/
|
|
396
866
|
MediaPipelineArn?: string;
|
|
397
867
|
}
|
|
398
868
|
export interface ListMediaCapturePipelinesResponse {
|
|
399
869
|
/**
|
|
400
|
-
* <p>The media
|
|
870
|
+
* <p>The media pipeline objects in the list.</p>
|
|
401
871
|
*/
|
|
402
872
|
MediaCapturePipelines?: MediaCapturePipelineSummary[];
|
|
403
873
|
/**
|
|
@@ -405,25 +875,58 @@ export interface ListMediaCapturePipelinesResponse {
|
|
|
405
875
|
*/
|
|
406
876
|
NextToken?: string;
|
|
407
877
|
}
|
|
878
|
+
export interface ListMediaPipelinesRequest {
|
|
879
|
+
/**
|
|
880
|
+
* <p>The token used to retrieve the next page of results.</p>
|
|
881
|
+
*/
|
|
882
|
+
NextToken?: string;
|
|
883
|
+
/**
|
|
884
|
+
* <p>The maximum number of results to return in a single call. Valid Range: 1 - 99.</p>
|
|
885
|
+
*/
|
|
886
|
+
MaxResults?: number;
|
|
887
|
+
}
|
|
888
|
+
/**
|
|
889
|
+
* <p>The summary of the media pipeline.</p>
|
|
890
|
+
*/
|
|
891
|
+
export interface MediaPipelineSummary {
|
|
892
|
+
/**
|
|
893
|
+
* <p>The ID of the media pipeline in the summary.</p>
|
|
894
|
+
*/
|
|
895
|
+
MediaPipelineId?: string;
|
|
896
|
+
/**
|
|
897
|
+
* <p>The ARN of the media pipeline in the summary.</p>
|
|
898
|
+
*/
|
|
899
|
+
MediaPipelineArn?: string;
|
|
900
|
+
}
|
|
901
|
+
export interface ListMediaPipelinesResponse {
|
|
902
|
+
/**
|
|
903
|
+
* <p>The media pipeline objects in the list.</p>
|
|
904
|
+
*/
|
|
905
|
+
MediaPipelines?: MediaPipelineSummary[];
|
|
906
|
+
/**
|
|
907
|
+
* <p>The token used to retrieve the next page of results. </p>
|
|
908
|
+
*/
|
|
909
|
+
NextToken?: string;
|
|
910
|
+
}
|
|
408
911
|
export interface ListTagsForResourceRequest {
|
|
409
912
|
/**
|
|
410
|
-
* <p>The resource
|
|
913
|
+
* <p>The ARN of the media pipeline associated with any tags. The ARN consists of the pipeline's region, resource ID, and pipeline ID.</p>
|
|
411
914
|
*/
|
|
412
915
|
ResourceARN: string | undefined;
|
|
413
916
|
}
|
|
414
917
|
export interface ListTagsForResourceResponse {
|
|
415
918
|
/**
|
|
416
|
-
* <p>The
|
|
919
|
+
* <p>The tags associated with the specified media pipeline.</p>
|
|
417
920
|
*/
|
|
418
921
|
Tags?: Tag[];
|
|
419
922
|
}
|
|
420
923
|
export interface TagResourceRequest {
|
|
421
924
|
/**
|
|
422
|
-
* <p>The resource
|
|
925
|
+
* <p>The ARN of the media pipeline associated with any tags. The ARN consists of the pipeline's endpoint region, resource ID, and pipeline ID.</p>
|
|
423
926
|
*/
|
|
424
927
|
ResourceARN: string | undefined;
|
|
425
928
|
/**
|
|
426
|
-
* <p>The
|
|
929
|
+
* <p>The tags associated with the specified media pipeline.</p>
|
|
427
930
|
*/
|
|
428
931
|
Tags: Tag[] | undefined;
|
|
429
932
|
}
|
|
@@ -431,20 +934,64 @@ export interface TagResourceResponse {
|
|
|
431
934
|
}
|
|
432
935
|
export interface UntagResourceRequest {
|
|
433
936
|
/**
|
|
434
|
-
* <p>The
|
|
937
|
+
* <p>The ARN of the pipeline that you want to untag.</p>
|
|
435
938
|
*/
|
|
436
939
|
ResourceARN: string | undefined;
|
|
437
940
|
/**
|
|
438
|
-
* <p>The tag
|
|
941
|
+
* <p>The key/value pairs in the tag that you want to remove.</p>
|
|
439
942
|
*/
|
|
440
943
|
TagKeys: string[] | undefined;
|
|
441
944
|
}
|
|
442
945
|
export interface UntagResourceResponse {
|
|
443
946
|
}
|
|
947
|
+
/**
|
|
948
|
+
* @internal
|
|
949
|
+
*/
|
|
950
|
+
export declare const AudioConcatenationConfigurationFilterSensitiveLog: (obj: AudioConcatenationConfiguration) => any;
|
|
951
|
+
/**
|
|
952
|
+
* @internal
|
|
953
|
+
*/
|
|
954
|
+
export declare const CompositedVideoConcatenationConfigurationFilterSensitiveLog: (obj: CompositedVideoConcatenationConfiguration) => any;
|
|
955
|
+
/**
|
|
956
|
+
* @internal
|
|
957
|
+
*/
|
|
958
|
+
export declare const ContentConcatenationConfigurationFilterSensitiveLog: (obj: ContentConcatenationConfiguration) => any;
|
|
959
|
+
/**
|
|
960
|
+
* @internal
|
|
961
|
+
*/
|
|
962
|
+
export declare const DataChannelConcatenationConfigurationFilterSensitiveLog: (obj: DataChannelConcatenationConfiguration) => any;
|
|
963
|
+
/**
|
|
964
|
+
* @internal
|
|
965
|
+
*/
|
|
966
|
+
export declare const MeetingEventsConcatenationConfigurationFilterSensitiveLog: (obj: MeetingEventsConcatenationConfiguration) => any;
|
|
967
|
+
/**
|
|
968
|
+
* @internal
|
|
969
|
+
*/
|
|
970
|
+
export declare const TranscriptionMessagesConcatenationConfigurationFilterSensitiveLog: (obj: TranscriptionMessagesConcatenationConfiguration) => any;
|
|
971
|
+
/**
|
|
972
|
+
* @internal
|
|
973
|
+
*/
|
|
974
|
+
export declare const VideoConcatenationConfigurationFilterSensitiveLog: (obj: VideoConcatenationConfiguration) => any;
|
|
975
|
+
/**
|
|
976
|
+
* @internal
|
|
977
|
+
*/
|
|
978
|
+
export declare const ArtifactsConcatenationConfigurationFilterSensitiveLog: (obj: ArtifactsConcatenationConfiguration) => any;
|
|
444
979
|
/**
|
|
445
980
|
* @internal
|
|
446
981
|
*/
|
|
447
982
|
export declare const AudioArtifactsConfigurationFilterSensitiveLog: (obj: AudioArtifactsConfiguration) => any;
|
|
983
|
+
/**
|
|
984
|
+
* @internal
|
|
985
|
+
*/
|
|
986
|
+
export declare const PresenterOnlyConfigurationFilterSensitiveLog: (obj: PresenterOnlyConfiguration) => any;
|
|
987
|
+
/**
|
|
988
|
+
* @internal
|
|
989
|
+
*/
|
|
990
|
+
export declare const GridViewConfigurationFilterSensitiveLog: (obj: GridViewConfiguration) => any;
|
|
991
|
+
/**
|
|
992
|
+
* @internal
|
|
993
|
+
*/
|
|
994
|
+
export declare const CompositedVideoArtifactsConfigurationFilterSensitiveLog: (obj: CompositedVideoArtifactsConfiguration) => any;
|
|
448
995
|
/**
|
|
449
996
|
* @internal
|
|
450
997
|
*/
|
|
@@ -485,10 +1032,74 @@ export declare const MediaCapturePipelineFilterSensitiveLog: (obj: MediaCaptureP
|
|
|
485
1032
|
* @internal
|
|
486
1033
|
*/
|
|
487
1034
|
export declare const CreateMediaCapturePipelineResponseFilterSensitiveLog: (obj: CreateMediaCapturePipelineResponse) => any;
|
|
1035
|
+
/**
|
|
1036
|
+
* @internal
|
|
1037
|
+
*/
|
|
1038
|
+
export declare const S3BucketSinkConfigurationFilterSensitiveLog: (obj: S3BucketSinkConfiguration) => any;
|
|
1039
|
+
/**
|
|
1040
|
+
* @internal
|
|
1041
|
+
*/
|
|
1042
|
+
export declare const ConcatenationSinkFilterSensitiveLog: (obj: ConcatenationSink) => any;
|
|
1043
|
+
/**
|
|
1044
|
+
* @internal
|
|
1045
|
+
*/
|
|
1046
|
+
export declare const ChimeSdkMeetingConcatenationConfigurationFilterSensitiveLog: (obj: ChimeSdkMeetingConcatenationConfiguration) => any;
|
|
1047
|
+
/**
|
|
1048
|
+
* @internal
|
|
1049
|
+
*/
|
|
1050
|
+
export declare const MediaCapturePipelineSourceConfigurationFilterSensitiveLog: (obj: MediaCapturePipelineSourceConfiguration) => any;
|
|
1051
|
+
/**
|
|
1052
|
+
* @internal
|
|
1053
|
+
*/
|
|
1054
|
+
export declare const ConcatenationSourceFilterSensitiveLog: (obj: ConcatenationSource) => any;
|
|
1055
|
+
/**
|
|
1056
|
+
* @internal
|
|
1057
|
+
*/
|
|
1058
|
+
export declare const CreateMediaConcatenationPipelineRequestFilterSensitiveLog: (obj: CreateMediaConcatenationPipelineRequest) => any;
|
|
1059
|
+
/**
|
|
1060
|
+
* @internal
|
|
1061
|
+
*/
|
|
1062
|
+
export declare const MediaConcatenationPipelineFilterSensitiveLog: (obj: MediaConcatenationPipeline) => any;
|
|
1063
|
+
/**
|
|
1064
|
+
* @internal
|
|
1065
|
+
*/
|
|
1066
|
+
export declare const CreateMediaConcatenationPipelineResponseFilterSensitiveLog: (obj: CreateMediaConcatenationPipelineResponse) => any;
|
|
1067
|
+
/**
|
|
1068
|
+
* @internal
|
|
1069
|
+
*/
|
|
1070
|
+
export declare const LiveConnectorRTMPConfigurationFilterSensitiveLog: (obj: LiveConnectorRTMPConfiguration) => any;
|
|
1071
|
+
/**
|
|
1072
|
+
* @internal
|
|
1073
|
+
*/
|
|
1074
|
+
export declare const LiveConnectorSinkConfigurationFilterSensitiveLog: (obj: LiveConnectorSinkConfiguration) => any;
|
|
1075
|
+
/**
|
|
1076
|
+
* @internal
|
|
1077
|
+
*/
|
|
1078
|
+
export declare const ChimeSdkMeetingLiveConnectorConfigurationFilterSensitiveLog: (obj: ChimeSdkMeetingLiveConnectorConfiguration) => any;
|
|
1079
|
+
/**
|
|
1080
|
+
* @internal
|
|
1081
|
+
*/
|
|
1082
|
+
export declare const LiveConnectorSourceConfigurationFilterSensitiveLog: (obj: LiveConnectorSourceConfiguration) => any;
|
|
1083
|
+
/**
|
|
1084
|
+
* @internal
|
|
1085
|
+
*/
|
|
1086
|
+
export declare const CreateMediaLiveConnectorPipelineRequestFilterSensitiveLog: (obj: CreateMediaLiveConnectorPipelineRequest) => any;
|
|
1087
|
+
/**
|
|
1088
|
+
* @internal
|
|
1089
|
+
*/
|
|
1090
|
+
export declare const MediaLiveConnectorPipelineFilterSensitiveLog: (obj: MediaLiveConnectorPipeline) => any;
|
|
1091
|
+
/**
|
|
1092
|
+
* @internal
|
|
1093
|
+
*/
|
|
1094
|
+
export declare const CreateMediaLiveConnectorPipelineResponseFilterSensitiveLog: (obj: CreateMediaLiveConnectorPipelineResponse) => any;
|
|
488
1095
|
/**
|
|
489
1096
|
* @internal
|
|
490
1097
|
*/
|
|
491
1098
|
export declare const DeleteMediaCapturePipelineRequestFilterSensitiveLog: (obj: DeleteMediaCapturePipelineRequest) => any;
|
|
1099
|
+
/**
|
|
1100
|
+
* @internal
|
|
1101
|
+
*/
|
|
1102
|
+
export declare const DeleteMediaPipelineRequestFilterSensitiveLog: (obj: DeleteMediaPipelineRequest) => any;
|
|
492
1103
|
/**
|
|
493
1104
|
* @internal
|
|
494
1105
|
*/
|
|
@@ -497,6 +1108,18 @@ export declare const GetMediaCapturePipelineRequestFilterSensitiveLog: (obj: Get
|
|
|
497
1108
|
* @internal
|
|
498
1109
|
*/
|
|
499
1110
|
export declare const GetMediaCapturePipelineResponseFilterSensitiveLog: (obj: GetMediaCapturePipelineResponse) => any;
|
|
1111
|
+
/**
|
|
1112
|
+
* @internal
|
|
1113
|
+
*/
|
|
1114
|
+
export declare const GetMediaPipelineRequestFilterSensitiveLog: (obj: GetMediaPipelineRequest) => any;
|
|
1115
|
+
/**
|
|
1116
|
+
* @internal
|
|
1117
|
+
*/
|
|
1118
|
+
export declare const MediaPipelineFilterSensitiveLog: (obj: MediaPipeline) => any;
|
|
1119
|
+
/**
|
|
1120
|
+
* @internal
|
|
1121
|
+
*/
|
|
1122
|
+
export declare const GetMediaPipelineResponseFilterSensitiveLog: (obj: GetMediaPipelineResponse) => any;
|
|
500
1123
|
/**
|
|
501
1124
|
* @internal
|
|
502
1125
|
*/
|
|
@@ -509,6 +1132,18 @@ export declare const MediaCapturePipelineSummaryFilterSensitiveLog: (obj: MediaC
|
|
|
509
1132
|
* @internal
|
|
510
1133
|
*/
|
|
511
1134
|
export declare const ListMediaCapturePipelinesResponseFilterSensitiveLog: (obj: ListMediaCapturePipelinesResponse) => any;
|
|
1135
|
+
/**
|
|
1136
|
+
* @internal
|
|
1137
|
+
*/
|
|
1138
|
+
export declare const ListMediaPipelinesRequestFilterSensitiveLog: (obj: ListMediaPipelinesRequest) => any;
|
|
1139
|
+
/**
|
|
1140
|
+
* @internal
|
|
1141
|
+
*/
|
|
1142
|
+
export declare const MediaPipelineSummaryFilterSensitiveLog: (obj: MediaPipelineSummary) => any;
|
|
1143
|
+
/**
|
|
1144
|
+
* @internal
|
|
1145
|
+
*/
|
|
1146
|
+
export declare const ListMediaPipelinesResponseFilterSensitiveLog: (obj: ListMediaPipelinesResponse) => any;
|
|
512
1147
|
/**
|
|
513
1148
|
* @internal
|
|
514
1149
|
*/
|