aws-sdk 2.1417.0 → 2.1419.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 +20 -1
- package/README.md +1 -1
- package/apis/cloudformation-2010-05-15.min.json +20 -4
- package/apis/codecatalyst-2022-09-28.min.json +294 -24
- package/apis/connectcases-2022-10-03.min.json +35 -25
- package/apis/grafana-2020-08-18.min.json +41 -4
- package/apis/grafana-2020-08-18.paginators.json +6 -0
- package/apis/medical-imaging-2023-07-19.examples.json +5 -0
- package/apis/medical-imaging-2023-07-19.min.json +1098 -0
- package/apis/medical-imaging-2023-07-19.paginators.json +28 -0
- package/apis/medical-imaging-2023-07-19.waiters2.json +5 -0
- package/apis/metadata.json +4 -0
- package/apis/ram-2018-01-04.min.json +49 -36
- package/apis/route53resolver-2018-04-01.min.json +201 -62
- package/apis/route53resolver-2018-04-01.paginators.json +6 -0
- package/apis/s3-2006-03-01.examples.json +32 -32
- package/apis/sagemaker-2017-07-24.min.json +205 -158
- package/apis/sagemaker-2017-07-24.paginators.json +6 -0
- package/apis/securitylake-2018-05-10.min.json +139 -34
- package/apis/ssm-sap-2018-05-10.min.json +98 -24
- package/apis/transcribe-2017-10-26.min.json +30 -6
- package/apis/wafv2-2019-07-29.min.json +134 -123
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/cloudformation.d.ts +21 -0
- package/clients/codecatalyst.d.ts +264 -7
- package/clients/connectcases.d.ts +15 -4
- package/clients/ec2.d.ts +200 -200
- package/clients/grafana.d.ts +47 -5
- package/clients/lexmodelsv2.d.ts +11 -11
- package/clients/medicalimaging.d.ts +1102 -0
- package/clients/medicalimaging.js +19 -0
- package/clients/ram.d.ts +14 -1
- package/clients/route53resolver.d.ts +220 -7
- package/clients/sagemaker.d.ts +88 -10
- package/clients/sagemakerfeaturestoreruntime.d.ts +13 -13
- package/clients/savingsplans.d.ts +1 -1
- package/clients/securitylake.d.ts +93 -11
- package/clients/ssmsap.d.ts +131 -7
- package/clients/transcribeservice.d.ts +21 -0
- package/clients/wafv2.d.ts +12 -2
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +62 -18
- package/dist/aws-sdk.js +27 -7
- package/dist/aws-sdk.min.js +97 -97
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/grafana.d.ts
CHANGED
@@ -99,6 +99,14 @@ declare class Grafana extends Service {
|
|
99
99
|
* The ListTagsForResource operation returns the tags that are associated with the Amazon Managed Service for Grafana resource specified by the resourceArn. Currently, the only resource that can be tagged is a workspace.
|
100
100
|
*/
|
101
101
|
listTagsForResource(callback?: (err: AWSError, data: Grafana.Types.ListTagsForResourceResponse) => void): Request<Grafana.Types.ListTagsForResourceResponse, AWSError>;
|
102
|
+
/**
|
103
|
+
* Lists available versions of Grafana. These are available when calling CreateWorkspace. Optionally, include a workspace to list the versions to which it can be upgraded.
|
104
|
+
*/
|
105
|
+
listVersions(params: Grafana.Types.ListVersionsRequest, callback?: (err: AWSError, data: Grafana.Types.ListVersionsResponse) => void): Request<Grafana.Types.ListVersionsResponse, AWSError>;
|
106
|
+
/**
|
107
|
+
* Lists available versions of Grafana. These are available when calling CreateWorkspace. Optionally, include a workspace to list the versions to which it can be upgraded.
|
108
|
+
*/
|
109
|
+
listVersions(callback?: (err: AWSError, data: Grafana.Types.ListVersionsResponse) => void): Request<Grafana.Types.ListVersionsResponse, AWSError>;
|
102
110
|
/**
|
103
111
|
* Returns a list of Amazon Managed Grafana workspaces in the account, with some information about each workspace. For more complete information about one workspace, use DescribeWorkspace.
|
104
112
|
*/
|
@@ -290,7 +298,7 @@ declare namespace Grafana {
|
|
290
298
|
*/
|
291
299
|
configuration?: OverridableConfigurationJson;
|
292
300
|
/**
|
293
|
-
* Specifies the version of Grafana to support in the new workspace.
|
301
|
+
* Specifies the version of Grafana to support in the new workspace. To get a list of supported version, use the ListVersions operation.
|
294
302
|
*/
|
295
303
|
grafanaVersion?: GrafanaVersion;
|
296
304
|
/**
|
@@ -314,7 +322,7 @@ declare namespace Grafana {
|
|
314
322
|
*/
|
315
323
|
tags?: TagMap;
|
316
324
|
/**
|
317
|
-
* The configuration settings for an Amazon VPC that contains data sources for your Grafana workspace to connect to.
|
325
|
+
* The configuration settings for an Amazon VPC that contains data sources for your Grafana workspace to connect to. Connecting to a private VPC is not yet available in the Asia Pacific (Seoul) Region (ap-northeast-2).
|
318
326
|
*/
|
319
327
|
vpcConfiguration?: VpcConfiguration;
|
320
328
|
/**
|
@@ -405,6 +413,10 @@ declare namespace Grafana {
|
|
405
413
|
* The configuration string for the workspace that you requested. For more information about the format and configuration options available, see Working in your Grafana workspace.
|
406
414
|
*/
|
407
415
|
configuration: OverridableConfigurationJson;
|
416
|
+
/**
|
417
|
+
* The supported Grafana version for the workspace.
|
418
|
+
*/
|
419
|
+
grafanaVersion?: GrafanaVersion;
|
408
420
|
}
|
409
421
|
export interface DescribeWorkspaceRequest {
|
410
422
|
/**
|
@@ -437,6 +449,7 @@ declare namespace Grafana {
|
|
437
449
|
}
|
438
450
|
export type Endpoint = string;
|
439
451
|
export type GrafanaVersion = string;
|
452
|
+
export type GrafanaVersionList = GrafanaVersion[];
|
440
453
|
export type IamRoleArn = string;
|
441
454
|
export interface IdpMetadata {
|
442
455
|
/**
|
@@ -499,6 +512,31 @@ declare namespace Grafana {
|
|
499
512
|
*/
|
500
513
|
tags?: TagMap;
|
501
514
|
}
|
515
|
+
export interface ListVersionsRequest {
|
516
|
+
/**
|
517
|
+
* The maximum number of results to include in the response.
|
518
|
+
*/
|
519
|
+
maxResults?: ListVersionsRequestMaxResultsInteger;
|
520
|
+
/**
|
521
|
+
* The token to use when requesting the next set of results. You receive this token from a previous ListVersions operation.
|
522
|
+
*/
|
523
|
+
nextToken?: PaginationToken;
|
524
|
+
/**
|
525
|
+
* The ID of the workspace to list the available upgrade versions. If not included, lists all versions of Grafana that are supported for CreateWorkspace.
|
526
|
+
*/
|
527
|
+
workspaceId?: WorkspaceId;
|
528
|
+
}
|
529
|
+
export type ListVersionsRequestMaxResultsInteger = number;
|
530
|
+
export interface ListVersionsResponse {
|
531
|
+
/**
|
532
|
+
* The Grafana versions available to create. If a workspace ID is included in the request, the Grafana versions to which this workspace can be upgraded.
|
533
|
+
*/
|
534
|
+
grafanaVersions?: GrafanaVersionList;
|
535
|
+
/**
|
536
|
+
* The token to use in a subsequent ListVersions operation to return the next set of results.
|
537
|
+
*/
|
538
|
+
nextToken?: PaginationToken;
|
539
|
+
}
|
502
540
|
export interface ListWorkspacesRequest {
|
503
541
|
/**
|
504
542
|
* The maximum number of workspaces to include in the results.
|
@@ -523,11 +561,11 @@ declare namespace Grafana {
|
|
523
561
|
export type LoginValidityDuration = number;
|
524
562
|
export interface NetworkAccessConfiguration {
|
525
563
|
/**
|
526
|
-
* An array of prefix list IDs. A prefix list is a list of CIDR ranges of IP addresses. The IP addresses specified are allowed to access your workspace. If the list is not included in the configuration then no IP addresses
|
564
|
+
* An array of prefix list IDs. A prefix list is a list of CIDR ranges of IP addresses. The IP addresses specified are allowed to access your workspace. If the list is not included in the configuration (passed an empty array) then no IP addresses are allowed to access the workspace. You create a prefix list using the Amazon VPC console. Prefix list IDs have the format pl-1a2b3c4d . For more information about prefix lists, see Group CIDR blocks using managed prefix listsin the Amazon Virtual Private Cloud User Guide.
|
527
565
|
*/
|
528
566
|
prefixListIds: PrefixListIds;
|
529
567
|
/**
|
530
|
-
* An array of Amazon VPC endpoint IDs for the workspace. You can create VPC endpoints to your Amazon Managed Grafana workspace for access from within a VPC. If a NetworkAccessConfiguration is specified then only VPC endpoints specified here
|
568
|
+
* An array of Amazon VPC endpoint IDs for the workspace. You can create VPC endpoints to your Amazon Managed Grafana workspace for access from within a VPC. If a NetworkAccessConfiguration is specified then only VPC endpoints specified here are allowed to access the workspace. If you pass in an empty array of strings, then no VPCs are allowed to access the workspace. VPC endpoint IDs have the format vpce-1a2b3c4d . For more information about creating an interface VPC endpoint, see Interface VPC endpoints in the Amazon Managed Grafana User Guide. The only VPC endpoints that can be specified here are interface VPC endpoints for Grafana workspaces (using the com.amazonaws.[region].grafana-workspace service endpoint). Other VPC endpoints are ignored.
|
531
569
|
*/
|
532
570
|
vpceIds: VpceIds;
|
533
571
|
}
|
@@ -708,6 +746,10 @@ declare namespace Grafana {
|
|
708
746
|
* The new configuration string for the workspace. For more information about the format and configuration options available, see Working in your Grafana workspace.
|
709
747
|
*/
|
710
748
|
configuration: OverridableConfigurationJson;
|
749
|
+
/**
|
750
|
+
* Specifies the version of Grafana to support in the new workspace. Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4). To know what versions are available to upgrade to for a specific workspace, see the ListVersions operation.
|
751
|
+
*/
|
752
|
+
grafanaVersion?: GrafanaVersion;
|
711
753
|
/**
|
712
754
|
* The ID of the workspace to update.
|
713
755
|
*/
|
@@ -908,7 +950,7 @@ declare namespace Grafana {
|
|
908
950
|
export type WorkspaceId = string;
|
909
951
|
export type WorkspaceList = WorkspaceSummary[];
|
910
952
|
export type WorkspaceName = string;
|
911
|
-
export type WorkspaceStatus = "ACTIVE"|"CREATING"|"DELETING"|"FAILED"|"UPDATING"|"UPGRADING"|"DELETION_FAILED"|"CREATION_FAILED"|"UPDATE_FAILED"|"UPGRADE_FAILED"|"LICENSE_REMOVAL_FAILED"|string;
|
953
|
+
export type WorkspaceStatus = "ACTIVE"|"CREATING"|"DELETING"|"FAILED"|"UPDATING"|"UPGRADING"|"DELETION_FAILED"|"CREATION_FAILED"|"UPDATE_FAILED"|"UPGRADE_FAILED"|"LICENSE_REMOVAL_FAILED"|"VERSION_UPDATING"|"VERSION_UPDATE_FAILED"|string;
|
912
954
|
export interface WorkspaceSummary {
|
913
955
|
/**
|
914
956
|
* A structure containing information about the authentication methods used in the workspace.
|
package/clients/lexmodelsv2.d.ts
CHANGED
@@ -492,11 +492,11 @@ declare class LexModelsV2 extends Service {
|
|
492
492
|
*/
|
493
493
|
listIntentPaths(callback?: (err: AWSError, data: LexModelsV2.Types.ListIntentPathsResponse) => void): Request<LexModelsV2.Types.ListIntentPathsResponse, AWSError>;
|
494
494
|
/**
|
495
|
-
* Retrieves summary metrics for the
|
495
|
+
* Retrieves summary metrics for the stages within intents in your bot. The following fields are required: metrics – A list of AnalyticsIntentStageMetric objects. In each object, use the name field to specify the metric to calculate, the statistic field to specify whether to calculate the Sum, Average, or Max number, and the order field to specify whether to sort the results in Ascending or Descending order. startDateTime and endDateTime – Define a time range for which you want to retrieve results. Of the optional fields, you can organize the results in the following ways: Use the filters field to filter the results, the groupBy field to specify categories by which to group the results, and the binBy field to specify time intervals by which to group the results. Use the maxResults field to limit the number of results to return in a single response and the nextToken field to return the next batch of results if the response does not return the full set of results. Note that an order field exists in both binBy and metrics. You can only specify one order in a given request.
|
496
496
|
*/
|
497
497
|
listIntentStageMetrics(params: LexModelsV2.Types.ListIntentStageMetricsRequest, callback?: (err: AWSError, data: LexModelsV2.Types.ListIntentStageMetricsResponse) => void): Request<LexModelsV2.Types.ListIntentStageMetricsResponse, AWSError>;
|
498
498
|
/**
|
499
|
-
* Retrieves summary metrics for the
|
499
|
+
* Retrieves summary metrics for the stages within intents in your bot. The following fields are required: metrics – A list of AnalyticsIntentStageMetric objects. In each object, use the name field to specify the metric to calculate, the statistic field to specify whether to calculate the Sum, Average, or Max number, and the order field to specify whether to sort the results in Ascending or Descending order. startDateTime and endDateTime – Define a time range for which you want to retrieve results. Of the optional fields, you can organize the results in the following ways: Use the filters field to filter the results, the groupBy field to specify categories by which to group the results, and the binBy field to specify time intervals by which to group the results. Use the maxResults field to limit the number of results to return in a single response and the nextToken field to return the next batch of results if the response does not return the full set of results. Note that an order field exists in both binBy and metrics. You can only specify one order in a given request.
|
500
500
|
*/
|
501
501
|
listIntentStageMetrics(callback?: (err: AWSError, data: LexModelsV2.Types.ListIntentStageMetricsResponse) => void): Request<LexModelsV2.Types.ListIntentStageMetricsResponse, AWSError>;
|
502
502
|
/**
|
@@ -588,19 +588,19 @@ declare class LexModelsV2 extends Service {
|
|
588
588
|
*/
|
589
589
|
listTestSets(callback?: (err: AWSError, data: LexModelsV2.Types.ListTestSetsResponse) => void): Request<LexModelsV2.Types.ListTestSetsResponse, AWSError>;
|
590
590
|
/**
|
591
|
-
* Retrieves a list of metadata for individual user utterances to your bot. The
|
591
|
+
* To use this API operation, your IAM role must have permissions to perform the ListAggregatedUtterances operation, which provides access to utterance-related analytics. See Viewing utterance statistics for the IAM policy to apply to the IAM role. Retrieves a list of metadata for individual user utterances to your bot. The following fields are required: startDateTime and endDateTime – Define a time range for which you want to retrieve results. Of the optional fields, you can organize the results in the following ways: Use the filters field to filter the results and the sortBy field to specify the values by which to sort the results. Use the maxResults field to limit the number of results to return in a single response and the nextToken field to return the next batch of results if the response does not return the full set of results.
|
592
592
|
*/
|
593
593
|
listUtteranceAnalyticsData(params: LexModelsV2.Types.ListUtteranceAnalyticsDataRequest, callback?: (err: AWSError, data: LexModelsV2.Types.ListUtteranceAnalyticsDataResponse) => void): Request<LexModelsV2.Types.ListUtteranceAnalyticsDataResponse, AWSError>;
|
594
594
|
/**
|
595
|
-
* Retrieves a list of metadata for individual user utterances to your bot. The
|
595
|
+
* To use this API operation, your IAM role must have permissions to perform the ListAggregatedUtterances operation, which provides access to utterance-related analytics. See Viewing utterance statistics for the IAM policy to apply to the IAM role. Retrieves a list of metadata for individual user utterances to your bot. The following fields are required: startDateTime and endDateTime – Define a time range for which you want to retrieve results. Of the optional fields, you can organize the results in the following ways: Use the filters field to filter the results and the sortBy field to specify the values by which to sort the results. Use the maxResults field to limit the number of results to return in a single response and the nextToken field to return the next batch of results if the response does not return the full set of results.
|
596
596
|
*/
|
597
597
|
listUtteranceAnalyticsData(callback?: (err: AWSError, data: LexModelsV2.Types.ListUtteranceAnalyticsDataResponse) => void): Request<LexModelsV2.Types.ListUtteranceAnalyticsDataResponse, AWSError>;
|
598
598
|
/**
|
599
|
-
* Retrieves summary metrics for the utterances in your bot. The following fields are required: metrics – A list of AnalyticsUtteranceMetric objects. In each object, use the name field to specify the metric to calculate, the statistic field to specify whether to calculate the Sum, Average, or Max number, and the order field to specify whether to sort the results in Ascending or Descending order. startDateTime and endDateTime – Define a time range for which you want to retrieve results. Of the optional fields, you can organize the results in the following ways: Use the filters field to filter the results, the groupBy field to specify categories by which to group the results, and the binBy field to specify time intervals by which to group the results. Use the maxResults field to limit the number of results to return in a single response and the nextToken field to return the next batch of results if the response does not return the full set of results. Note that an order field exists in both binBy and metrics. Currently, you can specify it in either field, but not in both.
|
599
|
+
* To use this API operation, your IAM role must have permissions to perform the ListAggregatedUtterances operation, which provides access to utterance-related analytics. See Viewing utterance statistics for the IAM policy to apply to the IAM role. Retrieves summary metrics for the utterances in your bot. The following fields are required: metrics – A list of AnalyticsUtteranceMetric objects. In each object, use the name field to specify the metric to calculate, the statistic field to specify whether to calculate the Sum, Average, or Max number, and the order field to specify whether to sort the results in Ascending or Descending order. startDateTime and endDateTime – Define a time range for which you want to retrieve results. Of the optional fields, you can organize the results in the following ways: Use the filters field to filter the results, the groupBy field to specify categories by which to group the results, and the binBy field to specify time intervals by which to group the results. Use the maxResults field to limit the number of results to return in a single response and the nextToken field to return the next batch of results if the response does not return the full set of results. Note that an order field exists in both binBy and metrics. Currently, you can specify it in either field, but not in both.
|
600
600
|
*/
|
601
601
|
listUtteranceMetrics(params: LexModelsV2.Types.ListUtteranceMetricsRequest, callback?: (err: AWSError, data: LexModelsV2.Types.ListUtteranceMetricsResponse) => void): Request<LexModelsV2.Types.ListUtteranceMetricsResponse, AWSError>;
|
602
602
|
/**
|
603
|
-
* Retrieves summary metrics for the utterances in your bot. The following fields are required: metrics – A list of AnalyticsUtteranceMetric objects. In each object, use the name field to specify the metric to calculate, the statistic field to specify whether to calculate the Sum, Average, or Max number, and the order field to specify whether to sort the results in Ascending or Descending order. startDateTime and endDateTime – Define a time range for which you want to retrieve results. Of the optional fields, you can organize the results in the following ways: Use the filters field to filter the results, the groupBy field to specify categories by which to group the results, and the binBy field to specify time intervals by which to group the results. Use the maxResults field to limit the number of results to return in a single response and the nextToken field to return the next batch of results if the response does not return the full set of results. Note that an order field exists in both binBy and metrics. Currently, you can specify it in either field, but not in both.
|
603
|
+
* To use this API operation, your IAM role must have permissions to perform the ListAggregatedUtterances operation, which provides access to utterance-related analytics. See Viewing utterance statistics for the IAM policy to apply to the IAM role. Retrieves summary metrics for the utterances in your bot. The following fields are required: metrics – A list of AnalyticsUtteranceMetric objects. In each object, use the name field to specify the metric to calculate, the statistic field to specify whether to calculate the Sum, Average, or Max number, and the order field to specify whether to sort the results in Ascending or Descending order. startDateTime and endDateTime – Define a time range for which you want to retrieve results. Of the optional fields, you can organize the results in the following ways: Use the filters field to filter the results, the groupBy field to specify categories by which to group the results, and the binBy field to specify time intervals by which to group the results. Use the maxResults field to limit the number of results to return in a single response and the nextToken field to return the next batch of results if the response does not return the full set of results. Note that an order field exists in both binBy and metrics. Currently, you can specify it in either field, but not in both.
|
604
604
|
*/
|
605
605
|
listUtteranceMetrics(callback?: (err: AWSError, data: LexModelsV2.Types.ListUtteranceMetricsResponse) => void): Request<LexModelsV2.Types.ListUtteranceMetricsResponse, AWSError>;
|
606
606
|
/**
|
@@ -882,6 +882,7 @@ declare namespace LexModelsV2 {
|
|
882
882
|
}
|
883
883
|
export type AnalyticsBinKeys = AnalyticsBinKey[];
|
884
884
|
export type AnalyticsBinValue = number;
|
885
|
+
export type AnalyticsChannel = string;
|
885
886
|
export type AnalyticsCommonFilterName = "BotAliasId"|"BotVersion"|"LocaleId"|"Modality"|"Channel"|string;
|
886
887
|
export type AnalyticsFilterOperator = "EQ"|"GT"|"LT"|string;
|
887
888
|
export type AnalyticsFilterValue = string;
|
@@ -1248,7 +1249,7 @@ declare namespace LexModelsV2 {
|
|
1248
1249
|
export type AnalyticsUtteranceMetricName = "Count"|"Missed"|"Detected"|"UtteranceTimestamp"|string;
|
1249
1250
|
export interface AnalyticsUtteranceMetricResult {
|
1250
1251
|
/**
|
1251
|
-
* The metric that you requested. Count – The number of utterances. Missed – The number of utterances that Amazon Lex failed to recognize. Detected – The number of utterances that Amazon Lex managed to detect.
|
1252
|
+
* The metric that you requested. Count – The number of utterances. Missed – The number of utterances that Amazon Lex failed to recognize. Detected – The number of utterances that Amazon Lex managed to detect. UtteranceTimestamp – The date and time of the utterance.
|
1252
1253
|
*/
|
1253
1254
|
name?: AnalyticsUtteranceMetricName;
|
1254
1255
|
/**
|
@@ -1538,7 +1539,6 @@ declare namespace LexModelsV2 {
|
|
1538
1539
|
*/
|
1539
1540
|
localeId: LocaleId;
|
1540
1541
|
}
|
1541
|
-
export type BotChannelType = "Facebook"|"Slack"|"TwilioSms"|string;
|
1542
1542
|
export interface BotExportSpecification {
|
1543
1543
|
/**
|
1544
1544
|
* The identifier of the bot assigned by Amazon Lex.
|
@@ -6423,7 +6423,7 @@ declare namespace LexModelsV2 {
|
|
6423
6423
|
/**
|
6424
6424
|
* The channel that is integrated with the bot that the session was held with.
|
6425
6425
|
*/
|
6426
|
-
channel?:
|
6426
|
+
channel?: AnalyticsChannel;
|
6427
6427
|
/**
|
6428
6428
|
* The identifier of the session.
|
6429
6429
|
*/
|
@@ -8323,7 +8323,7 @@ declare namespace LexModelsV2 {
|
|
8323
8323
|
export type UtteranceContentType = "PlainText"|"CustomPayload"|"SSML"|"ImageResponseCard"|string;
|
8324
8324
|
export interface UtteranceDataSortBy {
|
8325
8325
|
/**
|
8326
|
-
* The measure by which to sort the utterance analytics data. Count – The number of utterances.
|
8326
|
+
* The measure by which to sort the utterance analytics data. Count – The number of utterances. UtteranceTimestamp – The date and time of the utterance.
|
8327
8327
|
*/
|
8328
8328
|
name: AnalyticsUtteranceSortByName;
|
8329
8329
|
/**
|
@@ -8382,7 +8382,7 @@ declare namespace LexModelsV2 {
|
|
8382
8382
|
/**
|
8383
8383
|
* The channel that is integrated with the bot that the utterance was made to.
|
8384
8384
|
*/
|
8385
|
-
channel?:
|
8385
|
+
channel?: AnalyticsChannel;
|
8386
8386
|
/**
|
8387
8387
|
* The mode of the session. The possible values are as follows: Speech – The session consisted of spoken dialogue. Text – The session consisted of written dialogue. DTMF – The session consisted of touch-tone keypad (Dual Tone Multi-Frequency) key presses. MultiMode – The session consisted of multiple modes.
|
8388
8388
|
*/
|