aws-sdk 2.1462.0 → 2.1464.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.
@@ -60,11 +60,11 @@ declare class AmplifyUIBuilder extends Service {
60
60
  */
61
61
  deleteTheme(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
62
62
  /**
63
- * Exchanges an access code for a token.
63
+ * This is for internal use. Amplify uses this action to exchange an access code for a token.
64
64
  */
65
65
  exchangeCodeForToken(params: AmplifyUIBuilder.Types.ExchangeCodeForTokenRequest, callback?: (err: AWSError, data: AmplifyUIBuilder.Types.ExchangeCodeForTokenResponse) => void): Request<AmplifyUIBuilder.Types.ExchangeCodeForTokenResponse, AWSError>;
66
66
  /**
67
- * Exchanges an access code for a token.
67
+ * This is for internal use. Amplify uses this action to exchange an access code for a token.
68
68
  */
69
69
  exchangeCodeForToken(callback?: (err: AWSError, data: AmplifyUIBuilder.Types.ExchangeCodeForTokenResponse) => void): Request<AmplifyUIBuilder.Types.ExchangeCodeForTokenResponse, AWSError>;
70
70
  /**
@@ -172,11 +172,11 @@ declare class AmplifyUIBuilder extends Service {
172
172
  */
173
173
  putMetadataFlag(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
174
174
  /**
175
- * Refreshes a previously issued access token that might have expired.
175
+ * This is for internal use. Amplify uses this action to refresh a previously issued access token that might have expired.
176
176
  */
177
177
  refreshToken(params: AmplifyUIBuilder.Types.RefreshTokenRequest, callback?: (err: AWSError, data: AmplifyUIBuilder.Types.RefreshTokenResponse) => void): Request<AmplifyUIBuilder.Types.RefreshTokenResponse, AWSError>;
178
178
  /**
179
- * Refreshes a previously issued access token that might have expired.
179
+ * This is for internal use. Amplify uses this action to refresh a previously issued access token that might have expired.
180
180
  */
181
181
  refreshToken(callback?: (err: AWSError, data: AmplifyUIBuilder.Types.RefreshTokenResponse) => void): Request<AmplifyUIBuilder.Types.RefreshTokenResponse, AWSError>;
182
182
  /**
@@ -268,6 +268,25 @@ declare namespace AmplifyUIBuilder {
268
268
  export type AppId = string;
269
269
  export type AssociatedFieldsList = String[];
270
270
  export type Boolean = boolean;
271
+ export type CodegenDependencies = CodegenDependency[];
272
+ export interface CodegenDependency {
273
+ /**
274
+ * Name of the dependency package.
275
+ */
276
+ name?: String;
277
+ /**
278
+ * Indicates the version of the supported dependency package.
279
+ */
280
+ supportedVersion?: String;
281
+ /**
282
+ * Determines if the dependency package is using Semantic versioning. If set to true, it indicates that the dependency package uses Semantic versioning.
283
+ */
284
+ isSemVer?: Boolean;
285
+ /**
286
+ * Indicates the reason to include the dependency package in your project code.
287
+ */
288
+ reason?: String;
289
+ }
271
290
  export interface CodegenFeatureFlags {
272
291
  /**
273
292
  * Specifes whether a code generation job supports data relationships.
@@ -419,6 +438,10 @@ declare namespace AmplifyUIBuilder {
419
438
  * The time that the code generation job was modified.
420
439
  */
421
440
  modifiedAt?: SyntheticTimestamp_date_time;
441
+ /**
442
+ * Lists the dependency packages that may be required for the project code to run.
443
+ */
444
+ dependencies?: CodegenDependencies;
422
445
  }
423
446
  export interface CodegenJobAsset {
424
447
  /**
@@ -1801,6 +1824,7 @@ declare namespace AmplifyUIBuilder {
1801
1824
  */
1802
1825
  body: PutMetadataFlagBody;
1803
1826
  }
1827
+ export type ReactCodegenDependencies = {[key: string]: String};
1804
1828
  export interface ReactStartCodegenJobData {
1805
1829
  /**
1806
1830
  * The JavaScript module type.
@@ -1826,6 +1850,10 @@ declare namespace AmplifyUIBuilder {
1826
1850
  * The API configuration for the code generation job.
1827
1851
  */
1828
1852
  apiConfiguration?: ApiConfiguration;
1853
+ /**
1854
+ * Lists the dependency packages that may be required for the project code to run.
1855
+ */
1856
+ dependencies?: ReactCodegenDependencies;
1829
1857
  }
1830
1858
  export interface RefreshTokenRequest {
1831
1859
  /**
@@ -290,6 +290,21 @@ declare namespace Braket {
290
290
  */
291
291
  device: String256;
292
292
  }
293
+ export interface DeviceQueueInfo {
294
+ /**
295
+ * The name of the queue.
296
+ */
297
+ queue: QueueName;
298
+ /**
299
+ * Optional. Specifies the priority of the queue. Tasks in a priority queue are processed before the tasks in a normal queue.
300
+ */
301
+ queuePriority?: QueuePriority;
302
+ /**
303
+ * The number of jobs or tasks in the queue for a given device.
304
+ */
305
+ queueSize: String;
306
+ }
307
+ export type DeviceQueueInfoList = DeviceQueueInfo[];
293
308
  export type DeviceStatus = "ONLINE"|"OFFLINE"|"RETIRED"|string;
294
309
  export interface DeviceSummary {
295
310
  /**
@@ -334,6 +349,10 @@ declare namespace Braket {
334
349
  * The name of the device.
335
350
  */
336
351
  deviceName: String;
352
+ /**
353
+ * List of information about tasks and jobs queued on a device.
354
+ */
355
+ deviceQueueInfo?: DeviceQueueInfoList;
337
356
  /**
338
357
  * The status of the device.
339
358
  */
@@ -348,6 +367,10 @@ declare namespace Braket {
348
367
  providerName: String;
349
368
  }
350
369
  export interface GetJobRequest {
370
+ /**
371
+ * A list of attributes to return information for.
372
+ */
373
+ additionalAttributeNames?: HybridJobAdditionalAttributeNamesList;
351
374
  /**
352
375
  * The ARN of the job to retrieve.
353
376
  */
@@ -410,6 +433,10 @@ declare namespace Braket {
410
433
  * The path to the S3 location where job artifacts are stored and the encryption key used to store them there.
411
434
  */
412
435
  outputDataConfig: JobOutputDataConfig;
436
+ /**
437
+ * Queue information for the requested job. Only returned if QueueInfo is specified in the additionalAttributeNames" field in the GetJob API request.
438
+ */
439
+ queueInfo?: HybridJobQueueInfo;
413
440
  /**
414
441
  * The Amazon Resource Name (ARN) of an IAM role that Amazon Braket can assume to perform tasks on behalf of a user. It can access user resources, run an Amazon Braket job container on behalf of user, and output resources to the s3 buckets of a user.
415
442
  */
@@ -433,6 +460,10 @@ declare namespace Braket {
433
460
  }
434
461
  export type GetJobResponseJobNameString = string;
435
462
  export interface GetQuantumTaskRequest {
463
+ /**
464
+ * A list of attributes to return information for.
465
+ */
466
+ additionalAttributeNames?: QuantumTaskAdditionalAttributeNamesList;
436
467
  /**
437
468
  * the ARN of the task to retrieve.
438
469
  */
@@ -475,6 +506,10 @@ declare namespace Braket {
475
506
  * The ARN of the task.
476
507
  */
477
508
  quantumTaskArn: QuantumTaskArn;
509
+ /**
510
+ * Queue information for the requested quantum task. Only returned if QueueInfo is specified in the additionalAttributeNames" field in the GetQuantumTask API request.
511
+ */
512
+ queueInfo?: QuantumTaskQueueInfo;
478
513
  /**
479
514
  * The number of shots used in the task.
480
515
  */
@@ -488,6 +523,22 @@ declare namespace Braket {
488
523
  */
489
524
  tags?: TagsMap;
490
525
  }
526
+ export type HybridJobAdditionalAttributeName = "QueueInfo"|string;
527
+ export type HybridJobAdditionalAttributeNamesList = HybridJobAdditionalAttributeName[];
528
+ export interface HybridJobQueueInfo {
529
+ /**
530
+ * Optional. Provides more information about the queue position. For example, if the job is complete and no longer in the queue, the message field contains that information.
531
+ */
532
+ message?: String;
533
+ /**
534
+ * Current position of the job in the jobs queue.
535
+ */
536
+ position: String;
537
+ /**
538
+ * The name of the queue.
539
+ */
540
+ queue: QueueName;
541
+ }
491
542
  export type HyperParameters = {[key: string]: HyperParametersValueString};
492
543
  export type HyperParametersValueString = string;
493
544
  export type InputConfigList = InputFileConfig[];
@@ -620,7 +671,27 @@ declare namespace Braket {
620
671
  tags?: TagsMap;
621
672
  }
622
673
  export type Long = number;
674
+ export type QuantumTaskAdditionalAttributeName = "QueueInfo"|string;
675
+ export type QuantumTaskAdditionalAttributeNamesList = QuantumTaskAdditionalAttributeName[];
623
676
  export type QuantumTaskArn = string;
677
+ export interface QuantumTaskQueueInfo {
678
+ /**
679
+ * Optional. Provides more information about the queue position. For example, if the task is complete and no longer in the queue, the message field contains that information.
680
+ */
681
+ message?: String;
682
+ /**
683
+ * Current position of the task in the quantum tasks queue.
684
+ */
685
+ position: String;
686
+ /**
687
+ * The name of the queue.
688
+ */
689
+ queue: QueueName;
690
+ /**
691
+ * Optional. Specifies the priority of the queue. Quantum tasks in a priority queue are processed before the tasks in a normal queue.
692
+ */
693
+ queuePriority?: QueuePriority;
694
+ }
624
695
  export type QuantumTaskStatus = "CREATED"|"QUEUED"|"RUNNING"|"COMPLETED"|"FAILED"|"CANCELLING"|"CANCELLED"|string;
625
696
  export interface QuantumTaskSummary {
626
697
  /**
@@ -661,6 +732,8 @@ declare namespace Braket {
661
732
  tags?: TagsMap;
662
733
  }
663
734
  export type QuantumTaskSummaryList = QuantumTaskSummary[];
735
+ export type QueueName = "QUANTUM_TASKS_QUEUE"|"JOBS_QUEUE"|string;
736
+ export type QueuePriority = "Normal"|"Priority"|string;
664
737
  export type RoleArn = string;
665
738
  export interface S3DataSource {
666
739
  /**
@@ -51,6 +51,22 @@ declare class ChimeSDKMediaPipelines extends Service {
51
51
  * Creates a media live connector pipeline in an Amazon Chime SDK meeting.
52
52
  */
53
53
  createMediaLiveConnectorPipeline(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.CreateMediaLiveConnectorPipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.CreateMediaLiveConnectorPipelineResponse, AWSError>;
54
+ /**
55
+ * Creates an Kinesis video stream pool for the media pipeline.
56
+ */
57
+ createMediaPipelineKinesisVideoStreamPool(params: ChimeSDKMediaPipelines.Types.CreateMediaPipelineKinesisVideoStreamPoolRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.CreateMediaPipelineKinesisVideoStreamPoolResponse) => void): Request<ChimeSDKMediaPipelines.Types.CreateMediaPipelineKinesisVideoStreamPoolResponse, AWSError>;
58
+ /**
59
+ * Creates an Kinesis video stream pool for the media pipeline.
60
+ */
61
+ createMediaPipelineKinesisVideoStreamPool(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.CreateMediaPipelineKinesisVideoStreamPoolResponse) => void): Request<ChimeSDKMediaPipelines.Types.CreateMediaPipelineKinesisVideoStreamPoolResponse, AWSError>;
62
+ /**
63
+ * Creates a streaming media pipeline.
64
+ */
65
+ createMediaStreamPipeline(params: ChimeSDKMediaPipelines.Types.CreateMediaStreamPipelineRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.CreateMediaStreamPipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.CreateMediaStreamPipelineResponse, AWSError>;
66
+ /**
67
+ * Creates a streaming media pipeline.
68
+ */
69
+ createMediaStreamPipeline(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.CreateMediaStreamPipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.CreateMediaStreamPipelineResponse, AWSError>;
54
70
  /**
55
71
  * Deletes the media pipeline.
56
72
  */
@@ -75,6 +91,14 @@ declare class ChimeSDKMediaPipelines extends Service {
75
91
  * Deletes the media pipeline.
76
92
  */
77
93
  deleteMediaPipeline(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
94
+ /**
95
+ * Deletes an Kinesis video stream pool.
96
+ */
97
+ deleteMediaPipelineKinesisVideoStreamPool(params: ChimeSDKMediaPipelines.Types.DeleteMediaPipelineKinesisVideoStreamPoolRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
98
+ /**
99
+ * Deletes an Kinesis video stream pool.
100
+ */
101
+ deleteMediaPipelineKinesisVideoStreamPool(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
78
102
  /**
79
103
  * Gets an existing media pipeline.
80
104
  */
@@ -99,6 +123,14 @@ declare class ChimeSDKMediaPipelines extends Service {
99
123
  * Gets an existing media pipeline.
100
124
  */
101
125
  getMediaPipeline(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetMediaPipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetMediaPipelineResponse, AWSError>;
126
+ /**
127
+ * Gets an Kinesis video stream pool.
128
+ */
129
+ getMediaPipelineKinesisVideoStreamPool(params: ChimeSDKMediaPipelines.Types.GetMediaPipelineKinesisVideoStreamPoolRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetMediaPipelineKinesisVideoStreamPoolResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetMediaPipelineKinesisVideoStreamPoolResponse, AWSError>;
130
+ /**
131
+ * Gets an Kinesis video stream pool.
132
+ */
133
+ getMediaPipelineKinesisVideoStreamPool(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetMediaPipelineKinesisVideoStreamPoolResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetMediaPipelineKinesisVideoStreamPoolResponse, AWSError>;
102
134
  /**
103
135
  * Retrieves the details of the specified speaker search task.
104
136
  */
@@ -131,6 +163,14 @@ declare class ChimeSDKMediaPipelines extends Service {
131
163
  * Lists the available media insights pipeline configurations.
132
164
  */
133
165
  listMediaInsightsPipelineConfigurations(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.ListMediaInsightsPipelineConfigurationsResponse) => void): Request<ChimeSDKMediaPipelines.Types.ListMediaInsightsPipelineConfigurationsResponse, AWSError>;
166
+ /**
167
+ * Lists the video stream pools in the media pipeline.
168
+ */
169
+ listMediaPipelineKinesisVideoStreamPools(params: ChimeSDKMediaPipelines.Types.ListMediaPipelineKinesisVideoStreamPoolsRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.ListMediaPipelineKinesisVideoStreamPoolsResponse) => void): Request<ChimeSDKMediaPipelines.Types.ListMediaPipelineKinesisVideoStreamPoolsResponse, AWSError>;
170
+ /**
171
+ * Lists the video stream pools in the media pipeline.
172
+ */
173
+ listMediaPipelineKinesisVideoStreamPools(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.ListMediaPipelineKinesisVideoStreamPoolsResponse) => void): Request<ChimeSDKMediaPipelines.Types.ListMediaPipelineKinesisVideoStreamPoolsResponse, AWSError>;
134
174
  /**
135
175
  * Returns a list of media pipelines.
136
176
  */
@@ -211,6 +251,14 @@ declare class ChimeSDKMediaPipelines extends Service {
211
251
  * Updates the status of a media insights pipeline.
212
252
  */
213
253
  updateMediaInsightsPipelineStatus(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
254
+ /**
255
+ * Updates an Kinesis video stream pool in a media pipeline.
256
+ */
257
+ updateMediaPipelineKinesisVideoStreamPool(params: ChimeSDKMediaPipelines.Types.UpdateMediaPipelineKinesisVideoStreamPoolRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.UpdateMediaPipelineKinesisVideoStreamPoolResponse) => void): Request<ChimeSDKMediaPipelines.Types.UpdateMediaPipelineKinesisVideoStreamPoolResponse, AWSError>;
258
+ /**
259
+ * Updates an Kinesis video stream pool in a media pipeline.
260
+ */
261
+ updateMediaPipelineKinesisVideoStreamPool(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.UpdateMediaPipelineKinesisVideoStreamPoolResponse) => void): Request<ChimeSDKMediaPipelines.Types.UpdateMediaPipelineKinesisVideoStreamPoolResponse, AWSError>;
214
262
  }
215
263
  declare namespace ChimeSDKMediaPipelines {
216
264
  export interface ActiveSpeakerOnlyConfiguration {
@@ -413,6 +461,7 @@ declare namespace ChimeSDKMediaPipelines {
413
461
  }
414
462
  export type AudioMuxType = "AudioOnly"|"AudioWithActiveSpeakerVideo"|"AudioWithCompositedVideo"|string;
415
463
  export type AudioSampleRateOption = string;
464
+ export type AwsRegion = string;
416
465
  export type Boolean = boolean;
417
466
  export type BorderColor = "Black"|"Blue"|"Red"|"Green"|"White"|"Yellow"|string;
418
467
  export type BorderThickness = number;
@@ -684,12 +733,62 @@ declare namespace ChimeSDKMediaPipelines {
684
733
  */
685
734
  MediaLiveConnectorPipeline?: MediaLiveConnectorPipeline;
686
735
  }
736
+ export interface CreateMediaPipelineKinesisVideoStreamPoolRequest {
737
+ /**
738
+ * The configuration settings for the video stream.
739
+ */
740
+ StreamConfiguration: KinesisVideoStreamConfiguration;
741
+ /**
742
+ * The name of the video stream pool.
743
+ */
744
+ PoolName: KinesisVideoStreamPoolName;
745
+ /**
746
+ * The token assigned to the client making the request.
747
+ */
748
+ ClientRequestToken?: ClientRequestToken;
749
+ /**
750
+ * The tags assigned to the video stream pool.
751
+ */
752
+ Tags?: TagList;
753
+ }
754
+ export interface CreateMediaPipelineKinesisVideoStreamPoolResponse {
755
+ /**
756
+ * The configuration for the Kinesis video stream pool.
757
+ */
758
+ KinesisVideoStreamPoolConfiguration?: KinesisVideoStreamPoolConfiguration;
759
+ }
760
+ export interface CreateMediaStreamPipelineRequest {
761
+ /**
762
+ * The data sources for the media pipeline.
763
+ */
764
+ Sources: MediaStreamSourceList;
765
+ /**
766
+ * The data sink for the media pipeline.
767
+ */
768
+ Sinks: MediaStreamSinkList;
769
+ /**
770
+ * The token assigned to the client making the request.
771
+ */
772
+ ClientRequestToken?: ClientRequestToken;
773
+ /**
774
+ * The tags assigned to the media pipeline.
775
+ */
776
+ Tags?: TagList;
777
+ }
778
+ export interface CreateMediaStreamPipelineResponse {
779
+ /**
780
+ * The requested media pipeline.
781
+ */
782
+ MediaStreamPipeline?: MediaStreamPipeline;
783
+ }
687
784
  export interface DataChannelConcatenationConfiguration {
688
785
  /**
689
786
  * Enables or disables the configuration object.
690
787
  */
691
788
  State: ArtifactsConcatenationState;
692
789
  }
790
+ export type DataRetentionChangeInHours = number;
791
+ export type DataRetentionInHours = number;
693
792
  export interface DeleteMediaCapturePipelineRequest {
694
793
  /**
695
794
  * The ID of the media pipeline being deleted.
@@ -702,6 +801,12 @@ declare namespace ChimeSDKMediaPipelines {
702
801
  */
703
802
  Identifier: NonEmptyString;
704
803
  }
804
+ export interface DeleteMediaPipelineKinesisVideoStreamPoolRequest {
805
+ /**
806
+ * The ID of the pool being deleted.
807
+ */
808
+ Identifier: NonEmptyString;
809
+ }
705
810
  export interface DeleteMediaPipelineRequest {
706
811
  /**
707
812
  * The ID of the media pipeline to delete.
@@ -746,6 +851,18 @@ declare namespace ChimeSDKMediaPipelines {
746
851
  */
747
852
  MediaInsightsPipelineConfiguration?: MediaInsightsPipelineConfiguration;
748
853
  }
854
+ export interface GetMediaPipelineKinesisVideoStreamPoolRequest {
855
+ /**
856
+ * The ID of the video stream pool.
857
+ */
858
+ Identifier: NonEmptyString;
859
+ }
860
+ export interface GetMediaPipelineKinesisVideoStreamPoolResponse {
861
+ /**
862
+ * The video stream pool configuration object.
863
+ */
864
+ KinesisVideoStreamPoolConfiguration?: KinesisVideoStreamPoolConfiguration;
865
+ }
749
866
  export interface GetMediaPipelineRequest {
750
867
  /**
751
868
  * The ID of the pipeline that you want to get.
@@ -780,7 +897,7 @@ declare namespace ChimeSDKMediaPipelines {
780
897
  */
781
898
  Identifier: NonEmptyString;
782
899
  /**
783
- * The ID of the voice tone anlysis task.
900
+ * The ID of the voice tone analysis task.
784
901
  */
785
902
  VoiceToneAnalysisTaskId: GuidString;
786
903
  }
@@ -836,7 +953,7 @@ declare namespace ChimeSDKMediaPipelines {
836
953
  */
837
954
  TileCount?: TileCount;
838
955
  /**
839
- * Sets the aspect ratio of the video tiles, such as 16:9.
956
+ * Specifies the aspect ratio of all video tiles.
840
957
  */
841
958
  TileAspectRatio?: TileAspectRatio;
842
959
  }
@@ -871,6 +988,75 @@ declare namespace ChimeSDKMediaPipelines {
871
988
  InsightsTarget?: Arn;
872
989
  }
873
990
  export type KinesisVideoStreamArn = string;
991
+ export interface KinesisVideoStreamConfiguration {
992
+ /**
993
+ * The Amazon Web Services Region of the video stream.
994
+ */
995
+ Region: AwsRegion;
996
+ /**
997
+ * The amount of time that data is retained.
998
+ */
999
+ DataRetentionInHours?: DataRetentionInHours;
1000
+ }
1001
+ export interface KinesisVideoStreamConfigurationUpdate {
1002
+ /**
1003
+ * The updated time that data is retained.
1004
+ */
1005
+ DataRetentionInHours?: DataRetentionChangeInHours;
1006
+ }
1007
+ export interface KinesisVideoStreamPoolConfiguration {
1008
+ /**
1009
+ * The ARN of the video stream pool configuration.
1010
+ */
1011
+ PoolArn?: Arn;
1012
+ /**
1013
+ * The name of the video stream pool configuration.
1014
+ */
1015
+ PoolName?: KinesisVideoStreamPoolName;
1016
+ /**
1017
+ * The ID of the video stream pool in the configuration.
1018
+ */
1019
+ PoolId?: KinesisVideoStreamPoolId;
1020
+ /**
1021
+ * The status of the video stream pool in the configuration.
1022
+ */
1023
+ PoolStatus?: KinesisVideoStreamPoolStatus;
1024
+ /**
1025
+ * The size of the video stream pool in the configuration.
1026
+ */
1027
+ PoolSize?: KinesisVideoStreamPoolSize;
1028
+ /**
1029
+ * The Kinesis video stream pool configuration object.
1030
+ */
1031
+ StreamConfiguration?: KinesisVideoStreamConfiguration;
1032
+ /**
1033
+ * The time at which the configuration was created.
1034
+ */
1035
+ CreatedTimestamp?: Iso8601Timestamp;
1036
+ /**
1037
+ * The time at which the configuration was updated.
1038
+ */
1039
+ UpdatedTimestamp?: Iso8601Timestamp;
1040
+ }
1041
+ export type KinesisVideoStreamPoolId = string;
1042
+ export type KinesisVideoStreamPoolName = string;
1043
+ export type KinesisVideoStreamPoolSize = number;
1044
+ export type KinesisVideoStreamPoolStatus = "CREATING"|"ACTIVE"|"UPDATING"|"DELETING"|"FAILED"|string;
1045
+ export interface KinesisVideoStreamPoolSummary {
1046
+ /**
1047
+ * The name of the video stream pool.
1048
+ */
1049
+ PoolName?: KinesisVideoStreamPoolName;
1050
+ /**
1051
+ * The ID of the video stream pool.
1052
+ */
1053
+ PoolId?: KinesisVideoStreamPoolId;
1054
+ /**
1055
+ * The ARN of the video stream pool.
1056
+ */
1057
+ PoolArn?: Arn;
1058
+ }
1059
+ export type KinesisVideoStreamPoolSummaryList = KinesisVideoStreamPoolSummary[];
874
1060
  export interface KinesisVideoStreamRecordingSourceRuntimeConfiguration {
875
1061
  /**
876
1062
  * The stream or streams to be recorded.
@@ -957,6 +1143,26 @@ declare namespace ChimeSDKMediaPipelines {
957
1143
  */
958
1144
  NextToken?: String;
959
1145
  }
1146
+ export interface ListMediaPipelineKinesisVideoStreamPoolsRequest {
1147
+ /**
1148
+ * The token used to return the next page of results.
1149
+ */
1150
+ NextToken?: String;
1151
+ /**
1152
+ * The maximum number of results to return in a single call.
1153
+ */
1154
+ MaxResults?: ResultMax;
1155
+ }
1156
+ export interface ListMediaPipelineKinesisVideoStreamPoolsResponse {
1157
+ /**
1158
+ * The list of video stream pools.
1159
+ */
1160
+ KinesisVideoStreamPools?: KinesisVideoStreamPoolSummaryList;
1161
+ /**
1162
+ * The token used to return the next page of results.
1163
+ */
1164
+ NextToken?: String;
1165
+ }
960
1166
  export interface ListMediaPipelinesRequest {
961
1167
  /**
962
1168
  * The token used to retrieve the next page of results.
@@ -1317,6 +1523,10 @@ declare namespace ChimeSDKMediaPipelines {
1317
1523
  * The media insights pipeline of a media pipeline.
1318
1524
  */
1319
1525
  MediaInsightsPipeline?: MediaInsightsPipeline;
1526
+ /**
1527
+ * Designates a media pipeline as a media stream pipeline.
1528
+ */
1529
+ MediaStreamPipeline?: MediaStreamPipeline;
1320
1530
  }
1321
1531
  export type MediaPipelineElementStatus = "NotStarted"|"NotSupported"|"Initializing"|"InProgress"|"Failed"|"Stopping"|"Stopped"|"Paused"|string;
1322
1532
  export type MediaPipelineList = MediaPipelineSummary[];
@@ -1336,6 +1546,68 @@ declare namespace ChimeSDKMediaPipelines {
1336
1546
  }
1337
1547
  export type MediaPipelineTaskStatus = "NotStarted"|"Initializing"|"InProgress"|"Failed"|"Stopping"|"Stopped"|string;
1338
1548
  export type MediaSampleRateHertz = number;
1549
+ export interface MediaStreamPipeline {
1550
+ /**
1551
+ * The ID of the media stream pipeline
1552
+ */
1553
+ MediaPipelineId?: GuidString;
1554
+ /**
1555
+ * The ARN of the media stream pipeline.
1556
+ */
1557
+ MediaPipelineArn?: AmazonResourceName;
1558
+ /**
1559
+ * The time at which the media stream pipeline was created.
1560
+ */
1561
+ CreatedTimestamp?: Iso8601Timestamp;
1562
+ /**
1563
+ * The time at which the media stream pipeline was updated.
1564
+ */
1565
+ UpdatedTimestamp?: Iso8601Timestamp;
1566
+ /**
1567
+ * The status of the media stream pipeline.
1568
+ */
1569
+ Status?: MediaPipelineStatus;
1570
+ /**
1571
+ * The media stream pipeline's data sources.
1572
+ */
1573
+ Sources?: MediaStreamSourceList;
1574
+ /**
1575
+ * The media stream pipeline's data sinks.
1576
+ */
1577
+ Sinks?: MediaStreamSinkList;
1578
+ }
1579
+ export type MediaStreamPipelineSinkType = "KinesisVideoStreamPool"|string;
1580
+ export interface MediaStreamSink {
1581
+ /**
1582
+ * The ARN of the media stream sink.
1583
+ */
1584
+ SinkArn: Arn;
1585
+ /**
1586
+ * The media stream sink's type.
1587
+ */
1588
+ SinkType: MediaStreamPipelineSinkType;
1589
+ /**
1590
+ * Specifies the number of streams that the sink can accept.
1591
+ */
1592
+ ReservedStreamCapacity: ReservedStreamCapacity;
1593
+ /**
1594
+ * The media stream sink's media stream type.
1595
+ */
1596
+ MediaStreamType: MediaStreamType;
1597
+ }
1598
+ export type MediaStreamSinkList = MediaStreamSink[];
1599
+ export interface MediaStreamSource {
1600
+ /**
1601
+ * The type of media stream source.
1602
+ */
1603
+ SourceType: MediaPipelineSourceType;
1604
+ /**
1605
+ * The ARN of the media stream source.
1606
+ */
1607
+ SourceArn: Arn;
1608
+ }
1609
+ export type MediaStreamSourceList = MediaStreamSource[];
1610
+ export type MediaStreamType = "MixedAudio"|"IndividualAudio"|string;
1339
1611
  export interface MeetingEventsConcatenationConfiguration {
1340
1612
  /**
1341
1613
  * Enables or disables the configuration object.
@@ -1411,6 +1683,7 @@ declare namespace ChimeSDKMediaPipelines {
1411
1683
  StreamArn?: KinesisVideoStreamArn;
1412
1684
  }
1413
1685
  export type RecordingStreamList = RecordingStreamConfiguration[];
1686
+ export type ReservedStreamCapacity = number;
1414
1687
  export type ResolutionOption = "HD"|"FHD"|string;
1415
1688
  export type ResultMax = number;
1416
1689
  export type RuleName = string;
@@ -1689,6 +1962,22 @@ declare namespace ChimeSDKMediaPipelines {
1689
1962
  */
1690
1963
  UpdateStatus: MediaPipelineStatusUpdate;
1691
1964
  }
1965
+ export interface UpdateMediaPipelineKinesisVideoStreamPoolRequest {
1966
+ /**
1967
+ * The ID of the video stream pool.
1968
+ */
1969
+ Identifier: NonEmptyString;
1970
+ /**
1971
+ * The configuration settings for the video stream.
1972
+ */
1973
+ StreamConfiguration?: KinesisVideoStreamConfigurationUpdate;
1974
+ }
1975
+ export interface UpdateMediaPipelineKinesisVideoStreamPoolResponse {
1976
+ /**
1977
+ * The video stream pool configuration object.
1978
+ */
1979
+ KinesisVideoStreamPoolConfiguration?: KinesisVideoStreamPoolConfiguration;
1980
+ }
1692
1981
  export interface VerticalLayoutConfiguration {
1693
1982
  /**
1694
1983
  * Sets the automatic ordering of the video tiles.