cdk-comprehend-s3olap 2.0.70 → 2.0.73

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.
Files changed (47) hide show
  1. package/.jsii +4 -4
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +22 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/appmesh-2019-01-25.min.json +220 -167
  8. package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +464 -31
  9. package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
  10. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +119 -39
  11. package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +9 -0
  12. package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +227 -33
  13. package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.paginators.json +5 -0
  14. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +601 -558
  15. package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +114 -85
  16. package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +98 -66
  17. package/node_modules/aws-sdk/apis/lambda-2015-03-31.min.json +135 -111
  18. package/node_modules/aws-sdk/apis/lookoutmetrics-2017-07-25.min.json +54 -0
  19. package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +405 -123
  20. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +104 -22
  21. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.paginators.json +11 -0
  22. package/node_modules/aws-sdk/apis/networkmanager-2019-07-05.min.json +52 -51
  23. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +11 -5
  24. package/node_modules/aws-sdk/clients/appmesh.d.ts +70 -3
  25. package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +472 -43
  26. package/node_modules/aws-sdk/clients/cloudwatch.d.ts +100 -2
  27. package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +2 -2
  28. package/node_modules/aws-sdk/clients/connect.d.ts +246 -160
  29. package/node_modules/aws-sdk/clients/dynamodb.d.ts +276 -2
  30. package/node_modules/aws-sdk/clients/ec2.d.ts +53 -0
  31. package/node_modules/aws-sdk/clients/ivschat.d.ts +5 -5
  32. package/node_modules/aws-sdk/clients/kendra.d.ts +93 -56
  33. package/node_modules/aws-sdk/clients/lakeformation.d.ts +48 -2
  34. package/node_modules/aws-sdk/clients/lambda.d.ts +45 -17
  35. package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +290 -2
  36. package/node_modules/aws-sdk/clients/lookoutmetrics.d.ts +72 -3
  37. package/node_modules/aws-sdk/clients/networkmanager.d.ts +5 -0
  38. package/node_modules/aws-sdk/clients/rds.d.ts +36 -12
  39. package/node_modules/aws-sdk/clients/secretsmanager.d.ts +11 -11
  40. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  41. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +18 -18
  42. package/node_modules/aws-sdk/dist/aws-sdk.js +1225 -771
  43. package/node_modules/aws-sdk/dist/aws-sdk.min.js +74 -74
  44. package/node_modules/aws-sdk/lib/core.js +1 -1
  45. package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +252 -2
  46. package/node_modules/aws-sdk/package.json +1 -1
  47. package/package.json +8 -8
@@ -12,65 +12,136 @@ declare class ChimeSDKMediaPipelines extends Service {
12
12
  constructor(options?: ChimeSDKMediaPipelines.Types.ClientConfiguration)
13
13
  config: Config & ChimeSDKMediaPipelines.Types.ClientConfiguration;
14
14
  /**
15
- * Creates a media capture pipeline.
15
+ * Creates a media pipeline.
16
16
  */
17
17
  createMediaCapturePipeline(params: ChimeSDKMediaPipelines.Types.CreateMediaCapturePipelineRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.CreateMediaCapturePipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.CreateMediaCapturePipelineResponse, AWSError>;
18
18
  /**
19
- * Creates a media capture pipeline.
19
+ * Creates a media pipeline.
20
20
  */
21
21
  createMediaCapturePipeline(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.CreateMediaCapturePipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.CreateMediaCapturePipelineResponse, AWSError>;
22
22
  /**
23
- * Deletes the media capture pipeline.
23
+ * Creates a media concatenation pipeline.
24
+ */
25
+ createMediaConcatenationPipeline(params: ChimeSDKMediaPipelines.Types.CreateMediaConcatenationPipelineRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.CreateMediaConcatenationPipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.CreateMediaConcatenationPipelineResponse, AWSError>;
26
+ /**
27
+ * Creates a media concatenation pipeline.
28
+ */
29
+ createMediaConcatenationPipeline(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.CreateMediaConcatenationPipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.CreateMediaConcatenationPipelineResponse, AWSError>;
30
+ /**
31
+ * Creates a streaming media pipeline in an Amazon Chime SDK meeting.
32
+ */
33
+ createMediaLiveConnectorPipeline(params: ChimeSDKMediaPipelines.Types.CreateMediaLiveConnectorPipelineRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.CreateMediaLiveConnectorPipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.CreateMediaLiveConnectorPipelineResponse, AWSError>;
34
+ /**
35
+ * Creates a streaming media pipeline in an Amazon Chime SDK meeting.
36
+ */
37
+ createMediaLiveConnectorPipeline(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.CreateMediaLiveConnectorPipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.CreateMediaLiveConnectorPipelineResponse, AWSError>;
38
+ /**
39
+ * Deletes the media pipeline.
24
40
  */
25
41
  deleteMediaCapturePipeline(params: ChimeSDKMediaPipelines.Types.DeleteMediaCapturePipelineRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
26
42
  /**
27
- * Deletes the media capture pipeline.
43
+ * Deletes the media pipeline.
28
44
  */
29
45
  deleteMediaCapturePipeline(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
30
46
  /**
31
- * Gets an existing media capture pipeline.
47
+ * Deletes the media pipeline.
48
+ */
49
+ deleteMediaPipeline(params: ChimeSDKMediaPipelines.Types.DeleteMediaPipelineRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
50
+ /**
51
+ * Deletes the media pipeline.
52
+ */
53
+ deleteMediaPipeline(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
54
+ /**
55
+ * Gets an existing media pipeline.
32
56
  */
33
57
  getMediaCapturePipeline(params: ChimeSDKMediaPipelines.Types.GetMediaCapturePipelineRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetMediaCapturePipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetMediaCapturePipelineResponse, AWSError>;
34
58
  /**
35
- * Gets an existing media capture pipeline.
59
+ * Gets an existing media pipeline.
36
60
  */
37
61
  getMediaCapturePipeline(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetMediaCapturePipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetMediaCapturePipelineResponse, AWSError>;
38
62
  /**
39
- * Returns a list of media capture pipelines.
63
+ * Gets an existing media pipeline.
64
+ */
65
+ getMediaPipeline(params: ChimeSDKMediaPipelines.Types.GetMediaPipelineRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetMediaPipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetMediaPipelineResponse, AWSError>;
66
+ /**
67
+ * Gets an existing media pipeline.
68
+ */
69
+ getMediaPipeline(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetMediaPipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetMediaPipelineResponse, AWSError>;
70
+ /**
71
+ * Returns a list of media pipelines.
40
72
  */
41
73
  listMediaCapturePipelines(params: ChimeSDKMediaPipelines.Types.ListMediaCapturePipelinesRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.ListMediaCapturePipelinesResponse) => void): Request<ChimeSDKMediaPipelines.Types.ListMediaCapturePipelinesResponse, AWSError>;
42
74
  /**
43
- * Returns a list of media capture pipelines.
75
+ * Returns a list of media pipelines.
44
76
  */
45
77
  listMediaCapturePipelines(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.ListMediaCapturePipelinesResponse) => void): Request<ChimeSDKMediaPipelines.Types.ListMediaCapturePipelinesResponse, AWSError>;
46
78
  /**
47
- * Lists the tags applied to an Amazon Chime SDK media capture pipeline.
79
+ * Returns a list of media pipelines.
80
+ */
81
+ listMediaPipelines(params: ChimeSDKMediaPipelines.Types.ListMediaPipelinesRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.ListMediaPipelinesResponse) => void): Request<ChimeSDKMediaPipelines.Types.ListMediaPipelinesResponse, AWSError>;
82
+ /**
83
+ * Returns a list of media pipelines.
84
+ */
85
+ listMediaPipelines(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.ListMediaPipelinesResponse) => void): Request<ChimeSDKMediaPipelines.Types.ListMediaPipelinesResponse, AWSError>;
86
+ /**
87
+ * Lists the tags available for a media pipeline.
48
88
  */
49
89
  listTagsForResource(params: ChimeSDKMediaPipelines.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.ListTagsForResourceResponse) => void): Request<ChimeSDKMediaPipelines.Types.ListTagsForResourceResponse, AWSError>;
50
90
  /**
51
- * Lists the tags applied to an Amazon Chime SDK media capture pipeline.
91
+ * Lists the tags available for a media pipeline.
52
92
  */
53
93
  listTagsForResource(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.ListTagsForResourceResponse) => void): Request<ChimeSDKMediaPipelines.Types.ListTagsForResourceResponse, AWSError>;
54
94
  /**
55
- * Applies the specified tags to the specified Amazon Chime SDK media capture pipeline.
95
+ * The ARN of the media pipeline that you want to tag. Consists of he pipeline's endpoint region, resource ID, and pipeline ID.
56
96
  */
57
97
  tagResource(params: ChimeSDKMediaPipelines.Types.TagResourceRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.TagResourceResponse) => void): Request<ChimeSDKMediaPipelines.Types.TagResourceResponse, AWSError>;
58
98
  /**
59
- * Applies the specified tags to the specified Amazon Chime SDK media capture pipeline.
99
+ * The ARN of the media pipeline that you want to tag. Consists of he pipeline's endpoint region, resource ID, and pipeline ID.
60
100
  */
61
101
  tagResource(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.TagResourceResponse) => void): Request<ChimeSDKMediaPipelines.Types.TagResourceResponse, AWSError>;
62
102
  /**
63
- * Removes the specified tags from the specified Amazon Chime SDK media capture pipeline.
103
+ * Removes any tags from a media pipeline.
64
104
  */
65
105
  untagResource(params: ChimeSDKMediaPipelines.Types.UntagResourceRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.UntagResourceResponse) => void): Request<ChimeSDKMediaPipelines.Types.UntagResourceResponse, AWSError>;
66
106
  /**
67
- * Removes the specified tags from the specified Amazon Chime SDK media capture pipeline.
107
+ * Removes any tags from a media pipeline.
68
108
  */
69
109
  untagResource(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.UntagResourceResponse) => void): Request<ChimeSDKMediaPipelines.Types.UntagResourceResponse, AWSError>;
70
110
  }
71
111
  declare namespace ChimeSDKMediaPipelines {
72
112
  export type AmazonResourceName = string;
73
113
  export type Arn = string;
114
+ export interface ArtifactsConcatenationConfiguration {
115
+ /**
116
+ * The configuration for the audio artifacts concatenation.
117
+ */
118
+ Audio: AudioConcatenationConfiguration;
119
+ /**
120
+ * The configuration for the video artifacts concatenation.
121
+ */
122
+ Video: VideoConcatenationConfiguration;
123
+ /**
124
+ * The configuration for the content artifacts concatenation.
125
+ */
126
+ Content: ContentConcatenationConfiguration;
127
+ /**
128
+ * The configuration for the data channel artifacts concatenation.
129
+ */
130
+ DataChannel: DataChannelConcatenationConfiguration;
131
+ /**
132
+ * The configuration for the transcription messages artifacts concatenation.
133
+ */
134
+ TranscriptionMessages: TranscriptionMessagesConcatenationConfiguration;
135
+ /**
136
+ * The configuration for the meeting events artifacts concatenation.
137
+ */
138
+ MeetingEvents: MeetingEventsConcatenationConfiguration;
139
+ /**
140
+ * The configuration for the composited video artifacts concatenation.
141
+ */
142
+ CompositedVideo: CompositedVideoConcatenationConfiguration;
143
+ }
144
+ export type ArtifactsConcatenationState = "Enabled"|"Disabled"|string;
74
145
  export interface ArtifactsConfiguration {
75
146
  /**
76
147
  * The configuration for the audio artifacts.
@@ -84,19 +155,38 @@ declare namespace ChimeSDKMediaPipelines {
84
155
  * The configuration for the content artifacts.
85
156
  */
86
157
  Content: ContentArtifactsConfiguration;
158
+ /**
159
+ * Enables video compositing.
160
+ */
161
+ CompositedVideo?: CompositedVideoArtifactsConfiguration;
87
162
  }
88
163
  export type ArtifactsState = "Enabled"|"Disabled"|string;
89
164
  export type AttendeeIdList = GuidString[];
165
+ export type AudioArtifactsConcatenationState = "Enabled"|string;
90
166
  export interface AudioArtifactsConfiguration {
91
167
  /**
92
168
  * The MUX type of the audio artifact configuration object.
93
169
  */
94
170
  MuxType: AudioMuxType;
95
171
  }
96
- export type AudioMuxType = "AudioOnly"|"AudioWithActiveSpeakerVideo"|string;
172
+ export type AudioChannelsOption = "Stereo"|"Mono"|string;
173
+ export interface AudioConcatenationConfiguration {
174
+ /**
175
+ * Enables the name object, where name is the name of the configuration object, such as AudioConcatenation.
176
+ */
177
+ State: AudioArtifactsConcatenationState;
178
+ }
179
+ export type AudioMuxType = "AudioOnly"|"AudioWithActiveSpeakerVideo"|"AudioWithCompositedVideo"|string;
180
+ export type AudioSampleRateOption = string;
181
+ export interface ChimeSdkMeetingConcatenationConfiguration {
182
+ /**
183
+ * The configuration for the artifacts in an Amazon Chime SDK meeting concatenation.
184
+ */
185
+ ArtifactsConfiguration: ArtifactsConcatenationConfiguration;
186
+ }
97
187
  export interface ChimeSdkMeetingConfiguration {
98
188
  /**
99
- * The source configuration for a specified media capture pipline.
189
+ * The source configuration for a specified media pipline.
100
190
  */
101
191
  SourceConfiguration?: SourceConfiguration;
102
192
  /**
@@ -104,7 +194,69 @@ declare namespace ChimeSDKMediaPipelines {
104
194
  */
105
195
  ArtifactsConfiguration?: ArtifactsConfiguration;
106
196
  }
197
+ export interface ChimeSdkMeetingLiveConnectorConfiguration {
198
+ /**
199
+ * The configuration object's Chime SDK meeting ARN.
200
+ */
201
+ Arn: Arn;
202
+ /**
203
+ * The configuration object's multiplex type.
204
+ */
205
+ MuxType: LiveConnectorMuxType;
206
+ /**
207
+ * The media pipeline's composited video.
208
+ */
209
+ CompositedVideo?: CompositedVideoArtifactsConfiguration;
210
+ /**
211
+ * The source configuration settings of the media pipeline's configuration object.
212
+ */
213
+ SourceConfiguration?: SourceConfiguration;
214
+ }
107
215
  export type ClientRequestToken = string;
216
+ export interface CompositedVideoArtifactsConfiguration {
217
+ /**
218
+ * The layout setting, such as GridView in the configuration object.
219
+ */
220
+ Layout?: LayoutOption;
221
+ /**
222
+ * The video resolution setting in the configuration object. Default: HD at 1280 x 720. FHD resolution: 1920 x 1080.
223
+ */
224
+ Resolution?: ResolutionOption;
225
+ /**
226
+ * The GridView configuration setting.
227
+ */
228
+ GridViewConfiguration: GridViewConfiguration;
229
+ }
230
+ export interface CompositedVideoConcatenationConfiguration {
231
+ /**
232
+ * Enables or disables the configuration object.
233
+ */
234
+ State: ArtifactsConcatenationState;
235
+ }
236
+ export interface ConcatenationSink {
237
+ /**
238
+ * The type of data sink in the configuration object.
239
+ */
240
+ Type: ConcatenationSinkType;
241
+ /**
242
+ * The configuration settings for an Amazon S3 bucket sink.
243
+ */
244
+ S3BucketSinkConfiguration: S3BucketSinkConfiguration;
245
+ }
246
+ export type ConcatenationSinkList = ConcatenationSink[];
247
+ export type ConcatenationSinkType = "S3Bucket"|string;
248
+ export interface ConcatenationSource {
249
+ /**
250
+ * The type of concatenation source in a configuration object.
251
+ */
252
+ Type: ConcatenationSourceType;
253
+ /**
254
+ * The concatenation settings for the media pipeline in a configuration object.
255
+ */
256
+ MediaCapturePipelineSourceConfiguration: MediaCapturePipelineSourceConfiguration;
257
+ }
258
+ export type ConcatenationSourceList = ConcatenationSource[];
259
+ export type ConcatenationSourceType = "MediaCapturePipeline"|string;
108
260
  export interface ContentArtifactsConfiguration {
109
261
  /**
110
262
  * Indicates whether the content artifact is enabled or disabled.
@@ -115,7 +267,14 @@ declare namespace ChimeSDKMediaPipelines {
115
267
  */
116
268
  MuxType?: ContentMuxType;
117
269
  }
270
+ export interface ContentConcatenationConfiguration {
271
+ /**
272
+ * Enables or disables the configuration object.
273
+ */
274
+ State: ArtifactsConcatenationState;
275
+ }
118
276
  export type ContentMuxType = "ContentOnly"|string;
277
+ export type ContentShareLayoutOption = "PresenterOnly"|"Horizontal"|"Vertical"|string;
119
278
  export interface CreateMediaCapturePipelineRequest {
120
279
  /**
121
280
  * Source type from which the media artifacts are captured. A Chime SDK Meeting is the only supported source.
@@ -126,7 +285,7 @@ declare namespace ChimeSDKMediaPipelines {
126
285
  */
127
286
  SourceArn: Arn;
128
287
  /**
129
- * Destination type to which the media artifacts are saved. You must use an S3 bucket.
288
+ * Destination type to which the media artifacts are saved. You must use an S3 bucket.
130
289
  */
131
290
  SinkType: MediaPipelineSinkType;
132
291
  /**
@@ -134,27 +293,87 @@ declare namespace ChimeSDKMediaPipelines {
134
293
  */
135
294
  SinkArn: Arn;
136
295
  /**
137
- * The token assigned to the client making the pipeline request.
296
+ * The unique identifier for the client request. The token makes the API request idempotent. Use a unique token for each media pipeline request.
138
297
  */
139
298
  ClientRequestToken?: ClientRequestToken;
140
299
  /**
141
- * The configuration for a specified media capture pipeline. SourceType must be ChimeSdkMeeting.
300
+ * The configuration for a specified media pipeline. SourceType must be ChimeSdkMeeting.
142
301
  */
143
302
  ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration;
144
303
  /**
145
- * The list of tags.
304
+ * The tag key-value pairs.
146
305
  */
147
306
  Tags?: TagList;
148
307
  }
149
308
  export interface CreateMediaCapturePipelineResponse {
150
309
  /**
151
- * A media capture pipeline object, the ID, source type, source ARN, sink type, and sink ARN of a media capture pipeline object.
310
+ * A media pipeline object, the ID, source type, source ARN, sink type, and sink ARN of a media pipeline object.
152
311
  */
153
312
  MediaCapturePipeline?: MediaCapturePipeline;
154
313
  }
314
+ export interface CreateMediaConcatenationPipelineRequest {
315
+ /**
316
+ * An object that specifies the sources for the media concatenation pipeline.
317
+ */
318
+ Sources: ConcatenationSourceList;
319
+ /**
320
+ * An object that specifies the data sinks for the media concatenation pipeline.
321
+ */
322
+ Sinks: ConcatenationSinkList;
323
+ /**
324
+ * The unique identifier for the client request. The token makes the API request idempotent. Use a unique token for each media concatenation pipeline request.
325
+ */
326
+ ClientRequestToken?: ClientRequestToken;
327
+ /**
328
+ * The tags associated with the media concatenation pipeline.
329
+ */
330
+ Tags?: TagList;
331
+ }
332
+ export interface CreateMediaConcatenationPipelineResponse {
333
+ /**
334
+ * A media concatenation pipeline object, the ID, source type, MediaPipelineARN, and sink of a media concatenation pipeline object.
335
+ */
336
+ MediaConcatenationPipeline?: MediaConcatenationPipeline;
337
+ }
338
+ export interface CreateMediaLiveConnectorPipelineRequest {
339
+ /**
340
+ * The media pipeline's data sources.
341
+ */
342
+ Sources: LiveConnectorSourceList;
343
+ /**
344
+ * The media pipeline's data sinks.
345
+ */
346
+ Sinks: LiveConnectorSinkList;
347
+ /**
348
+ * The token assigned to the client making the request.
349
+ */
350
+ ClientRequestToken?: ClientRequestToken;
351
+ /**
352
+ * The tags associated with the media pipeline.
353
+ */
354
+ Tags?: TagList;
355
+ }
356
+ export interface CreateMediaLiveConnectorPipelineResponse {
357
+ /**
358
+ * The new media pipeline.
359
+ */
360
+ MediaLiveConnectorPipeline?: MediaLiveConnectorPipeline;
361
+ }
362
+ export interface DataChannelConcatenationConfiguration {
363
+ /**
364
+ * Enables or disables the configuration object.
365
+ */
366
+ State: ArtifactsConcatenationState;
367
+ }
155
368
  export interface DeleteMediaCapturePipelineRequest {
156
369
  /**
157
- * The ID of the media capture pipeline being deleted.
370
+ * The ID of the media pipeline being deleted.
371
+ */
372
+ MediaPipelineId: GuidString;
373
+ }
374
+ export interface DeleteMediaPipelineRequest {
375
+ /**
376
+ * The ID of the media pipeline to delete.
158
377
  */
159
378
  MediaPipelineId: GuidString;
160
379
  }
@@ -168,12 +387,35 @@ declare namespace ChimeSDKMediaPipelines {
168
387
  }
169
388
  export interface GetMediaCapturePipelineResponse {
170
389
  /**
171
- * The media capture pipeline object.
390
+ * The media pipeline object.
172
391
  */
173
392
  MediaCapturePipeline?: MediaCapturePipeline;
174
393
  }
394
+ export interface GetMediaPipelineRequest {
395
+ /**
396
+ * The ID of the pipeline that you want to get.
397
+ */
398
+ MediaPipelineId: GuidString;
399
+ }
400
+ export interface GetMediaPipelineResponse {
401
+ /**
402
+ * The media pipeline object.
403
+ */
404
+ MediaPipeline?: MediaPipeline;
405
+ }
406
+ export interface GridViewConfiguration {
407
+ /**
408
+ * Defines the layout of the video tiles when content sharing is enabled.
409
+ */
410
+ ContentShareLayout: ContentShareLayoutOption;
411
+ /**
412
+ * Defines the configuration options for a presenter only video tile.
413
+ */
414
+ PresenterOnlyConfiguration?: PresenterOnlyConfiguration;
415
+ }
175
416
  export type GuidString = string;
176
417
  export type Iso8601Timestamp = Date;
418
+ export type LayoutOption = "GridView"|string;
177
419
  export interface ListMediaCapturePipelinesRequest {
178
420
  /**
179
421
  * The token used to retrieve the next page of results.
@@ -186,7 +428,7 @@ declare namespace ChimeSDKMediaPipelines {
186
428
  }
187
429
  export interface ListMediaCapturePipelinesResponse {
188
430
  /**
189
- * The media capture pipeline objects in the list.
431
+ * The media pipeline objects in the list.
190
432
  */
191
433
  MediaCapturePipelines?: MediaCapturePipelineSummaryList;
192
434
  /**
@@ -194,25 +436,84 @@ declare namespace ChimeSDKMediaPipelines {
194
436
  */
195
437
  NextToken?: String;
196
438
  }
439
+ export interface ListMediaPipelinesRequest {
440
+ /**
441
+ * The token used to retrieve the next page of results.
442
+ */
443
+ NextToken?: String;
444
+ /**
445
+ * The maximum number of results to return in a single call. Valid Range: 1 - 99.
446
+ */
447
+ MaxResults?: ResultMax;
448
+ }
449
+ export interface ListMediaPipelinesResponse {
450
+ /**
451
+ * The media pipeline objects in the list.
452
+ */
453
+ MediaPipelines?: MediaPipelineList;
454
+ /**
455
+ * The token used to retrieve the next page of results.
456
+ */
457
+ NextToken?: String;
458
+ }
197
459
  export interface ListTagsForResourceRequest {
198
460
  /**
199
- * The resource ARN.
461
+ * The ARN of the media pipeline associated with any tags. The ARN consists of the pipeline's region, resource ID, and pipeline ID.
200
462
  */
201
463
  ResourceARN: AmazonResourceName;
202
464
  }
203
465
  export interface ListTagsForResourceResponse {
204
466
  /**
205
- * The tag key-value pairs.
467
+ * The tags associated with the specified media pipeline.
206
468
  */
207
469
  Tags?: TagList;
208
470
  }
471
+ export type LiveConnectorMuxType = "AudioWithCompositedVideo"|"AudioWithActiveSpeakerVideo"|string;
472
+ export interface LiveConnectorRTMPConfiguration {
473
+ /**
474
+ * The URL of the RTMP configuration.
475
+ */
476
+ Url: SensitiveString;
477
+ /**
478
+ * The audio channels set for the RTMP configuration
479
+ */
480
+ AudioChannels?: AudioChannelsOption;
481
+ /**
482
+ * The audio sample rate set for the RTMP configuration. Default: 48000.
483
+ */
484
+ AudioSampleRate?: AudioSampleRateOption;
485
+ }
486
+ export interface LiveConnectorSinkConfiguration {
487
+ /**
488
+ * The sink configuration's sink type.
489
+ */
490
+ SinkType: LiveConnectorSinkType;
491
+ /**
492
+ * The sink configuration's RTMP configuration setttings.
493
+ */
494
+ RTMPConfiguration: LiveConnectorRTMPConfiguration;
495
+ }
496
+ export type LiveConnectorSinkList = LiveConnectorSinkConfiguration[];
497
+ export type LiveConnectorSinkType = "RTMP"|string;
498
+ export interface LiveConnectorSourceConfiguration {
499
+ /**
500
+ * The source configuration's media source type.
501
+ */
502
+ SourceType: LiveConnectorSourceType;
503
+ /**
504
+ * The configuration settings of the connector pipeline.
505
+ */
506
+ ChimeSdkMeetingLiveConnectorConfiguration: ChimeSdkMeetingLiveConnectorConfiguration;
507
+ }
508
+ export type LiveConnectorSourceList = LiveConnectorSourceConfiguration[];
509
+ export type LiveConnectorSourceType = "ChimeSdkMeeting"|string;
209
510
  export interface MediaCapturePipeline {
210
511
  /**
211
- * The ID of a media capture pipeline.
512
+ * The ID of a media pipeline.
212
513
  */
213
514
  MediaPipelineId?: GuidString;
214
515
  /**
215
- * The ARN of a media capture pipeline.
516
+ * The ARN of the media capture pipeline
216
517
  */
217
518
  MediaPipelineArn?: AmazonResourceName;
218
519
  /**
@@ -224,7 +525,7 @@ declare namespace ChimeSDKMediaPipelines {
224
525
  */
225
526
  SourceArn?: Arn;
226
527
  /**
227
- * The status of the media capture pipeline.
528
+ * The status of the media pipeline.
228
529
  */
229
530
  Status?: MediaPipelineStatus;
230
531
  /**
@@ -236,57 +537,173 @@ declare namespace ChimeSDKMediaPipelines {
236
537
  */
237
538
  SinkArn?: Arn;
238
539
  /**
239
- * The time at which the capture pipeline was created, in ISO 8601 format.
540
+ * The time at which the pipeline was created, in ISO 8601 format.
240
541
  */
241
542
  CreatedTimestamp?: Iso8601Timestamp;
242
543
  /**
243
- * The time at which the capture pipeline was updated, in ISO 8601 format.
544
+ * The time at which the pipeline was updated, in ISO 8601 format.
244
545
  */
245
546
  UpdatedTimestamp?: Iso8601Timestamp;
246
547
  /**
247
- * The configuration for a specified media capture pipeline. SourceType must be ChimeSdkMeeting.
548
+ * The configuration for a specified media pipeline. SourceType must be ChimeSdkMeeting.
248
549
  */
249
550
  ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration;
250
551
  }
552
+ export interface MediaCapturePipelineSourceConfiguration {
553
+ /**
554
+ * The media pipeline ARN in the configuration object of a media capture pipeline.
555
+ */
556
+ MediaPipelineArn: Arn;
557
+ /**
558
+ * The meeting configuration settings in a media capture pipeline configuration object.
559
+ */
560
+ ChimeSdkMeetingConfiguration: ChimeSdkMeetingConcatenationConfiguration;
561
+ }
251
562
  export interface MediaCapturePipelineSummary {
252
563
  /**
253
- * The ID of a media capture pipeline.
564
+ * The ID of the media pipeline in the summary.
254
565
  */
255
566
  MediaPipelineId?: GuidString;
256
567
  /**
257
- * The ARN of a media capture pipeline.
568
+ * The ARN of the media pipeline in the summary.
258
569
  */
259
570
  MediaPipelineArn?: AmazonResourceName;
260
571
  }
261
572
  export type MediaCapturePipelineSummaryList = MediaCapturePipelineSummary[];
573
+ export interface MediaConcatenationPipeline {
574
+ /**
575
+ * The ID of the media pipeline being concatenated.
576
+ */
577
+ MediaPipelineId?: GuidString;
578
+ /**
579
+ * The ARN of the media pipeline that you specify in the SourceConfiguration object.
580
+ */
581
+ MediaPipelineArn?: AmazonResourceName;
582
+ /**
583
+ * The data sources being concatnated.
584
+ */
585
+ Sources?: ConcatenationSourceList;
586
+ /**
587
+ * The data sinks of the concatenation pipeline.
588
+ */
589
+ Sinks?: ConcatenationSinkList;
590
+ /**
591
+ * The status of the concatenation pipeline.
592
+ */
593
+ Status?: MediaPipelineStatus;
594
+ /**
595
+ * The time at which the concatenation pipeline was created.
596
+ */
597
+ CreatedTimestamp?: Iso8601Timestamp;
598
+ /**
599
+ * The time at which the concatenation pipeline was last updated.
600
+ */
601
+ UpdatedTimestamp?: Iso8601Timestamp;
602
+ }
603
+ export interface MediaLiveConnectorPipeline {
604
+ /**
605
+ * The connector pipeline's data sources.
606
+ */
607
+ Sources?: LiveConnectorSourceList;
608
+ /**
609
+ * The connector pipeline's data sinks.
610
+ */
611
+ Sinks?: LiveConnectorSinkList;
612
+ /**
613
+ * The connector pipeline's ID.
614
+ */
615
+ MediaPipelineId?: GuidString;
616
+ /**
617
+ * The connector pipeline's ARN.
618
+ */
619
+ MediaPipelineArn?: AmazonResourceName;
620
+ /**
621
+ * The connector pipeline's status.
622
+ */
623
+ Status?: MediaPipelineStatus;
624
+ /**
625
+ * Thetime at which the connector pipeline was created.
626
+ */
627
+ CreatedTimestamp?: Iso8601Timestamp;
628
+ /**
629
+ * The time at which the connector pipeline was last updated.
630
+ */
631
+ UpdatedTimestamp?: Iso8601Timestamp;
632
+ }
633
+ export interface MediaPipeline {
634
+ /**
635
+ * A pipeline that enables users to capture audio and video.
636
+ */
637
+ MediaCapturePipeline?: MediaCapturePipeline;
638
+ /**
639
+ * The connector pipeline of the media pipeline.
640
+ */
641
+ MediaLiveConnectorPipeline?: MediaLiveConnectorPipeline;
642
+ /**
643
+ * The media concatenation pipeline in a media pipeline.
644
+ */
645
+ MediaConcatenationPipeline?: MediaConcatenationPipeline;
646
+ }
647
+ export type MediaPipelineList = MediaPipelineSummary[];
262
648
  export type MediaPipelineSinkType = "S3Bucket"|string;
263
649
  export type MediaPipelineSourceType = "ChimeSdkMeeting"|string;
264
650
  export type MediaPipelineStatus = "Initializing"|"InProgress"|"Failed"|"Stopping"|"Stopped"|string;
651
+ export interface MediaPipelineSummary {
652
+ /**
653
+ * The ID of the media pipeline in the summary.
654
+ */
655
+ MediaPipelineId?: GuidString;
656
+ /**
657
+ * The ARN of the media pipeline in the summary.
658
+ */
659
+ MediaPipelineArn?: AmazonResourceName;
660
+ }
661
+ export interface MeetingEventsConcatenationConfiguration {
662
+ /**
663
+ * Enables or disables the configuration object.
664
+ */
665
+ State: ArtifactsConcatenationState;
666
+ }
667
+ export interface PresenterOnlyConfiguration {
668
+ /**
669
+ * Defines the position of the presenter video tile. Default: TopRight.
670
+ */
671
+ PresenterPosition?: PresenterPosition;
672
+ }
673
+ export type PresenterPosition = "TopLeft"|"TopRight"|"BottomLeft"|"BottomRight"|string;
674
+ export type ResolutionOption = "HD"|"FHD"|string;
265
675
  export type ResultMax = number;
676
+ export interface S3BucketSinkConfiguration {
677
+ /**
678
+ * The destination URL of the S3 bucket.
679
+ */
680
+ Destination: Arn;
681
+ }
266
682
  export interface SelectedVideoStreams {
267
683
  /**
268
- * The attendee IDs of the streams selected for a media capture pipeline.
684
+ * The attendee IDs of the streams selected for a media pipeline.
269
685
  */
270
686
  AttendeeIds?: AttendeeIdList;
271
687
  /**
272
- * The external user IDs of the streams selected for a media capture pipeline.
688
+ * The external user IDs of the streams selected for a media pipeline.
273
689
  */
274
690
  ExternalUserIds?: ExternalUserIdList;
275
691
  }
692
+ export type SensitiveString = string;
276
693
  export interface SourceConfiguration {
277
694
  /**
278
- * The selected video streams to capture for a specified media capture pipeline. The number of video streams can't exceed 25.
695
+ * The selected video streams for a specified media pipeline. The number of video streams can't exceed 25.
279
696
  */
280
697
  SelectedVideoStreams?: SelectedVideoStreams;
281
698
  }
282
699
  export type String = string;
283
700
  export interface Tag {
284
701
  /**
285
- * The key of the tag.
702
+ * The key half of a tag.
286
703
  */
287
704
  Key: TagKey;
288
705
  /**
289
- * The value of the tag.
706
+ * The value half of a tag.
290
707
  */
291
708
  Value: TagValue;
292
709
  }
@@ -295,24 +712,30 @@ declare namespace ChimeSDKMediaPipelines {
295
712
  export type TagList = Tag[];
296
713
  export interface TagResourceRequest {
297
714
  /**
298
- * The resource ARN.
715
+ * The ARN of the media pipeline associated with any tags. The ARN consists of the pipeline's endpoint region, resource ID, and pipeline ID.
299
716
  */
300
717
  ResourceARN: AmazonResourceName;
301
718
  /**
302
- * The tag key-value pairs.
719
+ * The tags associated with the specified media pipeline.
303
720
  */
304
721
  Tags: TagList;
305
722
  }
306
723
  export interface TagResourceResponse {
307
724
  }
308
725
  export type TagValue = string;
726
+ export interface TranscriptionMessagesConcatenationConfiguration {
727
+ /**
728
+ * Enables or disables the configuration object.
729
+ */
730
+ State: ArtifactsConcatenationState;
731
+ }
309
732
  export interface UntagResourceRequest {
310
733
  /**
311
- * The resource ARN.
734
+ * The ARN of the pipeline that you want to untag.
312
735
  */
313
736
  ResourceARN: AmazonResourceName;
314
737
  /**
315
- * The tag keys.
738
+ * The key/value pairs in the tag that you want to remove.
316
739
  */
317
740
  TagKeys: TagKeyList;
318
741
  }
@@ -328,6 +751,12 @@ declare namespace ChimeSDKMediaPipelines {
328
751
  */
329
752
  MuxType?: VideoMuxType;
330
753
  }
754
+ export interface VideoConcatenationConfiguration {
755
+ /**
756
+ * Enables or disables the configuration object.
757
+ */
758
+ State: ArtifactsConcatenationState;
759
+ }
331
760
  export type VideoMuxType = "VideoOnly"|string;
332
761
  /**
333
762
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.