cdk-lambda-subminute 2.0.248 → 2.0.249
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/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +10 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +28 -9
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +296 -9
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/emr-serverless-2021-07-13.min.json +94 -73
- package/node_modules/aws-sdk/apis/finspace-data-2020-07-13.min.json +5 -3
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +4 -1
- package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +177 -168
- package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +32 -4
- package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +291 -2
- package/node_modules/aws-sdk/clients/emrserverless.d.ts +21 -0
- package/node_modules/aws-sdk/clients/finspacedata.d.ts +36 -36
- package/node_modules/aws-sdk/clients/quicksight.d.ts +7 -3
- package/node_modules/aws-sdk/clients/ssm.d.ts +7 -7
- package/node_modules/aws-sdk/clients/wafv2.d.ts +42 -32
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +8 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -60,11 +60,11 @@ declare class AmplifyUIBuilder extends Service {
|
|
60
60
|
*/
|
61
61
|
deleteTheme(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
62
62
|
/**
|
63
|
-
*
|
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
|
-
*
|
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
|
-
*
|
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
|
-
*
|
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
|
/**
|
@@ -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
|
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
|
-
*
|
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.
|
@@ -206,6 +206,11 @@ declare namespace EMRServerless {
|
|
206
206
|
* The specification applied to each worker type.
|
207
207
|
*/
|
208
208
|
workerTypeSpecifications?: WorkerTypeSpecificationMap;
|
209
|
+
/**
|
210
|
+
* The Configuration specifications of an application. Each configuration consists of a classification and properties. You use this parameter when creating or updating an application. To see the runtimeConfiguration object of an application, run the GetApplication API operation.
|
211
|
+
*/
|
212
|
+
runtimeConfiguration?: ConfigurationList;
|
213
|
+
monitoringConfiguration?: MonitoringConfiguration;
|
209
214
|
}
|
210
215
|
export type ApplicationArn = string;
|
211
216
|
export type ApplicationId = string;
|
@@ -396,6 +401,14 @@ declare namespace EMRServerless {
|
|
396
401
|
* The key-value pairs that specify worker type to WorkerTypeSpecificationInput. This parameter must contain all valid worker types for a Spark or Hive application. Valid worker types include Driver and Executor for Spark applications and HiveDriver and TezTask for Hive applications. You can either set image details in this parameter for each worker type, or in imageConfiguration for all worker types.
|
397
402
|
*/
|
398
403
|
workerTypeSpecifications?: WorkerTypeSpecificationInputMap;
|
404
|
+
/**
|
405
|
+
* The Configuration specifications to use when creating an application. Each configuration consists of a classification and properties. This configuration is applied to all the job runs submitted under the application.
|
406
|
+
*/
|
407
|
+
runtimeConfiguration?: ConfigurationList;
|
408
|
+
/**
|
409
|
+
* The configuration setting for monitoring.
|
410
|
+
*/
|
411
|
+
monitoringConfiguration?: MonitoringConfiguration;
|
399
412
|
}
|
400
413
|
export interface CreateApplicationResponse {
|
401
414
|
/**
|
@@ -987,6 +1000,14 @@ declare namespace EMRServerless {
|
|
987
1000
|
* The Amazon EMR release label for the application. You can change the release label to use a different release of Amazon EMR.
|
988
1001
|
*/
|
989
1002
|
releaseLabel?: ReleaseLabel;
|
1003
|
+
/**
|
1004
|
+
* The Configuration specifications to use when updating an application. Each configuration consists of a classification and properties. This configuration is applied across all the job runs submitted under the application.
|
1005
|
+
*/
|
1006
|
+
runtimeConfiguration?: ConfigurationList;
|
1007
|
+
/**
|
1008
|
+
* The configuration setting for monitoring.
|
1009
|
+
*/
|
1010
|
+
monitoringConfiguration?: MonitoringConfiguration;
|
990
1011
|
}
|
991
1012
|
export interface UpdateApplicationResponse {
|
992
1013
|
/**
|