cdk-comprehend-s3olap 2.0.130 → 2.0.132
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-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +23 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/chime-2018-05-01.min.json +32 -28
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +2 -1
- package/node_modules/aws-sdk/apis/chime-sdk-meetings-2021-07-15.min.json +3 -1
- package/node_modules/aws-sdk/apis/comprehend-2017-11-27.min.json +181 -154
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +239 -199
- package/node_modules/aws-sdk/apis/fms-2018-01-01.min.json +245 -95
- package/node_modules/aws-sdk/apis/fms-2018-01-01.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +106 -53
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +1 -1
- package/node_modules/aws-sdk/apis/iot-2015-05-28.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/ram-2018-01-04.min.json +396 -66
- package/node_modules/aws-sdk/apis/ram-2018-01-04.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +94 -94
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +710 -703
- package/node_modules/aws-sdk/apis/secretsmanager-2017-10-17.examples.json +32 -0
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.examples.json +1516 -0
- package/node_modules/aws-sdk/apis/snowball-2016-06-30.min.json +79 -52
- package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +159 -73
- package/node_modules/aws-sdk/clients/chime.d.ts +94 -42
- package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +14 -10
- package/node_modules/aws-sdk/clients/chimesdkmeetings.d.ts +33 -24
- package/node_modules/aws-sdk/clients/comprehend.d.ts +45 -5
- package/node_modules/aws-sdk/clients/connect.d.ts +59 -1
- package/node_modules/aws-sdk/clients/ecs.d.ts +9 -9
- package/node_modules/aws-sdk/clients/fms.d.ts +225 -21
- package/node_modules/aws-sdk/clients/gamelift.d.ts +240 -240
- package/node_modules/aws-sdk/clients/guardduty.d.ts +61 -4
- package/node_modules/aws-sdk/clients/iot.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ram.d.ts +538 -91
- package/node_modules/aws-sdk/clients/rds.d.ts +16 -16
- package/node_modules/aws-sdk/clients/s3.d.ts +117 -117
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +53 -39
- package/node_modules/aws-sdk/clients/secretsmanager.d.ts +10 -10
- package/node_modules/aws-sdk/clients/snowball.d.ts +56 -9
- package/node_modules/aws-sdk/clients/wafv2.d.ts +120 -10
- 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 +16 -16
- package/node_modules/aws-sdk/dist/aws-sdk.js +436 -357
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +82 -82
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -44,11 +44,11 @@ declare class Chime extends Service {
|
|
44
44
|
*/
|
45
45
|
associateSigninDelegateGroupsWithAccount(callback?: (err: AWSError, data: Chime.Types.AssociateSigninDelegateGroupsWithAccountResponse) => void): Request<Chime.Types.AssociateSigninDelegateGroupsWithAccountResponse, AWSError>;
|
46
46
|
/**
|
47
|
-
* Creates up to 100 new attendees for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
47
|
+
* Creates up to 100 new attendees for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide.
|
48
48
|
*/
|
49
49
|
batchCreateAttendee(params: Chime.Types.BatchCreateAttendeeRequest, callback?: (err: AWSError, data: Chime.Types.BatchCreateAttendeeResponse) => void): Request<Chime.Types.BatchCreateAttendeeResponse, AWSError>;
|
50
50
|
/**
|
51
|
-
* Creates up to 100 new attendees for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
51
|
+
* Creates up to 100 new attendees for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide.
|
52
52
|
*/
|
53
53
|
batchCreateAttendee(callback?: (err: AWSError, data: Chime.Types.BatchCreateAttendeeResponse) => void): Request<Chime.Types.BatchCreateAttendeeResponse, AWSError>;
|
54
54
|
/**
|
@@ -140,11 +140,11 @@ declare class Chime extends Service {
|
|
140
140
|
*/
|
141
141
|
createAppInstanceUser(callback?: (err: AWSError, data: Chime.Types.CreateAppInstanceUserResponse) => void): Request<Chime.Types.CreateAppInstanceUserResponse, AWSError>;
|
142
142
|
/**
|
143
|
-
* Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
143
|
+
* Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide.
|
144
144
|
*/
|
145
145
|
createAttendee(params: Chime.Types.CreateAttendeeRequest, callback?: (err: AWSError, data: Chime.Types.CreateAttendeeResponse) => void): Request<Chime.Types.CreateAttendeeResponse, AWSError>;
|
146
146
|
/**
|
147
|
-
* Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
147
|
+
* Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide.
|
148
148
|
*/
|
149
149
|
createAttendee(callback?: (err: AWSError, data: Chime.Types.CreateAttendeeResponse) => void): Request<Chime.Types.CreateAttendeeResponse, AWSError>;
|
150
150
|
/**
|
@@ -196,11 +196,11 @@ declare class Chime extends Service {
|
|
196
196
|
*/
|
197
197
|
createMediaCapturePipeline(callback?: (err: AWSError, data: Chime.Types.CreateMediaCapturePipelineResponse) => void): Request<Chime.Types.CreateMediaCapturePipelineResponse, AWSError>;
|
198
198
|
/**
|
199
|
-
* Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime Developer Guide . For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
|
199
|
+
* Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime SDK Developer Guide . For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide .
|
200
200
|
*/
|
201
201
|
createMeeting(params: Chime.Types.CreateMeetingRequest, callback?: (err: AWSError, data: Chime.Types.CreateMeetingResponse) => void): Request<Chime.Types.CreateMeetingResponse, AWSError>;
|
202
202
|
/**
|
203
|
-
* Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime Developer Guide . For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
|
203
|
+
* Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime SDK Developer Guide . For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide .
|
204
204
|
*/
|
205
205
|
createMeeting(callback?: (err: AWSError, data: Chime.Types.CreateMeetingResponse) => void): Request<Chime.Types.CreateMeetingResponse, AWSError>;
|
206
206
|
/**
|
@@ -212,11 +212,11 @@ declare class Chime extends Service {
|
|
212
212
|
*/
|
213
213
|
createMeetingDialOut(callback?: (err: AWSError, data: Chime.Types.CreateMeetingDialOutResponse) => void): Request<Chime.Types.CreateMeetingDialOutResponse, AWSError>;
|
214
214
|
/**
|
215
|
-
* Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime Developer Guide . For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
|
215
|
+
* Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime SDK Developer Guide . For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide .
|
216
216
|
*/
|
217
217
|
createMeetingWithAttendees(params: Chime.Types.CreateMeetingWithAttendeesRequest, callback?: (err: AWSError, data: Chime.Types.CreateMeetingWithAttendeesResponse) => void): Request<Chime.Types.CreateMeetingWithAttendeesResponse, AWSError>;
|
218
218
|
/**
|
219
|
-
* Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime Developer Guide . For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
|
219
|
+
* Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime SDK Developer Guide . For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide .
|
220
220
|
*/
|
221
221
|
createMeetingWithAttendees(callback?: (err: AWSError, data: Chime.Types.CreateMeetingWithAttendeesResponse) => void): Request<Chime.Types.CreateMeetingWithAttendeesResponse, AWSError>;
|
222
222
|
/**
|
@@ -340,11 +340,11 @@ declare class Chime extends Service {
|
|
340
340
|
*/
|
341
341
|
deleteAppInstanceUser(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
342
342
|
/**
|
343
|
-
* Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their JoinToken. Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
343
|
+
* Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their JoinToken. Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide.
|
344
344
|
*/
|
345
345
|
deleteAttendee(params: Chime.Types.DeleteAttendeeRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
346
346
|
/**
|
347
|
-
* Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their JoinToken. Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
347
|
+
* Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their JoinToken. Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide.
|
348
348
|
*/
|
349
349
|
deleteAttendee(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
350
350
|
/**
|
@@ -404,11 +404,11 @@ declare class Chime extends Service {
|
|
404
404
|
*/
|
405
405
|
deleteMediaCapturePipeline(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
406
406
|
/**
|
407
|
-
* Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from joining the meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
407
|
+
* Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from joining the meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide.
|
408
408
|
*/
|
409
409
|
deleteMeeting(params: Chime.Types.DeleteMeetingRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
410
410
|
/**
|
411
|
-
* Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from joining the meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
411
|
+
* Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from joining the meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide.
|
412
412
|
*/
|
413
413
|
deleteMeeting(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
414
414
|
/**
|
@@ -660,11 +660,11 @@ declare class Chime extends Service {
|
|
660
660
|
*/
|
661
661
|
getAppInstanceStreamingConfigurations(callback?: (err: AWSError, data: Chime.Types.GetAppInstanceStreamingConfigurationsResponse) => void): Request<Chime.Types.GetAppInstanceStreamingConfigurationsResponse, AWSError>;
|
662
662
|
/**
|
663
|
-
* Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
|
663
|
+
* Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide .
|
664
664
|
*/
|
665
665
|
getAttendee(params: Chime.Types.GetAttendeeRequest, callback?: (err: AWSError, data: Chime.Types.GetAttendeeResponse) => void): Request<Chime.Types.GetAttendeeResponse, AWSError>;
|
666
666
|
/**
|
667
|
-
* Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
|
667
|
+
* Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide .
|
668
668
|
*/
|
669
669
|
getAttendee(callback?: (err: AWSError, data: Chime.Types.GetAttendeeResponse) => void): Request<Chime.Types.GetAttendeeResponse, AWSError>;
|
670
670
|
/**
|
@@ -704,11 +704,11 @@ declare class Chime extends Service {
|
|
704
704
|
*/
|
705
705
|
getMediaCapturePipeline(callback?: (err: AWSError, data: Chime.Types.GetMediaCapturePipelineResponse) => void): Request<Chime.Types.GetMediaCapturePipelineResponse, AWSError>;
|
706
706
|
/**
|
707
|
-
* Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
|
707
|
+
* Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide .
|
708
708
|
*/
|
709
709
|
getMeeting(params: Chime.Types.GetMeetingRequest, callback?: (err: AWSError, data: Chime.Types.GetMeetingResponse) => void): Request<Chime.Types.GetMeetingResponse, AWSError>;
|
710
710
|
/**
|
711
|
-
* Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
|
711
|
+
* Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide .
|
712
712
|
*/
|
713
713
|
getMeeting(callback?: (err: AWSError, data: Chime.Types.GetMeetingResponse) => void): Request<Chime.Types.GetMeetingResponse, AWSError>;
|
714
714
|
/**
|
@@ -924,11 +924,11 @@ declare class Chime extends Service {
|
|
924
924
|
*/
|
925
925
|
listAttendeeTags(callback?: (err: AWSError, data: Chime.Types.ListAttendeeTagsResponse) => void): Request<Chime.Types.ListAttendeeTagsResponse, AWSError>;
|
926
926
|
/**
|
927
|
-
* Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
927
|
+
* Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide.
|
928
928
|
*/
|
929
929
|
listAttendees(params: Chime.Types.ListAttendeesRequest, callback?: (err: AWSError, data: Chime.Types.ListAttendeesResponse) => void): Request<Chime.Types.ListAttendeesResponse, AWSError>;
|
930
930
|
/**
|
931
|
-
* Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
931
|
+
* Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide.
|
932
932
|
*/
|
933
933
|
listAttendees(callback?: (err: AWSError, data: Chime.Types.ListAttendeesResponse) => void): Request<Chime.Types.ListAttendeesResponse, AWSError>;
|
934
934
|
/**
|
@@ -1012,11 +1012,11 @@ declare class Chime extends Service {
|
|
1012
1012
|
*/
|
1013
1013
|
listMeetingTags(callback?: (err: AWSError, data: Chime.Types.ListMeetingTagsResponse) => void): Request<Chime.Types.ListMeetingTagsResponse, AWSError>;
|
1014
1014
|
/**
|
1015
|
-
* Lists up to 100 active Amazon Chime SDK meetings. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
1015
|
+
* Lists up to 100 active Amazon Chime SDK meetings. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide.
|
1016
1016
|
*/
|
1017
1017
|
listMeetings(params: Chime.Types.ListMeetingsRequest, callback?: (err: AWSError, data: Chime.Types.ListMeetingsResponse) => void): Request<Chime.Types.ListMeetingsResponse, AWSError>;
|
1018
1018
|
/**
|
1019
|
-
* Lists up to 100 active Amazon Chime SDK meetings. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
1019
|
+
* Lists up to 100 active Amazon Chime SDK meetings. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide.
|
1020
1020
|
*/
|
1021
1021
|
listMeetings(callback?: (err: AWSError, data: Chime.Types.ListMeetingsResponse) => void): Request<Chime.Types.ListMeetingsResponse, AWSError>;
|
1022
1022
|
/**
|
@@ -1292,11 +1292,11 @@ declare class Chime extends Service {
|
|
1292
1292
|
*/
|
1293
1293
|
sendChannelMessage(callback?: (err: AWSError, data: Chime.Types.SendChannelMessageResponse) => void): Request<Chime.Types.SendChannelMessageResponse, AWSError>;
|
1294
1294
|
/**
|
1295
|
-
* Starts transcription for the specified meetingId.
|
1295
|
+
* Starts transcription for the specified meetingId. For more information, refer to Using Amazon Chime SDK live transcription in the Amazon Chime SDK Developer Guide. If you specify an invalid configuration, a TranscriptFailed event will be sent with the contents of the BadRequestException generated by Amazon Transcribe. For more information on each parameter and which combinations are valid, refer to the StartStreamTranscription API in the Amazon Transcribe Developer Guide. Amazon Chime SDK live transcription is powered by Amazon Transcribe. Use of Amazon Transcribe is subject to the AWS Service Terms, including the terms specific to the AWS Machine Learning and Artificial Intelligence Services.
|
1296
1296
|
*/
|
1297
1297
|
startMeetingTranscription(params: Chime.Types.StartMeetingTranscriptionRequest, callback?: (err: AWSError, data: Chime.Types.StartMeetingTranscriptionResponse) => void): Request<Chime.Types.StartMeetingTranscriptionResponse, AWSError>;
|
1298
1298
|
/**
|
1299
|
-
* Starts transcription for the specified meetingId.
|
1299
|
+
* Starts transcription for the specified meetingId. For more information, refer to Using Amazon Chime SDK live transcription in the Amazon Chime SDK Developer Guide. If you specify an invalid configuration, a TranscriptFailed event will be sent with the contents of the BadRequestException generated by Amazon Transcribe. For more information on each parameter and which combinations are valid, refer to the StartStreamTranscription API in the Amazon Transcribe Developer Guide. Amazon Chime SDK live transcription is powered by Amazon Transcribe. Use of Amazon Transcribe is subject to the AWS Service Terms, including the terms specific to the AWS Machine Learning and Artificial Intelligence Services.
|
1300
1300
|
*/
|
1301
1301
|
startMeetingTranscription(callback?: (err: AWSError, data: Chime.Types.StartMeetingTranscriptionResponse) => void): Request<Chime.Types.StartMeetingTranscriptionResponse, AWSError>;
|
1302
1302
|
/**
|
@@ -2219,7 +2219,13 @@ declare namespace Chime {
|
|
2219
2219
|
LastUpdatedTimestamp?: Timestamp;
|
2220
2220
|
}
|
2221
2221
|
export interface ChannelMembershipForAppInstanceUserSummary {
|
2222
|
+
/**
|
2223
|
+
* Summary of the details of a Channel.
|
2224
|
+
*/
|
2222
2225
|
ChannelSummary?: ChannelSummary;
|
2226
|
+
/**
|
2227
|
+
* Summary of the membership details of an AppInstanceUser.
|
2228
|
+
*/
|
2223
2229
|
AppInstanceUserMembershipSummary?: AppInstanceUserMembershipSummary;
|
2224
2230
|
}
|
2225
2231
|
export type ChannelMembershipForAppInstanceUserSummaryList = ChannelMembershipForAppInstanceUserSummary[];
|
@@ -2388,7 +2394,7 @@ declare namespace Chime {
|
|
2388
2394
|
export type ChimeArn = string;
|
2389
2395
|
export interface ChimeSdkMeetingConfiguration {
|
2390
2396
|
/**
|
2391
|
-
* The source configuration for a specified media capture
|
2397
|
+
* The source configuration for a specified media capture pipeline.
|
2392
2398
|
*/
|
2393
2399
|
SourceConfiguration?: SourceConfiguration;
|
2394
2400
|
/**
|
@@ -2705,7 +2711,7 @@ declare namespace Chime {
|
|
2705
2711
|
*/
|
2706
2712
|
SinkArn: Arn;
|
2707
2713
|
/**
|
2708
|
-
* The
|
2714
|
+
* The unique identifier for the client request. The token makes the API request idempotent. Use a different token for different media pipeline requests.
|
2709
2715
|
*/
|
2710
2716
|
ClientRequestToken?: ClientRequestToken;
|
2711
2717
|
/**
|
@@ -2796,6 +2802,9 @@ declare namespace Chime {
|
|
2796
2802
|
* The tag key-value pairs.
|
2797
2803
|
*/
|
2798
2804
|
Tags?: MeetingTagList;
|
2805
|
+
/**
|
2806
|
+
* The resource target configurations for receiving Amazon Chime SDK meeting and attendee event notifications. The Amazon Chime SDK supports resource targets located in the US East (N. Virginia) AWS Region (us-east-1).
|
2807
|
+
*/
|
2799
2808
|
NotificationsConfiguration?: MeetingNotificationConfiguration;
|
2800
2809
|
/**
|
2801
2810
|
* The request containing the attendees to create.
|
@@ -2804,6 +2813,9 @@ declare namespace Chime {
|
|
2804
2813
|
}
|
2805
2814
|
export type CreateMeetingWithAttendeesRequestItemList = CreateAttendeeRequestItem[];
|
2806
2815
|
export interface CreateMeetingWithAttendeesResponse {
|
2816
|
+
/**
|
2817
|
+
* A meeting created using the Amazon Chime SDK.
|
2818
|
+
*/
|
2807
2819
|
Meeting?: Meeting;
|
2808
2820
|
/**
|
2809
2821
|
* The attendee information, including attendees IDs and join tokens.
|
@@ -3005,6 +3017,9 @@ declare namespace Chime {
|
|
3005
3017
|
UserType?: UserType;
|
3006
3018
|
}
|
3007
3019
|
export interface CreateUserResponse {
|
3020
|
+
/**
|
3021
|
+
* The user on the Amazon Chime account.
|
3022
|
+
*/
|
3008
3023
|
User?: User;
|
3009
3024
|
}
|
3010
3025
|
export interface CreateVoiceConnectorGroupRequest {
|
@@ -3552,55 +3567,75 @@ declare namespace Chime {
|
|
3552
3567
|
*/
|
3553
3568
|
Region?: TranscribeMedicalRegion;
|
3554
3569
|
/**
|
3555
|
-
*
|
3570
|
+
* Labels all personally identifiable information (PII) identified in your transcript. If you don't include PiiEntityTypes, all PII is identified. You can’t set ContentIdentificationType and ContentRedactionType.
|
3556
3571
|
*/
|
3557
3572
|
ContentIdentificationType?: TranscribeMedicalContentIdentificationType;
|
3558
3573
|
}
|
3559
3574
|
export interface EngineTranscribeSettings {
|
3560
3575
|
/**
|
3561
|
-
*
|
3576
|
+
* Specify the language code that represents the language spoken. If you're unsure of the language spoken in your audio, consider using IdentifyLanguage to enable automatic language identification.
|
3562
3577
|
*/
|
3563
|
-
LanguageCode
|
3578
|
+
LanguageCode?: TranscribeLanguageCode;
|
3564
3579
|
/**
|
3565
|
-
*
|
3580
|
+
* Specify how you want your vocabulary filter applied to your transcript. To replace words with ***, choose mask. To delete words, choose remove. To flag words without changing them, choose tag.
|
3566
3581
|
*/
|
3567
3582
|
VocabularyFilterMethod?: TranscribeVocabularyFilterMethod;
|
3568
3583
|
/**
|
3569
|
-
*
|
3584
|
+
* Specify the name of the custom vocabulary filter that you want to use when processing your transcription. Note that vocabulary filter names are case sensitive. If you use Amazon Transcribe in multiple Regions, the vocabulary filter must be available in Amazon Transcribe in each Region. If you include IdentifyLanguage and want to use one or more vocabulary filters with your transcription, use the VocabularyFilterNames parameter instead.
|
3570
3585
|
*/
|
3571
3586
|
VocabularyFilterName?: String;
|
3572
3587
|
/**
|
3573
|
-
*
|
3588
|
+
* Specify the name of the custom vocabulary that you want to use when processing your transcription. Note that vocabulary names are case sensitive. If you use Amazon Transcribe multiple Regions, the vocabulary must be available in Amazon Transcribe in each Region. If you include IdentifyLanguage and want to use one or more custom vocabularies with your transcription, use the VocabularyNames parameter instead.
|
3574
3589
|
*/
|
3575
3590
|
VocabularyName?: String;
|
3576
3591
|
/**
|
3577
|
-
* The AWS Region
|
3592
|
+
* The AWS Region in which to use Amazon Transcribe. If you don't specify a Region, then the MediaRegion parameter of the CreateMeeting.html API will be used. However, if Amazon Transcribe is not available in the MediaRegion, then a TranscriptFailed event is sent. Use auto to use Amazon Transcribe in a Region near the meeting’s MediaRegion. For more information, refer to Choosing a transcription Region in the Amazon Chime SDK Developer Guide.
|
3578
3593
|
*/
|
3579
3594
|
Region?: TranscribeRegion;
|
3580
3595
|
/**
|
3581
|
-
*
|
3596
|
+
* Enables partial result stabilization for your transcription. Partial result stabilization can reduce latency in your output, but may impact accuracy.
|
3582
3597
|
*/
|
3583
3598
|
EnablePartialResultsStabilization?: Boolean;
|
3584
3599
|
/**
|
3585
|
-
*
|
3600
|
+
* Specify the level of stability to use when you enable partial results stabilization (EnablePartialResultsStabilization). Low stability provides the highest accuracy. High stability transcribes faster, but with slightly lower accuracy.
|
3586
3601
|
*/
|
3587
3602
|
PartialResultsStability?: TranscribePartialResultsStability;
|
3588
3603
|
/**
|
3589
|
-
*
|
3604
|
+
* Labels all personally identifiable information (PII) identified in your transcript. If you don't include PiiEntityTypes, all PII is identified. You can’t set ContentIdentificationType and ContentRedactionType.
|
3590
3605
|
*/
|
3591
3606
|
ContentIdentificationType?: TranscribeContentIdentificationType;
|
3592
3607
|
/**
|
3593
|
-
*
|
3608
|
+
* Content redaction is performed at the segment level. If you don't include PiiEntityTypes, all PII is redacted. You can’t set ContentIdentificationType and ContentRedactionType.
|
3594
3609
|
*/
|
3595
3610
|
ContentRedactionType?: TranscribeContentRedactionType;
|
3596
3611
|
/**
|
3597
|
-
*
|
3612
|
+
* Specify which types of personally identifiable information (PII) you want to redact in your transcript. You can include as many types as you'd like, or you can select ALL. Values must be comma-separated and can include: ADDRESS, BANK_ACCOUNT_NUMBER, BANK_ROUTING, CREDIT_DEBIT_CVV, CREDIT_DEBIT_EXPIRY CREDIT_DEBIT_NUMBER, EMAIL,NAME, PHONE, PIN, SSN, or ALL. Note that if you include PiiEntityTypes, you must also include ContentIdentificationType or ContentRedactionType. If you include ContentRedactionType or ContentIdentificationType, but do not include PiiEntityTypes, all PII is redacted or identified.
|
3598
3613
|
*/
|
3599
3614
|
PiiEntityTypes?: TranscribePiiEntityTypes;
|
3600
3615
|
/**
|
3601
|
-
*
|
3616
|
+
* Specify the name of the custom language model that you want to use when processing your transcription. Note that language model names are case sensitive. The language of the specified language model must match the language code. If the languages don't match, the custom language model isn't applied. There are no errors or warnings associated with a language mismatch. If you use Amazon Transcribe in multiple Regions, the custom language model must be available in Amazon Transcribe in each Region.
|
3602
3617
|
*/
|
3603
3618
|
LanguageModelName?: TranscribeLanguageModelName;
|
3619
|
+
/**
|
3620
|
+
* Enables automatic language identification for your transcription. If you include IdentifyLanguage, you can optionally use LanguageOptions to include a list of language codes that you think may be present in your audio stream. Including language options can improve transcription accuracy. You can also use PreferredLanguage to include a preferred language. Doing so can help Amazon Transcribe identify the language faster. You must include either LanguageCode or IdentifyLanguage. Language identification can't be combined with custom language models or redaction.
|
3621
|
+
*/
|
3622
|
+
IdentifyLanguage?: Boolean;
|
3623
|
+
/**
|
3624
|
+
* Specify two or more language codes that represent the languages you think may be present in your media; including more than five is not recommended. If you're unsure what languages are present, do not include this parameter. Including language options can improve the accuracy of language identification. If you include LanguageOptions, you must also include IdentifyLanguage. You can only include one language dialect per language. For example, you cannot include en-US and en-AU.
|
3625
|
+
*/
|
3626
|
+
LanguageOptions?: TranscribeLanguageOptions;
|
3627
|
+
/**
|
3628
|
+
* Specify a preferred language from the subset of languages codes you specified in LanguageOptions. You can only use this parameter if you include IdentifyLanguage and LanguageOptions.
|
3629
|
+
*/
|
3630
|
+
PreferredLanguage?: TranscribeLanguageCode;
|
3631
|
+
/**
|
3632
|
+
* Specify the names of the custom vocabularies that you want to use when processing your transcription. Note that vocabulary names are case sensitive. If you use Amazon Transcribe in multiple Regions, the vocabulary must be available in Amazon Transcribe in each Region. If you don't include IdentifyLanguage and want to use a custom vocabulary with your transcription, use the VocabularyName parameter instead.
|
3633
|
+
*/
|
3634
|
+
VocabularyNames?: TranscribeVocabularyNamesOrFilterNamesString;
|
3635
|
+
/**
|
3636
|
+
* Specify the names of the custom vocabulary filters that you want to use when processing your transcription. Note that vocabulary filter names are case sensitive. If you use Amazon Transcribe in multiple Regions, the vocabulary filter must be available in Amazon Transcribe in each Region. If you're not including IdentifyLanguage and want to use a custom vocabulary filter with your transcription, use the VocabularyFilterName parameter instead.
|
3637
|
+
*/
|
3638
|
+
VocabularyFilterNames?: TranscribeVocabularyNamesOrFilterNamesString;
|
3604
3639
|
}
|
3605
3640
|
export type ErrorCode = "BadRequest"|"Conflict"|"Forbidden"|"NotFound"|"PreconditionFailed"|"ResourceLimitExceeded"|"ServiceFailure"|"AccessDenied"|"ServiceUnavailable"|"Throttled"|"Throttling"|"Unauthorized"|"Unprocessable"|"VoiceConnectorGroupAssociationsExist"|"PhoneNumberAssociationsExist"|string;
|
3606
3641
|
export interface EventsConfiguration {
|
@@ -4328,7 +4363,7 @@ declare namespace Chime {
|
|
4328
4363
|
}
|
4329
4364
|
export interface ListChannelMembershipsForAppInstanceUserResponse {
|
4330
4365
|
/**
|
4331
|
-
* The
|
4366
|
+
* The information for the requested channel memberships.
|
4332
4367
|
*/
|
4333
4368
|
ChannelMemberships?: ChannelMembershipForAppInstanceUserSummaryList;
|
4334
4369
|
/**
|
@@ -4854,11 +4889,11 @@ declare namespace Chime {
|
|
4854
4889
|
}
|
4855
4890
|
export interface LoggingConfiguration {
|
4856
4891
|
/**
|
4857
|
-
*
|
4892
|
+
* Boolean that enables SIP message logs to Amazon CloudWatch logs.
|
4858
4893
|
*/
|
4859
4894
|
EnableSIPLogs?: Boolean;
|
4860
4895
|
/**
|
4861
|
-
* Boolean that enables
|
4896
|
+
* Boolean that enables logging of detailed media metrics for Voice Connectors to Amazon CloudWatch logs.
|
4862
4897
|
*/
|
4863
4898
|
EnableMediaMetricLogs?: Boolean;
|
4864
4899
|
}
|
@@ -5401,6 +5436,9 @@ declare namespace Chime {
|
|
5401
5436
|
LambdaFunctionArn?: SensitiveString;
|
5402
5437
|
}
|
5403
5438
|
export interface PutEventsConfigurationResponse {
|
5439
|
+
/**
|
5440
|
+
* The configuration that allows a bot to receive outgoing events. Can be an HTTPS endpoint or an AWS Lambda function ARN.
|
5441
|
+
*/
|
5404
5442
|
EventsConfiguration?: EventsConfiguration;
|
5405
5443
|
}
|
5406
5444
|
export interface PutRetentionSettingsRequest {
|
@@ -5434,6 +5472,9 @@ declare namespace Chime {
|
|
5434
5472
|
SipMediaApplicationLoggingConfiguration?: SipMediaApplicationLoggingConfiguration;
|
5435
5473
|
}
|
5436
5474
|
export interface PutSipMediaApplicationLoggingConfigurationResponse {
|
5475
|
+
/**
|
5476
|
+
* The logging configuration of the SIP media application.
|
5477
|
+
*/
|
5437
5478
|
SipMediaApplicationLoggingConfiguration?: SipMediaApplicationLoggingConfiguration;
|
5438
5479
|
}
|
5439
5480
|
export interface PutVoiceConnectorEmergencyCallingConfigurationRequest {
|
@@ -5621,6 +5662,9 @@ declare namespace Chime {
|
|
5621
5662
|
BotId: NonEmptyString;
|
5622
5663
|
}
|
5623
5664
|
export interface RegenerateSecurityTokenResponse {
|
5665
|
+
/**
|
5666
|
+
* A resource that allows Enterprise account administrators to configure an interface that receives events from Amazon Chime.
|
5667
|
+
*/
|
5624
5668
|
Bot?: Bot;
|
5625
5669
|
}
|
5626
5670
|
export type RegistrationStatus = "Unregistered"|"Registered"|"Suspended"|string;
|
@@ -5697,6 +5741,9 @@ declare namespace Chime {
|
|
5697
5741
|
* The room ID.
|
5698
5742
|
*/
|
5699
5743
|
RoomId?: NonEmptyString;
|
5744
|
+
/**
|
5745
|
+
* The member details, such as email address, name, member ID, and member type.
|
5746
|
+
*/
|
5700
5747
|
Member?: Member;
|
5701
5748
|
/**
|
5702
5749
|
* The membership role.
|
@@ -5860,7 +5907,7 @@ declare namespace Chime {
|
|
5860
5907
|
}
|
5861
5908
|
export interface SipMediaApplicationEndpoint {
|
5862
5909
|
/**
|
5863
|
-
* Valid Amazon Resource Name (ARN) of the Lambda function. The function must be created in the same AWS Region as the SIP media application.
|
5910
|
+
* Valid Amazon Resource Name (ARN) of the Lambda function, version, or alias. The function must be created in the same AWS Region as the SIP media application.
|
5864
5911
|
*/
|
5865
5912
|
LambdaArn?: FunctionArn;
|
5866
5913
|
}
|
@@ -6074,8 +6121,9 @@ declare namespace Chime {
|
|
6074
6121
|
export type TollFreePrefix = string;
|
6075
6122
|
export type TranscribeContentIdentificationType = "PII"|string;
|
6076
6123
|
export type TranscribeContentRedactionType = "PII"|string;
|
6077
|
-
export type TranscribeLanguageCode = "en-US"|"en-GB"|"es-US"|"fr-CA"|"fr-FR"|"en-AU"|"it-IT"|"de-DE"|"pt-BR"|"ja-JP"|"ko-KR"|"zh-CN"|string;
|
6124
|
+
export type TranscribeLanguageCode = "en-US"|"en-GB"|"es-US"|"fr-CA"|"fr-FR"|"en-AU"|"it-IT"|"de-DE"|"pt-BR"|"ja-JP"|"ko-KR"|"zh-CN"|"th-TH"|"hi-IN"|string;
|
6078
6125
|
export type TranscribeLanguageModelName = string;
|
6126
|
+
export type TranscribeLanguageOptions = string;
|
6079
6127
|
export type TranscribeMedicalContentIdentificationType = "PHI"|string;
|
6080
6128
|
export type TranscribeMedicalLanguageCode = "en-US"|string;
|
6081
6129
|
export type TranscribeMedicalRegion = "us-east-1"|"us-east-2"|"us-west-2"|"ap-southeast-2"|"ca-central-1"|"eu-west-1"|"auto"|string;
|
@@ -6085,6 +6133,7 @@ declare namespace Chime {
|
|
6085
6133
|
export type TranscribePiiEntityTypes = string;
|
6086
6134
|
export type TranscribeRegion = "us-east-2"|"us-east-1"|"us-west-2"|"ap-northeast-2"|"ap-southeast-2"|"ap-northeast-1"|"ca-central-1"|"eu-central-1"|"eu-west-1"|"eu-west-2"|"sa-east-1"|"auto"|string;
|
6087
6135
|
export type TranscribeVocabularyFilterMethod = "remove"|"mask"|"tag"|string;
|
6136
|
+
export type TranscribeVocabularyNamesOrFilterNamesString = string;
|
6088
6137
|
export interface TranscriptionConfiguration {
|
6089
6138
|
/**
|
6090
6139
|
* The transcription configuration settings passed to Amazon Transcribe.
|
@@ -6431,6 +6480,9 @@ declare namespace Chime {
|
|
6431
6480
|
Arguments: SMAUpdateCallArgumentsMap;
|
6432
6481
|
}
|
6433
6482
|
export interface UpdateSipMediaApplicationCallResponse {
|
6483
|
+
/**
|
6484
|
+
* A Call instance for a SIP media application.
|
6485
|
+
*/
|
6434
6486
|
SipMediaApplicationCall?: SipMediaApplicationCall;
|
6435
6487
|
}
|
6436
6488
|
export interface UpdateSipMediaApplicationRequest {
|
@@ -216,7 +216,7 @@ declare namespace ChimeSDKMediaPipelines {
|
|
216
216
|
*/
|
217
217
|
PostCallAnalyticsSettings?: PostCallAnalyticsSettings;
|
218
218
|
/**
|
219
|
-
* By default, all CategoryEvents
|
219
|
+
* By default, all CategoryEvents are sent to the insights target. If this parameter is specified, only included categories are sent to the insights target.
|
220
220
|
*/
|
221
221
|
CallAnalyticsStreamCategories?: CategoryNameList;
|
222
222
|
}
|
@@ -258,7 +258,7 @@ declare namespace ChimeSDKMediaPipelines {
|
|
258
258
|
*/
|
259
259
|
ContentRedactionType?: ContentType;
|
260
260
|
/**
|
261
|
-
* The types of personally identifiable information (PII) to redact from a transcript. You can include as many types as you'd like, or you can select ALL. To include PiiEntityTypes in your Call Analytics request, you must also include ContentIdentificationType or ContentRedactionType, but you can't include both. Values must be comma-separated and can include: ADDRESS, BANK_ACCOUNT_NUMBER, BANK_ROUTING, CREDIT_DEBIT_CVV, CREDIT_DEBIT_EXPIRY, CREDIT_DEBIT_NUMBER, EMAIL, NAME, PHONE, PIN, SSN, or ALL.
|
261
|
+
* The types of personally identifiable information (PII) to redact from a transcript. You can include as many types as you'd like, or you can select ALL. To include PiiEntityTypes in your Call Analytics request, you must also include ContentIdentificationType or ContentRedactionType, but you can't include both. Values must be comma-separated and can include: ADDRESS, BANK_ACCOUNT_NUMBER, BANK_ROUTING, CREDIT_DEBIT_CVV, CREDIT_DEBIT_EXPIRY, CREDIT_DEBIT_NUMBER, EMAIL, NAME, PHONE, PIN, SSN, or ALL. If you leave this parameter empty, the default behavior is equivalent to ALL.
|
262
262
|
*/
|
263
263
|
PiiEntityTypes?: PiiEntityTypes;
|
264
264
|
/**
|
@@ -715,7 +715,7 @@ declare namespace ChimeSDKMediaPipelines {
|
|
715
715
|
export type KeywordMatchWordList = Keyword[];
|
716
716
|
export interface KinesisDataStreamSinkConfiguration {
|
717
717
|
/**
|
718
|
-
* The
|
718
|
+
* The ARN of the sink.
|
719
719
|
*/
|
720
720
|
InsightsTarget?: Arn;
|
721
721
|
}
|
@@ -746,7 +746,7 @@ declare namespace ChimeSDKMediaPipelines {
|
|
746
746
|
}
|
747
747
|
export interface LambdaFunctionSinkConfiguration {
|
748
748
|
/**
|
749
|
-
* The
|
749
|
+
* The ARN of the sink.
|
750
750
|
*/
|
751
751
|
InsightsTarget?: Arn;
|
752
752
|
}
|
@@ -1175,7 +1175,7 @@ declare namespace ChimeSDKMediaPipelines {
|
|
1175
1175
|
*/
|
1176
1176
|
ContentRedactionOutput?: ContentRedactionOutput;
|
1177
1177
|
/**
|
1178
|
-
* The ID of the KMS (Key Management
|
1178
|
+
* The ID of the KMS (Key Management Service) key used to encrypt the output.
|
1179
1179
|
*/
|
1180
1180
|
OutputEncryptionKMSKeyId?: String;
|
1181
1181
|
}
|
@@ -1235,17 +1235,21 @@ declare namespace ChimeSDKMediaPipelines {
|
|
1235
1235
|
}
|
1236
1236
|
export interface S3RecordingSinkConfiguration {
|
1237
1237
|
/**
|
1238
|
-
* The
|
1238
|
+
* The default URI of the Amazon S3 bucket used as the recording sink.
|
1239
1239
|
*/
|
1240
1240
|
Destination?: Arn;
|
1241
|
+
/**
|
1242
|
+
* The default file format for the media files sent to the Amazon S3 bucket.
|
1243
|
+
*/
|
1244
|
+
RecordingFileFormat?: RecordingFileFormat;
|
1241
1245
|
}
|
1242
1246
|
export interface S3RecordingSinkRuntimeConfiguration {
|
1243
1247
|
/**
|
1244
|
-
* The
|
1248
|
+
* The URI of the S3 bucket used as the sink.
|
1245
1249
|
*/
|
1246
1250
|
Destination: Arn;
|
1247
1251
|
/**
|
1248
|
-
* The file
|
1252
|
+
* The file format for the media files sent to the Amazon S3 bucket.
|
1249
1253
|
*/
|
1250
1254
|
RecordingFileFormat: RecordingFileFormat;
|
1251
1255
|
}
|
@@ -1278,7 +1282,7 @@ declare namespace ChimeSDKMediaPipelines {
|
|
1278
1282
|
export type SentimentType = "NEGATIVE"|string;
|
1279
1283
|
export interface SnsTopicSinkConfiguration {
|
1280
1284
|
/**
|
1281
|
-
* The
|
1285
|
+
* The ARN of the SNS sink.
|
1282
1286
|
*/
|
1283
1287
|
InsightsTarget?: Arn;
|
1284
1288
|
}
|
@@ -1290,7 +1294,7 @@ declare namespace ChimeSDKMediaPipelines {
|
|
1290
1294
|
}
|
1291
1295
|
export interface SqsQueueSinkConfiguration {
|
1292
1296
|
/**
|
1293
|
-
* The
|
1297
|
+
* The ARN of the SQS sink.
|
1294
1298
|
*/
|
1295
1299
|
InsightsTarget?: Arn;
|
1296
1300
|
}
|