aws-sdk 2.1449.0 → 2.1450.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 +6 -1
- package/README.md +1 -1
- package/apis/chime-sdk-media-pipelines-2021-07-15.min.json +222 -0
- package/apis/connect-2017-08-08.min.json +589 -186
- package/apis/connect-2017-08-08.paginators.json +12 -0
- package/clients/chimesdkmediapipelines.d.ts +201 -1
- package/clients/connect.d.ts +440 -13
- package/clients/identitystore.d.ts +26 -26
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +4 -4
- package/dist/aws-sdk.js +604 -189
- package/dist/aws-sdk.min.js +80 -80
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -228,6 +228,18 @@
|
|
228
228
|
"output_token": "NextToken",
|
229
229
|
"result_key": "UserSummaryList"
|
230
230
|
},
|
231
|
+
"ListViewVersions": {
|
232
|
+
"input_token": "NextToken",
|
233
|
+
"limit_key": "MaxResults",
|
234
|
+
"output_token": "NextToken",
|
235
|
+
"result_key": "ViewVersionSummaryList"
|
236
|
+
},
|
237
|
+
"ListViews": {
|
238
|
+
"input_token": "NextToken",
|
239
|
+
"limit_key": "MaxResults",
|
240
|
+
"output_token": "NextToken",
|
241
|
+
"result_key": "ViewsSummaryList"
|
242
|
+
},
|
231
243
|
"SearchAvailablePhoneNumbers": {
|
232
244
|
"input_token": "NextToken",
|
233
245
|
"limit_key": "MaxResults",
|
@@ -99,6 +99,22 @@ declare class ChimeSDKMediaPipelines extends Service {
|
|
99
99
|
* Gets an existing media pipeline.
|
100
100
|
*/
|
101
101
|
getMediaPipeline(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetMediaPipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetMediaPipelineResponse, AWSError>;
|
102
|
+
/**
|
103
|
+
* Retrieves the details of the specified speaker search task.
|
104
|
+
*/
|
105
|
+
getSpeakerSearchTask(params: ChimeSDKMediaPipelines.Types.GetSpeakerSearchTaskRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetSpeakerSearchTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetSpeakerSearchTaskResponse, AWSError>;
|
106
|
+
/**
|
107
|
+
* Retrieves the details of the specified speaker search task.
|
108
|
+
*/
|
109
|
+
getSpeakerSearchTask(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetSpeakerSearchTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetSpeakerSearchTaskResponse, AWSError>;
|
110
|
+
/**
|
111
|
+
* Retrieves the details of a voice tone analysis task.
|
112
|
+
*/
|
113
|
+
getVoiceToneAnalysisTask(params: ChimeSDKMediaPipelines.Types.GetVoiceToneAnalysisTaskRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetVoiceToneAnalysisTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetVoiceToneAnalysisTaskResponse, AWSError>;
|
114
|
+
/**
|
115
|
+
* Retrieves the details of a voice tone analysis task.
|
116
|
+
*/
|
117
|
+
getVoiceToneAnalysisTask(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetVoiceToneAnalysisTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetVoiceToneAnalysisTaskResponse, AWSError>;
|
102
118
|
/**
|
103
119
|
* Returns a list of media pipelines.
|
104
120
|
*/
|
@@ -131,6 +147,38 @@ declare class ChimeSDKMediaPipelines extends Service {
|
|
131
147
|
* Lists the tags available for a media pipeline.
|
132
148
|
*/
|
133
149
|
listTagsForResource(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.ListTagsForResourceResponse) => void): Request<ChimeSDKMediaPipelines.Types.ListTagsForResourceResponse, AWSError>;
|
150
|
+
/**
|
151
|
+
* Starts a speaker search task. Before starting any speaker search tasks, you must provide all notices and obtain all consents from the speaker as required under applicable privacy and biometrics laws, and as required under the AWS service terms for the Amazon Chime SDK.
|
152
|
+
*/
|
153
|
+
startSpeakerSearchTask(params: ChimeSDKMediaPipelines.Types.StartSpeakerSearchTaskRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.StartSpeakerSearchTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.StartSpeakerSearchTaskResponse, AWSError>;
|
154
|
+
/**
|
155
|
+
* Starts a speaker search task. Before starting any speaker search tasks, you must provide all notices and obtain all consents from the speaker as required under applicable privacy and biometrics laws, and as required under the AWS service terms for the Amazon Chime SDK.
|
156
|
+
*/
|
157
|
+
startSpeakerSearchTask(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.StartSpeakerSearchTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.StartSpeakerSearchTaskResponse, AWSError>;
|
158
|
+
/**
|
159
|
+
* Starts a voice tone analysis task. For more information about voice tone analysis, see Using Amazon Chime SDK voice analytics in the Amazon Chime SDK Developer Guide. Before starting any voice tone analysis tasks, you must provide all notices and obtain all consents from the speaker as required under applicable privacy and biometrics laws, and as required under the AWS service terms for the Amazon Chime SDK.
|
160
|
+
*/
|
161
|
+
startVoiceToneAnalysisTask(params: ChimeSDKMediaPipelines.Types.StartVoiceToneAnalysisTaskRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.StartVoiceToneAnalysisTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.StartVoiceToneAnalysisTaskResponse, AWSError>;
|
162
|
+
/**
|
163
|
+
* Starts a voice tone analysis task. For more information about voice tone analysis, see Using Amazon Chime SDK voice analytics in the Amazon Chime SDK Developer Guide. Before starting any voice tone analysis tasks, you must provide all notices and obtain all consents from the speaker as required under applicable privacy and biometrics laws, and as required under the AWS service terms for the Amazon Chime SDK.
|
164
|
+
*/
|
165
|
+
startVoiceToneAnalysisTask(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.StartVoiceToneAnalysisTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.StartVoiceToneAnalysisTaskResponse, AWSError>;
|
166
|
+
/**
|
167
|
+
* Stops a speaker search task.
|
168
|
+
*/
|
169
|
+
stopSpeakerSearchTask(params: ChimeSDKMediaPipelines.Types.StopSpeakerSearchTaskRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
170
|
+
/**
|
171
|
+
* Stops a speaker search task.
|
172
|
+
*/
|
173
|
+
stopSpeakerSearchTask(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
174
|
+
/**
|
175
|
+
* Stops a voice tone analysis task.
|
176
|
+
*/
|
177
|
+
stopVoiceToneAnalysisTask(params: ChimeSDKMediaPipelines.Types.StopVoiceToneAnalysisTaskRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
178
|
+
/**
|
179
|
+
* Stops a voice tone analysis task.
|
180
|
+
*/
|
181
|
+
stopVoiceToneAnalysisTask(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
134
182
|
/**
|
135
183
|
* The ARN of the media pipeline that you want to tag. Consists of the pipeline's endpoint region, resource ID, and pipeline ID.
|
136
184
|
*/
|
@@ -710,6 +758,38 @@ declare namespace ChimeSDKMediaPipelines {
|
|
710
758
|
*/
|
711
759
|
MediaPipeline?: MediaPipeline;
|
712
760
|
}
|
761
|
+
export interface GetSpeakerSearchTaskRequest {
|
762
|
+
/**
|
763
|
+
* The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
|
764
|
+
*/
|
765
|
+
Identifier: NonEmptyString;
|
766
|
+
/**
|
767
|
+
* The ID of the speaker search task.
|
768
|
+
*/
|
769
|
+
SpeakerSearchTaskId: GuidString;
|
770
|
+
}
|
771
|
+
export interface GetSpeakerSearchTaskResponse {
|
772
|
+
/**
|
773
|
+
* The details of the speaker search task.
|
774
|
+
*/
|
775
|
+
SpeakerSearchTask?: SpeakerSearchTask;
|
776
|
+
}
|
777
|
+
export interface GetVoiceToneAnalysisTaskRequest {
|
778
|
+
/**
|
779
|
+
* The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
|
780
|
+
*/
|
781
|
+
Identifier: NonEmptyString;
|
782
|
+
/**
|
783
|
+
* The ID of the voice tone anlysis task.
|
784
|
+
*/
|
785
|
+
VoiceToneAnalysisTaskId: GuidString;
|
786
|
+
}
|
787
|
+
export interface GetVoiceToneAnalysisTaskResponse {
|
788
|
+
/**
|
789
|
+
* The details of the voice tone analysis task.
|
790
|
+
*/
|
791
|
+
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
792
|
+
}
|
713
793
|
export interface GridViewConfiguration {
|
714
794
|
/**
|
715
795
|
* Defines the layout of the video tiles when content sharing is enabled.
|
@@ -815,6 +895,20 @@ declare namespace ChimeSDKMediaPipelines {
|
|
815
895
|
*/
|
816
896
|
MediaSampleRate: MediaSampleRateHertz;
|
817
897
|
}
|
898
|
+
export interface KinesisVideoStreamSourceTaskConfiguration {
|
899
|
+
/**
|
900
|
+
* The ARN of the stream.
|
901
|
+
*/
|
902
|
+
StreamArn: KinesisVideoStreamArn;
|
903
|
+
/**
|
904
|
+
* The channel ID.
|
905
|
+
*/
|
906
|
+
ChannelId: ChannelId;
|
907
|
+
/**
|
908
|
+
* The unique identifier of the fragment to begin processing.
|
909
|
+
*/
|
910
|
+
FragmentNumber?: FragmentNumberString;
|
911
|
+
}
|
818
912
|
export interface LambdaFunctionSinkConfiguration {
|
819
913
|
/**
|
820
914
|
* The ARN of the sink.
|
@@ -1142,7 +1236,7 @@ declare namespace ChimeSDKMediaPipelines {
|
|
1142
1236
|
*/
|
1143
1237
|
SnsTopicSinkConfiguration?: SnsTopicSinkConfiguration;
|
1144
1238
|
/**
|
1145
|
-
* The configuration settings for
|
1239
|
+
* The configuration settings for voice enhancement sink in a media insights pipeline configuration element.
|
1146
1240
|
*/
|
1147
1241
|
VoiceEnhancementSinkConfiguration?: VoiceEnhancementSinkConfiguration;
|
1148
1242
|
}
|
@@ -1240,6 +1334,7 @@ declare namespace ChimeSDKMediaPipelines {
|
|
1240
1334
|
*/
|
1241
1335
|
MediaPipelineArn?: AmazonResourceName;
|
1242
1336
|
}
|
1337
|
+
export type MediaPipelineTaskStatus = "NotStarted"|"Initializing"|"InProgress"|"Failed"|"Stopping"|"Stopped"|string;
|
1243
1338
|
export type MediaSampleRateHertz = number;
|
1244
1339
|
export interface MeetingEventsConcatenationConfiguration {
|
1245
1340
|
/**
|
@@ -1384,12 +1479,98 @@ declare namespace ChimeSDKMediaPipelines {
|
|
1384
1479
|
*/
|
1385
1480
|
SelectedVideoStreams?: SelectedVideoStreams;
|
1386
1481
|
}
|
1482
|
+
export interface SpeakerSearchTask {
|
1483
|
+
/**
|
1484
|
+
* The speaker search task ID.
|
1485
|
+
*/
|
1486
|
+
SpeakerSearchTaskId?: GuidString;
|
1487
|
+
/**
|
1488
|
+
* The status of the speaker search task.
|
1489
|
+
*/
|
1490
|
+
SpeakerSearchTaskStatus?: MediaPipelineTaskStatus;
|
1491
|
+
/**
|
1492
|
+
* The time at which a speaker search task was created.
|
1493
|
+
*/
|
1494
|
+
CreatedTimestamp?: Iso8601Timestamp;
|
1495
|
+
/**
|
1496
|
+
* The time at which a speaker search task was updated.
|
1497
|
+
*/
|
1498
|
+
UpdatedTimestamp?: Iso8601Timestamp;
|
1499
|
+
}
|
1387
1500
|
export interface SqsQueueSinkConfiguration {
|
1388
1501
|
/**
|
1389
1502
|
* The ARN of the SQS sink.
|
1390
1503
|
*/
|
1391
1504
|
InsightsTarget?: Arn;
|
1392
1505
|
}
|
1506
|
+
export interface StartSpeakerSearchTaskRequest {
|
1507
|
+
/**
|
1508
|
+
* The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
|
1509
|
+
*/
|
1510
|
+
Identifier: NonEmptyString;
|
1511
|
+
/**
|
1512
|
+
* The ARN of the voice profile domain that will store the voice profile.
|
1513
|
+
*/
|
1514
|
+
VoiceProfileDomainArn: Arn;
|
1515
|
+
/**
|
1516
|
+
* The task configuration for the Kinesis video stream source of the media insights pipeline.
|
1517
|
+
*/
|
1518
|
+
KinesisVideoStreamSourceTaskConfiguration?: KinesisVideoStreamSourceTaskConfiguration;
|
1519
|
+
/**
|
1520
|
+
* The unique identifier for the client request. Use a different token for different speaker search tasks.
|
1521
|
+
*/
|
1522
|
+
ClientRequestToken?: ClientRequestToken;
|
1523
|
+
}
|
1524
|
+
export interface StartSpeakerSearchTaskResponse {
|
1525
|
+
/**
|
1526
|
+
* The details of the speaker search task.
|
1527
|
+
*/
|
1528
|
+
SpeakerSearchTask?: SpeakerSearchTask;
|
1529
|
+
}
|
1530
|
+
export interface StartVoiceToneAnalysisTaskRequest {
|
1531
|
+
/**
|
1532
|
+
* The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
|
1533
|
+
*/
|
1534
|
+
Identifier: NonEmptyString;
|
1535
|
+
/**
|
1536
|
+
* The language code.
|
1537
|
+
*/
|
1538
|
+
LanguageCode: VoiceAnalyticsLanguageCode;
|
1539
|
+
/**
|
1540
|
+
* The task configuration for the Kinesis video stream source of the media insights pipeline.
|
1541
|
+
*/
|
1542
|
+
KinesisVideoStreamSourceTaskConfiguration?: KinesisVideoStreamSourceTaskConfiguration;
|
1543
|
+
/**
|
1544
|
+
* The unique identifier for the client request. Use a different token for different voice tone analysis tasks.
|
1545
|
+
*/
|
1546
|
+
ClientRequestToken?: ClientRequestToken;
|
1547
|
+
}
|
1548
|
+
export interface StartVoiceToneAnalysisTaskResponse {
|
1549
|
+
/**
|
1550
|
+
* The details of the voice tone analysis task.
|
1551
|
+
*/
|
1552
|
+
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
1553
|
+
}
|
1554
|
+
export interface StopSpeakerSearchTaskRequest {
|
1555
|
+
/**
|
1556
|
+
* The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
|
1557
|
+
*/
|
1558
|
+
Identifier: NonEmptyString;
|
1559
|
+
/**
|
1560
|
+
* The speaker search task ID.
|
1561
|
+
*/
|
1562
|
+
SpeakerSearchTaskId: GuidString;
|
1563
|
+
}
|
1564
|
+
export interface StopVoiceToneAnalysisTaskRequest {
|
1565
|
+
/**
|
1566
|
+
* The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
|
1567
|
+
*/
|
1568
|
+
Identifier: NonEmptyString;
|
1569
|
+
/**
|
1570
|
+
* The ID of the voice tone analysis task.
|
1571
|
+
*/
|
1572
|
+
VoiceToneAnalysisTaskId: GuidString;
|
1573
|
+
}
|
1393
1574
|
export interface StreamChannelDefinition {
|
1394
1575
|
/**
|
1395
1576
|
* The number of channels in a streaming channel.
|
@@ -1568,6 +1749,7 @@ declare namespace ChimeSDKMediaPipelines {
|
|
1568
1749
|
export type VocabularyName = string;
|
1569
1750
|
export type VocabularyNames = string;
|
1570
1751
|
export type VoiceAnalyticsConfigurationStatus = "Enabled"|"Disabled"|string;
|
1752
|
+
export type VoiceAnalyticsLanguageCode = "en-US"|string;
|
1571
1753
|
export interface VoiceAnalyticsProcessorConfiguration {
|
1572
1754
|
/**
|
1573
1755
|
* The status of the speaker search task.
|
@@ -1584,6 +1766,24 @@ declare namespace ChimeSDKMediaPipelines {
|
|
1584
1766
|
*/
|
1585
1767
|
Disabled?: Boolean;
|
1586
1768
|
}
|
1769
|
+
export interface VoiceToneAnalysisTask {
|
1770
|
+
/**
|
1771
|
+
* The ID of the voice tone analysis task.
|
1772
|
+
*/
|
1773
|
+
VoiceToneAnalysisTaskId?: GuidString;
|
1774
|
+
/**
|
1775
|
+
* The status of a voice tone analysis task.
|
1776
|
+
*/
|
1777
|
+
VoiceToneAnalysisTaskStatus?: MediaPipelineTaskStatus;
|
1778
|
+
/**
|
1779
|
+
* The time at which a voice tone analysis task was created.
|
1780
|
+
*/
|
1781
|
+
CreatedTimestamp?: Iso8601Timestamp;
|
1782
|
+
/**
|
1783
|
+
* The time at which a voice tone analysis task was updated.
|
1784
|
+
*/
|
1785
|
+
UpdatedTimestamp?: Iso8601Timestamp;
|
1786
|
+
}
|
1587
1787
|
/**
|
1588
1788
|
* 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.
|
1589
1789
|
*/
|