@aws-sdk/client-connect 3.745.0 → 3.749.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.
Files changed (60) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +72 -7
  3. package/dist-es/Connect.js +2 -0
  4. package/dist-es/commands/ListAnalyticsDataLakeDataSetsCommand.js +22 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/protocols/Aws_restJson1.js +50 -3
  7. package/dist-types/Connect.d.ts +7 -0
  8. package/dist-types/ConnectClient.d.ts +3 -2
  9. package/dist-types/commands/AssociateApprovedOriginCommand.d.ts +1 -0
  10. package/dist-types/commands/AssociateBotCommand.d.ts +1 -0
  11. package/dist-types/commands/AssociateInstanceStorageConfigCommand.d.ts +1 -0
  12. package/dist-types/commands/AssociateLambdaFunctionCommand.d.ts +1 -0
  13. package/dist-types/commands/AssociateLexBotCommand.d.ts +1 -0
  14. package/dist-types/commands/AssociateSecurityKeyCommand.d.ts +1 -0
  15. package/dist-types/commands/BatchAssociateAnalyticsDataSetCommand.d.ts +1 -0
  16. package/dist-types/commands/CreateContactCommand.d.ts +2 -2
  17. package/dist-types/commands/DeleteInstanceCommand.d.ts +1 -0
  18. package/dist-types/commands/DescribeAuthenticationProfileCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeContactCommand.d.ts +11 -3
  20. package/dist-types/commands/DisassociateApprovedOriginCommand.d.ts +1 -0
  21. package/dist-types/commands/DisassociateBotCommand.d.ts +1 -0
  22. package/dist-types/commands/DisassociateInstanceStorageConfigCommand.d.ts +1 -0
  23. package/dist-types/commands/DisassociateLambdaFunctionCommand.d.ts +1 -0
  24. package/dist-types/commands/DisassociateLexBotCommand.d.ts +1 -0
  25. package/dist-types/commands/DisassociateSecurityKeyCommand.d.ts +1 -0
  26. package/dist-types/commands/ImportPhoneNumberCommand.d.ts +1 -1
  27. package/dist-types/commands/ListAnalyticsDataAssociationsCommand.d.ts +1 -0
  28. package/dist-types/commands/ListAnalyticsDataLakeDataSetsCommand.d.ts +95 -0
  29. package/dist-types/commands/ListAuthenticationProfilesCommand.d.ts +1 -1
  30. package/dist-types/commands/ListQueuesCommand.d.ts +2 -1
  31. package/dist-types/commands/ListQuickConnectsCommand.d.ts +1 -2
  32. package/dist-types/commands/ReleasePhoneNumberCommand.d.ts +1 -1
  33. package/dist-types/commands/StartChatContactCommand.d.ts +1 -1
  34. package/dist-types/commands/UpdateAuthenticationProfileCommand.d.ts +1 -1
  35. package/dist-types/commands/UpdateInstanceAttributeCommand.d.ts +1 -0
  36. package/dist-types/commands/UpdateInstanceStorageConfigCommand.d.ts +1 -0
  37. package/dist-types/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.d.ts +1 -1
  38. package/dist-types/commands/UpdateRoutingProfileConcurrencyCommand.d.ts +1 -1
  39. package/dist-types/commands/UpdateRoutingProfileDefaultOutboundQueueCommand.d.ts +1 -1
  40. package/dist-types/commands/index.d.ts +1 -0
  41. package/dist-types/models/models_0.d.ts +61 -0
  42. package/dist-types/models/models_1.d.ts +157 -92
  43. package/dist-types/models/models_2.d.ts +97 -65
  44. package/dist-types/models/models_3.d.ts +65 -3
  45. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  46. package/dist-types/ts3.4/Connect.d.ts +17 -0
  47. package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
  48. package/dist-types/ts3.4/commands/ListAnalyticsDataLakeDataSetsCommand.d.ts +51 -0
  49. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +2 -1
  50. package/dist-types/ts3.4/commands/ListQuickConnectsCommand.d.ts +4 -2
  51. package/dist-types/ts3.4/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/UpdateRoutingProfileConcurrencyCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/UpdateRoutingProfileDefaultOutboundQueueCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  55. package/dist-types/ts3.4/models/models_0.d.ts +8 -0
  56. package/dist-types/ts3.4/models/models_1.d.ts +19 -18
  57. package/dist-types/ts3.4/models/models_2.d.ts +22 -17
  58. package/dist-types/ts3.4/models/models_3.d.ts +17 -0
  59. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  60. package/package.json +11 -11
@@ -539,6 +539,10 @@ import {
539
539
  ListAnalyticsDataAssociationsCommandInput,
540
540
  ListAnalyticsDataAssociationsCommandOutput,
541
541
  } from "./commands/ListAnalyticsDataAssociationsCommand";
542
+ import {
543
+ ListAnalyticsDataLakeDataSetsCommandInput,
544
+ ListAnalyticsDataLakeDataSetsCommandOutput,
545
+ } from "./commands/ListAnalyticsDataLakeDataSetsCommand";
542
546
  import {
543
547
  ListApprovedOriginsCommandInput,
544
548
  ListApprovedOriginsCommandOutput,
@@ -2928,6 +2932,19 @@ export interface Connect {
2928
2932
  options: __HttpHandlerOptions,
2929
2933
  cb: (err: any, data?: ListAnalyticsDataAssociationsCommandOutput) => void
2930
2934
  ): void;
2935
+ listAnalyticsDataLakeDataSets(
2936
+ args: ListAnalyticsDataLakeDataSetsCommandInput,
2937
+ options?: __HttpHandlerOptions
2938
+ ): Promise<ListAnalyticsDataLakeDataSetsCommandOutput>;
2939
+ listAnalyticsDataLakeDataSets(
2940
+ args: ListAnalyticsDataLakeDataSetsCommandInput,
2941
+ cb: (err: any, data?: ListAnalyticsDataLakeDataSetsCommandOutput) => void
2942
+ ): void;
2943
+ listAnalyticsDataLakeDataSets(
2944
+ args: ListAnalyticsDataLakeDataSetsCommandInput,
2945
+ options: __HttpHandlerOptions,
2946
+ cb: (err: any, data?: ListAnalyticsDataLakeDataSetsCommandOutput) => void
2947
+ ): void;
2931
2948
  listApprovedOrigins(
2932
2949
  args: ListApprovedOriginsCommandInput,
2933
2950
  options?: __HttpHandlerOptions
@@ -585,6 +585,10 @@ import {
585
585
  ListAnalyticsDataAssociationsCommandInput,
586
586
  ListAnalyticsDataAssociationsCommandOutput,
587
587
  } from "./commands/ListAnalyticsDataAssociationsCommand";
588
+ import {
589
+ ListAnalyticsDataLakeDataSetsCommandInput,
590
+ ListAnalyticsDataLakeDataSetsCommandOutput,
591
+ } from "./commands/ListAnalyticsDataLakeDataSetsCommand";
588
592
  import {
589
593
  ListApprovedOriginsCommandInput,
590
594
  ListApprovedOriginsCommandOutput,
@@ -1312,6 +1316,7 @@ export type ServiceInputTypes =
1312
1316
  | ImportPhoneNumberCommandInput
1313
1317
  | ListAgentStatusesCommandInput
1314
1318
  | ListAnalyticsDataAssociationsCommandInput
1319
+ | ListAnalyticsDataLakeDataSetsCommandInput
1315
1320
  | ListApprovedOriginsCommandInput
1316
1321
  | ListAssociatedContactsCommandInput
1317
1322
  | ListAuthenticationProfilesCommandInput
@@ -1594,6 +1599,7 @@ export type ServiceOutputTypes =
1594
1599
  | ImportPhoneNumberCommandOutput
1595
1600
  | ListAgentStatusesCommandOutput
1596
1601
  | ListAnalyticsDataAssociationsCommandOutput
1602
+ | ListAnalyticsDataLakeDataSetsCommandOutput
1597
1603
  | ListApprovedOriginsCommandOutput
1598
1604
  | ListAssociatedContactsCommandOutput
1599
1605
  | ListAuthenticationProfilesCommandOutput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectClient";
8
+ import {
9
+ ListAnalyticsDataLakeDataSetsRequest,
10
+ ListAnalyticsDataLakeDataSetsResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAnalyticsDataLakeDataSetsCommandInput
15
+ extends ListAnalyticsDataLakeDataSetsRequest {}
16
+ export interface ListAnalyticsDataLakeDataSetsCommandOutput
17
+ extends ListAnalyticsDataLakeDataSetsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListAnalyticsDataLakeDataSetsCommand_base: {
20
+ new (
21
+ input: ListAnalyticsDataLakeDataSetsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListAnalyticsDataLakeDataSetsCommandInput,
24
+ ListAnalyticsDataLakeDataSetsCommandOutput,
25
+ ConnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListAnalyticsDataLakeDataSetsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListAnalyticsDataLakeDataSetsCommandInput,
33
+ ListAnalyticsDataLakeDataSetsCommandOutput,
34
+ ConnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListAnalyticsDataLakeDataSetsCommand extends ListAnalyticsDataLakeDataSetsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListAnalyticsDataLakeDataSetsRequest;
44
+ output: ListAnalyticsDataLakeDataSetsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListAnalyticsDataLakeDataSetsCommandInput;
48
+ output: ListAnalyticsDataLakeDataSetsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -5,7 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { ListQueuesRequest, ListQueuesResponse } from "../models/models_1";
8
+ import { ListQueuesRequest } from "../models/models_1";
9
+ import { ListQueuesResponse } from "../models/models_2";
9
10
  export { __MetadataBearer };
10
11
  export { $Command };
11
12
  export interface ListQueuesCommandInput extends ListQueuesRequest {}
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { ListQuickConnectsRequest } from "../models/models_1";
9
- import { ListQuickConnectsResponse } from "../models/models_2";
8
+ import {
9
+ ListQuickConnectsRequest,
10
+ ListQuickConnectsResponse,
11
+ } from "../models/models_2";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface ListQuickConnectsCommandInput
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { UpdateRoutingProfileAgentAvailabilityTimerRequest } from "../models/models_2";
8
+ import { UpdateRoutingProfileAgentAvailabilityTimerRequest } from "../models/models_3";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface UpdateRoutingProfileAgentAvailabilityTimerCommandInput
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { UpdateRoutingProfileConcurrencyRequest } from "../models/models_2";
8
+ import { UpdateRoutingProfileConcurrencyRequest } from "../models/models_3";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface UpdateRoutingProfileConcurrencyCommandInput
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { UpdateRoutingProfileDefaultOutboundQueueRequest } from "../models/models_2";
8
+ import { UpdateRoutingProfileDefaultOutboundQueueRequest } from "../models/models_3";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface UpdateRoutingProfileDefaultOutboundQueueCommandInput
@@ -133,6 +133,7 @@ export * from "./GetTrafficDistributionCommand";
133
133
  export * from "./ImportPhoneNumberCommand";
134
134
  export * from "./ListAgentStatusesCommand";
135
135
  export * from "./ListAnalyticsDataAssociationsCommand";
136
+ export * from "./ListAnalyticsDataLakeDataSetsCommand";
136
137
  export * from "./ListApprovedOriginsCommand";
137
138
  export * from "./ListAssociatedContactsCommand";
138
139
  export * from "./ListAuthenticationProfilesCommand";
@@ -323,6 +323,7 @@ export declare class InvalidRequestException extends __BaseException {
323
323
  export interface AssociateApprovedOriginRequest {
324
324
  InstanceId: string | undefined;
325
325
  Origin: string | undefined;
326
+ ClientToken?: string | undefined;
326
327
  }
327
328
  export declare const AttachedFileServiceQuotaExceededExceptionReason: {
328
329
  readonly TOTAL_FILE_COUNT_EXCEEDED: "TOTAL_FILE_COUNT_EXCEEDED";
@@ -373,6 +374,7 @@ export interface AssociateBotRequest {
373
374
  InstanceId: string | undefined;
374
375
  LexBot?: LexBot | undefined;
375
376
  LexV2Bot?: LexV2Bot | undefined;
377
+ ClientToken?: string | undefined;
376
378
  }
377
379
  export declare class LimitExceededException extends __BaseException {
378
380
  readonly name: "LimitExceededException";
@@ -502,6 +504,7 @@ export interface AssociateInstanceStorageConfigRequest {
502
504
  InstanceId: string | undefined;
503
505
  ResourceType: InstanceStorageResourceType | undefined;
504
506
  StorageConfig: InstanceStorageConfig | undefined;
507
+ ClientToken?: string | undefined;
505
508
  }
506
509
  export interface AssociateInstanceStorageConfigResponse {
507
510
  AssociationId?: string | undefined;
@@ -509,10 +512,12 @@ export interface AssociateInstanceStorageConfigResponse {
509
512
  export interface AssociateLambdaFunctionRequest {
510
513
  InstanceId: string | undefined;
511
514
  FunctionArn: string | undefined;
515
+ ClientToken?: string | undefined;
512
516
  }
513
517
  export interface AssociateLexBotRequest {
514
518
  InstanceId: string | undefined;
515
519
  LexBot: LexBot | undefined;
520
+ ClientToken?: string | undefined;
516
521
  }
517
522
  export interface AssociatePhoneNumberContactFlowRequest {
518
523
  PhoneNumberId: string | undefined;
@@ -541,6 +546,7 @@ export interface AssociateRoutingProfileQueuesRequest {
541
546
  export interface AssociateSecurityKeyRequest {
542
547
  InstanceId: string | undefined;
543
548
  Key: string | undefined;
549
+ ClientToken?: string | undefined;
544
550
  }
545
551
  export interface AssociateSecurityKeyResponse {
546
552
  AssociationId?: string | undefined;
@@ -571,6 +577,7 @@ export interface AnalyticsDataAssociationResult {
571
577
  TargetAccountId?: string | undefined;
572
578
  ResourceShareId?: string | undefined;
573
579
  ResourceShareArn?: string | undefined;
580
+ ResourceShareStatus?: string | undefined;
574
581
  }
575
582
  export interface ErrorResult {
576
583
  ErrorCode?: string | undefined;
@@ -1845,6 +1852,7 @@ export interface DeleteHoursOfOperationOverrideRequest {
1845
1852
  }
1846
1853
  export interface DeleteInstanceRequest {
1847
1854
  InstanceId: string | undefined;
1855
+ ClientToken?: string | undefined;
1848
1856
  }
1849
1857
  export interface DeleteIntegrationAssociationRequest {
1850
1858
  InstanceId: string | undefined;
@@ -1061,11 +1061,13 @@ export interface DisassociateAnalyticsDataSetRequest {
1061
1061
  export interface DisassociateApprovedOriginRequest {
1062
1062
  InstanceId: string | undefined;
1063
1063
  Origin: string | undefined;
1064
+ ClientToken?: string | undefined;
1064
1065
  }
1065
1066
  export interface DisassociateBotRequest {
1066
1067
  InstanceId: string | undefined;
1067
1068
  LexBot?: LexBot | undefined;
1068
1069
  LexV2Bot?: LexV2Bot | undefined;
1070
+ ClientToken?: string | undefined;
1069
1071
  }
1070
1072
  export interface DisassociateFlowRequest {
1071
1073
  InstanceId: string | undefined;
@@ -1077,15 +1079,18 @@ export interface DisassociateInstanceStorageConfigRequest {
1077
1079
  InstanceId: string | undefined;
1078
1080
  AssociationId: string | undefined;
1079
1081
  ResourceType: InstanceStorageResourceType | undefined;
1082
+ ClientToken?: string | undefined;
1080
1083
  }
1081
1084
  export interface DisassociateLambdaFunctionRequest {
1082
1085
  InstanceId: string | undefined;
1083
1086
  FunctionArn: string | undefined;
1087
+ ClientToken?: string | undefined;
1084
1088
  }
1085
1089
  export interface DisassociateLexBotRequest {
1086
1090
  InstanceId: string | undefined;
1087
1091
  BotName: string | undefined;
1088
1092
  LexRegion: string | undefined;
1093
+ ClientToken?: string | undefined;
1089
1094
  }
1090
1095
  export interface DisassociatePhoneNumberContactFlowRequest {
1091
1096
  PhoneNumberId: string | undefined;
@@ -1104,6 +1109,7 @@ export interface DisassociateRoutingProfileQueuesRequest {
1104
1109
  export interface DisassociateSecurityKeyRequest {
1105
1110
  InstanceId: string | undefined;
1106
1111
  AssociationId: string | undefined;
1112
+ ClientToken?: string | undefined;
1107
1113
  }
1108
1114
  export interface DisassociateTrafficDistributionGroupUserRequest {
1109
1115
  TrafficDistributionGroupId: string | undefined;
@@ -1549,6 +1555,19 @@ export interface ListAnalyticsDataAssociationsResponse {
1549
1555
  Results?: AnalyticsDataAssociationResult[] | undefined;
1550
1556
  NextToken?: string | undefined;
1551
1557
  }
1558
+ export interface ListAnalyticsDataLakeDataSetsRequest {
1559
+ InstanceId: string | undefined;
1560
+ NextToken?: string | undefined;
1561
+ MaxResults?: number | undefined;
1562
+ }
1563
+ export interface AnalyticsDataSetsResult {
1564
+ DataSetId?: string | undefined;
1565
+ DataSetName?: string | undefined;
1566
+ }
1567
+ export interface ListAnalyticsDataLakeDataSetsResponse {
1568
+ Results?: AnalyticsDataSetsResult[] | undefined;
1569
+ NextToken?: string | undefined;
1570
+ }
1552
1571
  export interface ListApprovedOriginsRequest {
1553
1572
  InstanceId: string | undefined;
1554
1573
  NextToken?: string | undefined;
@@ -2106,24 +2125,6 @@ export interface ListQueuesRequest {
2106
2125
  NextToken?: string | undefined;
2107
2126
  MaxResults?: number | undefined;
2108
2127
  }
2109
- export interface QueueSummary {
2110
- Id?: string | undefined;
2111
- Arn?: string | undefined;
2112
- Name?: string | undefined;
2113
- QueueType?: QueueType | undefined;
2114
- LastModifiedTime?: Date | undefined;
2115
- LastModifiedRegion?: string | undefined;
2116
- }
2117
- export interface ListQueuesResponse {
2118
- QueueSummaryList?: QueueSummary[] | undefined;
2119
- NextToken?: string | undefined;
2120
- }
2121
- export interface ListQuickConnectsRequest {
2122
- InstanceId: string | undefined;
2123
- NextToken?: string | undefined;
2124
- MaxResults?: number | undefined;
2125
- QuickConnectTypes?: QuickConnectType[] | undefined;
2126
- }
2127
2128
  export declare const DescribeEmailAddressResponseFilterSensitiveLog: (
2128
2129
  obj: DescribeEmailAddressResponse
2129
2130
  ) => any;
@@ -2,7 +2,6 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
2
2
  import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
3
3
  import {
4
4
  ActionSummary,
5
- AgentAvailabilityTimer,
6
5
  AgentHierarchyGroups,
7
6
  AgentStatus,
8
7
  AgentStatusState,
@@ -19,13 +18,13 @@ import {
19
18
  HoursOfOperationOverrideConfig,
20
19
  InstanceStorageConfig,
21
20
  InstanceStorageResourceType,
22
- MediaConcurrency,
23
21
  MonitorCapability,
24
22
  OutboundCallerConfig,
25
23
  OutboundEmailConfig,
26
24
  ParticipantRole,
27
25
  PredefinedAttributeValues,
28
26
  QuickConnectConfig,
27
+ QuickConnectType,
29
28
  Reference,
30
29
  RehydrationType,
31
30
  RulePublishStatus,
@@ -59,12 +58,31 @@ import {
59
58
  Prompt,
60
59
  Queue,
61
60
  QueueStatus,
61
+ QueueType,
62
62
  QuickConnect,
63
63
  QuickConnectSummary,
64
64
  RoutingProfile,
65
65
  SortOrder,
66
66
  TrafficDistributionGroupStatus,
67
67
  } from "./models_1";
68
+ export interface QueueSummary {
69
+ Id?: string | undefined;
70
+ Arn?: string | undefined;
71
+ Name?: string | undefined;
72
+ QueueType?: QueueType | undefined;
73
+ LastModifiedTime?: Date | undefined;
74
+ LastModifiedRegion?: string | undefined;
75
+ }
76
+ export interface ListQueuesResponse {
77
+ QueueSummaryList?: QueueSummary[] | undefined;
78
+ NextToken?: string | undefined;
79
+ }
80
+ export interface ListQuickConnectsRequest {
81
+ InstanceId: string | undefined;
82
+ NextToken?: string | undefined;
83
+ MaxResults?: number | undefined;
84
+ QuickConnectTypes?: QuickConnectType[] | undefined;
85
+ }
68
86
  export interface ListQuickConnectsResponse {
69
87
  QuickConnectSummaryList?: QuickConnectSummary[] | undefined;
70
88
  NextToken?: string | undefined;
@@ -1575,12 +1593,14 @@ export interface UpdateInstanceAttributeRequest {
1575
1593
  InstanceId: string | undefined;
1576
1594
  AttributeType: InstanceAttributeType | undefined;
1577
1595
  Value: string | undefined;
1596
+ ClientToken?: string | undefined;
1578
1597
  }
1579
1598
  export interface UpdateInstanceStorageConfigRequest {
1580
1599
  InstanceId: string | undefined;
1581
1600
  AssociationId: string | undefined;
1582
1601
  ResourceType: InstanceStorageResourceType | undefined;
1583
1602
  StorageConfig: InstanceStorageConfig | undefined;
1603
+ ClientToken?: string | undefined;
1584
1604
  }
1585
1605
  export interface UpdateParticipantAuthenticationRequest {
1586
1606
  State: string | undefined;
@@ -1742,21 +1762,6 @@ export interface UpdateQuickConnectNameRequest {
1742
1762
  Name?: string | undefined;
1743
1763
  Description?: string | undefined;
1744
1764
  }
1745
- export interface UpdateRoutingProfileAgentAvailabilityTimerRequest {
1746
- InstanceId: string | undefined;
1747
- RoutingProfileId: string | undefined;
1748
- AgentAvailabilityTimer: AgentAvailabilityTimer | undefined;
1749
- }
1750
- export interface UpdateRoutingProfileConcurrencyRequest {
1751
- InstanceId: string | undefined;
1752
- RoutingProfileId: string | undefined;
1753
- MediaConcurrencies: MediaConcurrency[] | undefined;
1754
- }
1755
- export interface UpdateRoutingProfileDefaultOutboundQueueRequest {
1756
- InstanceId: string | undefined;
1757
- RoutingProfileId: string | undefined;
1758
- DefaultOutboundQueueId: string | undefined;
1759
- }
1760
1765
  export declare const ViewSummaryFilterSensitiveLog: (obj: ViewSummary) => any;
1761
1766
  export declare const ListViewsResponseFilterSensitiveLog: (
1762
1767
  obj: ListViewsResponse
@@ -1,5 +1,6 @@
1
1
  import {
2
2
  AdditionalEmailRecipients,
3
+ AgentAvailabilityTimer,
3
4
  AgentConfig,
4
5
  AgentInfo,
5
6
  AgentStatusSearchFilter,
@@ -13,6 +14,7 @@ import {
13
14
  EvaluationFormQuestion,
14
15
  EvaluationFormScoringStrategy,
15
16
  InitiateAs,
17
+ MediaConcurrency,
16
18
  Reference,
17
19
  RoutingProfileQueueConfig,
18
20
  RuleAction,
@@ -76,6 +78,21 @@ import {
76
78
  UserHierarchyGroupSearchFilter,
77
79
  UserSearchFilter,
78
80
  } from "./models_2";
81
+ export interface UpdateRoutingProfileAgentAvailabilityTimerRequest {
82
+ InstanceId: string | undefined;
83
+ RoutingProfileId: string | undefined;
84
+ AgentAvailabilityTimer: AgentAvailabilityTimer | undefined;
85
+ }
86
+ export interface UpdateRoutingProfileConcurrencyRequest {
87
+ InstanceId: string | undefined;
88
+ RoutingProfileId: string | undefined;
89
+ MediaConcurrencies: MediaConcurrency[] | undefined;
90
+ }
91
+ export interface UpdateRoutingProfileDefaultOutboundQueueRequest {
92
+ InstanceId: string | undefined;
93
+ RoutingProfileId: string | undefined;
94
+ DefaultOutboundQueueId: string | undefined;
95
+ }
79
96
  export interface UpdateRoutingProfileNameRequest {
80
97
  InstanceId: string | undefined;
81
98
  RoutingProfileId: string | undefined;
@@ -543,6 +543,10 @@ import {
543
543
  ListAnalyticsDataAssociationsCommandInput,
544
544
  ListAnalyticsDataAssociationsCommandOutput,
545
545
  } from "../commands/ListAnalyticsDataAssociationsCommand";
546
+ import {
547
+ ListAnalyticsDataLakeDataSetsCommandInput,
548
+ ListAnalyticsDataLakeDataSetsCommandOutput,
549
+ } from "../commands/ListAnalyticsDataLakeDataSetsCommand";
546
550
  import {
547
551
  ListApprovedOriginsCommandInput,
548
552
  ListApprovedOriginsCommandOutput,
@@ -1667,6 +1671,10 @@ export declare const se_ListAnalyticsDataAssociationsCommand: (
1667
1671
  input: ListAnalyticsDataAssociationsCommandInput,
1668
1672
  context: __SerdeContext
1669
1673
  ) => Promise<__HttpRequest>;
1674
+ export declare const se_ListAnalyticsDataLakeDataSetsCommand: (
1675
+ input: ListAnalyticsDataLakeDataSetsCommandInput,
1676
+ context: __SerdeContext
1677
+ ) => Promise<__HttpRequest>;
1670
1678
  export declare const se_ListApprovedOriginsCommand: (
1671
1679
  input: ListApprovedOriginsCommandInput,
1672
1680
  context: __SerdeContext
@@ -2791,6 +2799,10 @@ export declare const de_ListAnalyticsDataAssociationsCommand: (
2791
2799
  output: __HttpResponse,
2792
2800
  context: __SerdeContext
2793
2801
  ) => Promise<ListAnalyticsDataAssociationsCommandOutput>;
2802
+ export declare const de_ListAnalyticsDataLakeDataSetsCommand: (
2803
+ output: __HttpResponse,
2804
+ context: __SerdeContext
2805
+ ) => Promise<ListAnalyticsDataLakeDataSetsCommandOutput>;
2794
2806
  export declare const de_ListApprovedOriginsCommand: (
2795
2807
  output: __HttpResponse,
2796
2808
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-connect",
3
3
  "description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
4
- "version": "3.745.0",
4
+ "version": "3.749.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-connect",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.744.0",
24
- "@aws-sdk/credential-provider-node": "3.744.0",
23
+ "@aws-sdk/core": "3.749.0",
24
+ "@aws-sdk/credential-provider-node": "3.749.0",
25
25
  "@aws-sdk/middleware-host-header": "3.734.0",
26
26
  "@aws-sdk/middleware-logger": "3.734.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.734.0",
28
- "@aws-sdk/middleware-user-agent": "3.744.0",
28
+ "@aws-sdk/middleware-user-agent": "3.749.0",
29
29
  "@aws-sdk/region-config-resolver": "3.734.0",
30
30
  "@aws-sdk/types": "3.734.0",
31
31
  "@aws-sdk/util-endpoints": "3.743.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.734.0",
33
- "@aws-sdk/util-user-agent-node": "3.744.0",
33
+ "@aws-sdk/util-user-agent-node": "3.749.0",
34
34
  "@smithy/config-resolver": "^4.0.1",
35
- "@smithy/core": "^3.1.2",
35
+ "@smithy/core": "^3.1.3",
36
36
  "@smithy/fetch-http-handler": "^5.0.1",
37
37
  "@smithy/hash-node": "^4.0.1",
38
38
  "@smithy/invalid-dependency": "^4.0.1",
39
39
  "@smithy/middleware-content-length": "^4.0.1",
40
- "@smithy/middleware-endpoint": "^4.0.3",
41
- "@smithy/middleware-retry": "^4.0.4",
40
+ "@smithy/middleware-endpoint": "^4.0.4",
41
+ "@smithy/middleware-retry": "^4.0.5",
42
42
  "@smithy/middleware-serde": "^4.0.2",
43
43
  "@smithy/middleware-stack": "^4.0.1",
44
44
  "@smithy/node-config-provider": "^4.0.1",
45
45
  "@smithy/node-http-handler": "^4.0.2",
46
46
  "@smithy/protocol-http": "^5.0.1",
47
- "@smithy/smithy-client": "^4.1.3",
47
+ "@smithy/smithy-client": "^4.1.4",
48
48
  "@smithy/types": "^4.1.0",
49
49
  "@smithy/url-parser": "^4.0.1",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.4",
54
- "@smithy/util-defaults-mode-node": "^4.0.4",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.5",
54
+ "@smithy/util-defaults-mode-node": "^4.0.5",
55
55
  "@smithy/util-endpoints": "^3.0.1",
56
56
  "@smithy/util-middleware": "^4.0.1",
57
57
  "@smithy/util-retry": "^4.0.1",