@aws-sdk/client-connect 3.968.0 → 3.970.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 (69) hide show
  1. package/README.md +21 -0
  2. package/dist-cjs/index.js +814 -636
  3. package/dist-es/Connect.js +6 -0
  4. package/dist-es/commands/AssociateHoursOfOperationsCommand.js +16 -0
  5. package/dist-es/commands/DisassociateHoursOfOperationsCommand.js +16 -0
  6. package/dist-es/commands/ListChildHoursOfOperationsCommand.js +16 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/enums.js +14 -0
  9. package/dist-es/pagination/ListChildHoursOfOperationsPaginator.js +4 -0
  10. package/dist-es/pagination/index.js +1 -0
  11. package/dist-es/schemas/schemas_0.js +743 -636
  12. package/dist-types/Connect.d.ts +21 -0
  13. package/dist-types/ConnectClient.d.ts +5 -2
  14. package/dist-types/commands/AssociateHoursOfOperationsCommand.d.ts +99 -0
  15. package/dist-types/commands/CreateHoursOfOperationCommand.d.ts +8 -0
  16. package/dist-types/commands/CreateHoursOfOperationOverrideCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteContactFlowCommand.d.ts +1 -1
  18. package/dist-types/commands/DeleteContactFlowModuleCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeHoursOfOperationCommand.d.ts +7 -0
  20. package/dist-types/commands/DescribeHoursOfOperationOverrideCommand.d.ts +16 -0
  21. package/dist-types/commands/DisassociateHoursOfOperationsCommand.d.ts +94 -0
  22. package/dist-types/commands/GetEffectiveHoursOfOperationsCommand.d.ts +19 -0
  23. package/dist-types/commands/ListChildHoursOfOperationsCommand.d.ts +103 -0
  24. package/dist-types/commands/ListContactEvaluationsCommand.d.ts +2 -1
  25. package/dist-types/commands/ListContactFlowModuleAliasesCommand.d.ts +1 -1
  26. package/dist-types/commands/ListContactFlowModuleVersionsCommand.d.ts +1 -1
  27. package/dist-types/commands/ListContactFlowModulesCommand.d.ts +1 -1
  28. package/dist-types/commands/ListHoursOfOperationOverridesCommand.d.ts +16 -0
  29. package/dist-types/commands/SearchHoursOfOperationOverridesCommand.d.ts +16 -0
  30. package/dist-types/commands/SearchHoursOfOperationsCommand.d.ts +7 -0
  31. package/dist-types/commands/StartContactRecordingCommand.d.ts +1 -1
  32. package/dist-types/commands/StartContactStreamingCommand.d.ts +1 -1
  33. package/dist-types/commands/StartEmailContactCommand.d.ts +1 -2
  34. package/dist-types/commands/StartOutboundChatContactCommand.d.ts +1 -2
  35. package/dist-types/commands/UpdateHoursOfOperationOverrideCommand.d.ts +16 -0
  36. package/dist-types/commands/index.d.ts +3 -0
  37. package/dist-types/models/enums.d.ts +38 -0
  38. package/dist-types/models/models_0.d.ts +104 -41
  39. package/dist-types/models/models_1.d.ts +200 -226
  40. package/dist-types/models/models_2.d.ts +226 -175
  41. package/dist-types/models/models_3.d.ts +188 -3
  42. package/dist-types/pagination/ListChildHoursOfOperationsPaginator.d.ts +7 -0
  43. package/dist-types/pagination/index.d.ts +1 -0
  44. package/dist-types/schemas/schemas_0.d.ts +13 -0
  45. package/dist-types/ts3.4/Connect.d.ts +51 -0
  46. package/dist-types/ts3.4/ConnectClient.d.ts +18 -0
  47. package/dist-types/ts3.4/commands/AssociateHoursOfOperationsCommand.d.ts +47 -0
  48. package/dist-types/ts3.4/commands/DeleteContactFlowCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/DeleteContactFlowModuleCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/DisassociateHoursOfOperationsCommand.d.ts +47 -0
  51. package/dist-types/ts3.4/commands/ListChildHoursOfOperationsCommand.d.ts +51 -0
  52. package/dist-types/ts3.4/commands/ListContactEvaluationsCommand.d.ts +2 -4
  53. package/dist-types/ts3.4/commands/ListContactFlowModuleAliasesCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/ListContactFlowModuleVersionsCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/ListContactFlowModulesCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/StartContactRecordingCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/StartContactStreamingCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/StartEmailContactCommand.d.ts +4 -2
  59. package/dist-types/ts3.4/commands/StartOutboundChatContactCommand.d.ts +4 -2
  60. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  61. package/dist-types/ts3.4/models/enums.d.ts +19 -0
  62. package/dist-types/ts3.4/models/models_0.d.ts +23 -10
  63. package/dist-types/ts3.4/models/models_1.d.ts +49 -57
  64. package/dist-types/ts3.4/models/models_2.d.ts +59 -42
  65. package/dist-types/ts3.4/models/models_3.d.ts +49 -4
  66. package/dist-types/ts3.4/pagination/ListChildHoursOfOperationsPaginator.d.ts +11 -0
  67. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  68. package/dist-types/ts3.4/schemas/schemas_0.d.ts +13 -0
  69. package/package.json +33 -33
@@ -1,6 +1,230 @@
1
- import { ArtifactStatus, AutoEvaluationStatus, BooleanComparisonType, Channel, ChatEventType, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactInteractionType, ContactMediaProcessingFailureMode, ContactParticipantRole, ContactRecordingType, DataTableAttributeValueType, DateComparisonType, DateTimeComparisonType, DecimalComparisonType, DirectoryType, EmailHeaderType, EntityType, EvaluationFormLanguageCode, EvaluationFormVersionStatus, EvaluationStatus, EvaluationType, EventSourceName, FileStatusType, FileUseCaseType, HierarchyGroupMatchType, InboundMessageSourceType, InstanceStatus, InstanceStorageResourceType, IntegrationType, IvrRecordingTrack, ListFlowAssociationResourceType, MediaType, MonitorCapability, NumberComparisonType, OutboundMessageSourceType, ParticipantRole, PhoneNumberCountryCode, PhoneNumberType, QueueType, QuickConnectType, RealTimeContactAnalysisOutputType, RealTimeContactAnalysisPostContactSummaryFailureCode, RealTimeContactAnalysisPostContactSummaryStatus, RealTimeContactAnalysisSegmentType, RealTimeContactAnalysisSentimentLabel, RealTimeContactAnalysisStatus, RealTimeContactAnalysisSupportedChannel, ReferenceStatus, ReferenceType, RehydrationType, ResponseMode, RulePublishStatus, SearchContactsMatchType, SearchContactsTimeRangeConditionType, SearchContactsTimeRangeType, SortableFieldName, SortOrder, SourceType, StringComparisonType, TargetListType, TaskTemplateStatus, TrafficDistributionGroupStatus, TrafficType, UseCaseType, ViewStatus, ViewType, Visibility, VocabularyLanguageCode, VocabularyState, VoiceRecordingTrack } from "./enums";
1
+ import { ArtifactStatus, AutoEvaluationStatus, BooleanComparisonType, Channel, ChatEventType, ContactFlowModuleState, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactInteractionType, ContactMediaProcessingFailureMode, ContactParticipantRole, ContactRecordingType, DataTableAttributeValueType, DateComparisonType, DateTimeComparisonType, DecimalComparisonType, DirectoryType, EntityType, EvaluationFormLanguageCode, EvaluationFormVersionStatus, EvaluationStatus, EvaluationType, EventSourceName, FileStatusType, FileUseCaseType, HierarchyGroupMatchType, InstanceStatus, InstanceStorageResourceType, IntegrationType, IvrRecordingTrack, ListFlowAssociationResourceType, MediaType, MonitorCapability, NumberComparisonType, OutboundMessageSourceType, ParticipantRole, PhoneNumberCountryCode, PhoneNumberType, QueueType, QuickConnectType, RealTimeContactAnalysisOutputType, RealTimeContactAnalysisPostContactSummaryFailureCode, RealTimeContactAnalysisPostContactSummaryStatus, RealTimeContactAnalysisSegmentType, RealTimeContactAnalysisSentimentLabel, RealTimeContactAnalysisStatus, RealTimeContactAnalysisSupportedChannel, ReferenceStatus, ReferenceType, RehydrationType, ResponseMode, RulePublishStatus, SearchContactsMatchType, SearchContactsTimeRangeConditionType, SearchContactsTimeRangeType, SortableFieldName, SortOrder, SourceType, StringComparisonType, TargetListType, TaskTemplateStatus, TrafficDistributionGroupStatus, TrafficType, UseCaseType, ViewStatus, ViewType, Visibility, VocabularyLanguageCode, VocabularyState, VoiceRecordingTrack } from "./enums";
2
2
  import { type AgentHierarchyGroups, type ControlPlaneAttributeFilter, type CreatedByInfo, type DataTableLockVersion, type StringCondition, type UserPhoneConfig, ActionSummary, AgentStatus, AliasConfiguration, Application, FlowAssociationSummary, FlowModule, InstanceStorageConfig, LexBot, PrimaryValueResponse, SecurityProfileItem, TagCondition, UserProficiency, View } from "./models_0";
3
- import { Attribute, ContactFlow, ContactFlowModule, DataTable, DataTableAttribute, HierarchyGroup, HierarchyGroupSummary, HoursOfOperation, HoursOfOperationOverride, PredefinedAttribute, Prompt, Queue, QuickConnect, RoutingProfile } from "./models_1";
3
+ import { Attribute, ContactFlow, ContactFlowModule, DataTable, DataTableAttribute, EvaluationSummary, HierarchyGroup, HierarchyGroupSummary, HoursOfOperation, HoursOfOperationOverride, PredefinedAttribute, Prompt, Queue, QuickConnect, RoutingProfile } from "./models_1";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface ListContactEvaluationsResponse {
8
+ /**
9
+ * <p>Provides details about a list of contact evaluations belonging to an instance.</p>
10
+ * @public
11
+ */
12
+ EvaluationSummaryList: EvaluationSummary[] | undefined;
13
+ /**
14
+ * <p>If there are additional results, this is the token for the next set of results.</p>
15
+ * <important>
16
+ * <p>This is always returned as null in the response.</p>
17
+ * </important>
18
+ * @public
19
+ */
20
+ NextToken?: string | undefined;
21
+ }
22
+ /**
23
+ * @public
24
+ */
25
+ export interface ListContactFlowModuleAliasesRequest {
26
+ /**
27
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
28
+ * @public
29
+ */
30
+ InstanceId: string | undefined;
31
+ /**
32
+ * <p>The identifier of the flow module.</p>
33
+ * @public
34
+ */
35
+ ContactFlowModuleId: string | undefined;
36
+ /**
37
+ * <p>The token for the next set of results. Use the value returned in the previous
38
+ * response in the next request to retrieve the next set of results.</p>
39
+ * @public
40
+ */
41
+ NextToken?: string | undefined;
42
+ /**
43
+ * <p>The maximum number of results to return per page.</p>
44
+ * @public
45
+ */
46
+ MaxResults?: number | undefined;
47
+ }
48
+ /**
49
+ * <p>Contains information about an alias.</p>
50
+ * @public
51
+ */
52
+ export interface ContactFlowModuleAliasSummary {
53
+ /**
54
+ * <p>The Amazon Resource Name (ARN) of the flow module alias.</p>
55
+ * @public
56
+ */
57
+ Arn?: string | undefined;
58
+ /**
59
+ * <p>The identifier of the alias.</p>
60
+ * @public
61
+ */
62
+ AliasId?: string | undefined;
63
+ /**
64
+ * <p>The version of the flow module.</p>
65
+ * @public
66
+ */
67
+ Version?: number | undefined;
68
+ /**
69
+ * <p>The name of the alias.</p>
70
+ * @public
71
+ */
72
+ AliasName?: string | undefined;
73
+ /**
74
+ * <p>The description of the alias.</p>
75
+ * @public
76
+ */
77
+ AliasDescription?: string | undefined;
78
+ /**
79
+ * <p>The timestamp when this resource was last modified.</p>
80
+ * @public
81
+ */
82
+ LastModifiedTime?: Date | undefined;
83
+ }
84
+ /**
85
+ * @public
86
+ */
87
+ export interface ListContactFlowModuleAliasesResponse {
88
+ /**
89
+ * <p>Information about the flow module aliases.</p>
90
+ * @public
91
+ */
92
+ ContactFlowModuleAliasSummaryList?: ContactFlowModuleAliasSummary[] | undefined;
93
+ /**
94
+ * <p>If there are additional results, this is the token for the next set of results.</p>
95
+ * @public
96
+ */
97
+ NextToken?: string | undefined;
98
+ }
99
+ /**
100
+ * @public
101
+ */
102
+ export interface ListContactFlowModulesRequest {
103
+ /**
104
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
105
+ * @public
106
+ */
107
+ InstanceId: string | undefined;
108
+ /**
109
+ * <p>The token for the next set of results. Use the value returned in the previous
110
+ * response in the next request to retrieve the next set of results.</p>
111
+ * @public
112
+ */
113
+ NextToken?: string | undefined;
114
+ /**
115
+ * <p>The maximum number of results to return per page.</p>
116
+ * @public
117
+ */
118
+ MaxResults?: number | undefined;
119
+ /**
120
+ * <p>The state of the flow module.</p>
121
+ * @public
122
+ */
123
+ ContactFlowModuleState?: ContactFlowModuleState | undefined;
124
+ }
125
+ /**
126
+ * <p>Contains summary information about a flow.</p>
127
+ * @public
128
+ */
129
+ export interface ContactFlowModuleSummary {
130
+ /**
131
+ * <p>The identifier of the flow module.</p>
132
+ * @public
133
+ */
134
+ Id?: string | undefined;
135
+ /**
136
+ * <p>The Amazon Resource Name (ARN) of the flow module.</p>
137
+ * @public
138
+ */
139
+ Arn?: string | undefined;
140
+ /**
141
+ * <p>The name of the flow module.</p>
142
+ * @public
143
+ */
144
+ Name?: string | undefined;
145
+ /**
146
+ * <p>The type of flow module.</p>
147
+ * @public
148
+ */
149
+ State?: ContactFlowModuleState | undefined;
150
+ }
151
+ /**
152
+ * @public
153
+ */
154
+ export interface ListContactFlowModulesResponse {
155
+ /**
156
+ * <p>Information about the flow module.</p>
157
+ * @public
158
+ */
159
+ ContactFlowModulesSummaryList?: ContactFlowModuleSummary[] | undefined;
160
+ /**
161
+ * <p>If there are additional results, this is the token for the next set of results.</p>
162
+ * @public
163
+ */
164
+ NextToken?: string | undefined;
165
+ }
166
+ /**
167
+ * @public
168
+ */
169
+ export interface ListContactFlowModuleVersionsRequest {
170
+ /**
171
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
172
+ * @public
173
+ */
174
+ InstanceId: string | undefined;
175
+ /**
176
+ * <p>The identifier of the flow module.</p>
177
+ * @public
178
+ */
179
+ ContactFlowModuleId: string | undefined;
180
+ /**
181
+ * <p>The token for the next set of results. Use the value returned in the previous
182
+ * response in the next request to retrieve the next set of results.</p>
183
+ * @public
184
+ */
185
+ NextToken?: string | undefined;
186
+ /**
187
+ * <p>The maximum number of results to return per page.</p>
188
+ * @public
189
+ */
190
+ MaxResults?: number | undefined;
191
+ }
192
+ /**
193
+ * <p>Contains information about a version.</p>
194
+ * @public
195
+ */
196
+ export interface ContactFlowModuleVersionSummary {
197
+ /**
198
+ * <p>The Amazon Resource Name (ARN) of the flow module version.</p>
199
+ * @public
200
+ */
201
+ Arn?: string | undefined;
202
+ /**
203
+ * <p>The description of the flow module version.</p>
204
+ * @public
205
+ */
206
+ VersionDescription?: string | undefined;
207
+ /**
208
+ * <p>The version of the flow module.</p>
209
+ * @public
210
+ */
211
+ Version?: number | undefined;
212
+ }
213
+ /**
214
+ * @public
215
+ */
216
+ export interface ListContactFlowModuleVersionsResponse {
217
+ /**
218
+ * <p>Information about the flow module versions.</p>
219
+ * @public
220
+ */
221
+ ContactFlowModuleVersionSummaryList?: ContactFlowModuleVersionSummary[] | undefined;
222
+ /**
223
+ * <p>If there are additional results, this is the token for the next set of results.</p>
224
+ * @public
225
+ */
226
+ NextToken?: string | undefined;
227
+ }
4
228
  /**
5
229
  * @public
6
230
  */
@@ -7257,176 +7481,3 @@ export interface VoiceRecordingConfiguration {
7257
7481
  */
7258
7482
  IvrRecordingTrack?: IvrRecordingTrack | undefined;
7259
7483
  }
7260
- /**
7261
- * @public
7262
- */
7263
- export interface StartContactRecordingRequest {
7264
- /**
7265
- * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
7266
- * @public
7267
- */
7268
- InstanceId: string | undefined;
7269
- /**
7270
- * <p>The identifier of the contact.</p>
7271
- * @public
7272
- */
7273
- ContactId: string | undefined;
7274
- /**
7275
- * <p>The identifier of the contact. This is the identifier of the contact associated with the first interaction with
7276
- * the contact center.</p>
7277
- * @public
7278
- */
7279
- InitialContactId: string | undefined;
7280
- /**
7281
- * <p>The person being recorded.</p>
7282
- * @public
7283
- */
7284
- VoiceRecordingConfiguration: VoiceRecordingConfiguration | undefined;
7285
- }
7286
- /**
7287
- * @public
7288
- */
7289
- export interface StartContactRecordingResponse {
7290
- }
7291
- /**
7292
- * @public
7293
- */
7294
- export interface StartContactStreamingRequest {
7295
- /**
7296
- * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
7297
- * @public
7298
- */
7299
- InstanceId: string | undefined;
7300
- /**
7301
- * <p>The identifier of the contact. This is the identifier of the contact associated with the first interaction with
7302
- * the contact center.</p>
7303
- * @public
7304
- */
7305
- ContactId: string | undefined;
7306
- /**
7307
- * <p>The streaming configuration, such as the Amazon SNS streaming endpoint.</p>
7308
- * @public
7309
- */
7310
- ChatStreamingConfiguration: ChatStreamingConfiguration | undefined;
7311
- /**
7312
- * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
7313
- * request. If not provided, the Amazon Web Services
7314
- * SDK populates this field. For more information about idempotency, see
7315
- * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
7316
- * @public
7317
- */
7318
- ClientToken?: string | undefined;
7319
- }
7320
- /**
7321
- * @public
7322
- */
7323
- export interface StartContactStreamingResponse {
7324
- /**
7325
- * <p>The identifier of the streaming configuration enabled. </p>
7326
- * @public
7327
- */
7328
- StreamingId: string | undefined;
7329
- }
7330
- /**
7331
- * <p>Information about the additional TO and CC recipients of an inbound email contact.</p>
7332
- * <note>
7333
- * <p>You can include up to 50 email addresses in total, distributed across <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_StartEmailContact.html#API_StartEmailContact_RequestBody">DestinationEmailAddress</a>, <code>ToAddresses</code>, and <code>CcAddresses</code>. This total must include
7334
- * one required <code>DestinationEmailAddress</code>. You can then specify up to 49 addresses allocated across
7335
- * <code>ToAddresses</code> and <code>CcAddresses</code> as needed.</p>
7336
- * </note>
7337
- * @public
7338
- */
7339
- export interface InboundAdditionalRecipients {
7340
- /**
7341
- * <p>The <b>additional</b> recipients information present in to list. You must have 1
7342
- * required recipient (<code>DestinationEmailAddress</code>). You can then specify up to 49 additional recipients
7343
- * (across <code>ToAddresses</code> and <code>CcAddresses</code>), for a total of 50 recipients.</p>
7344
- * @public
7345
- */
7346
- ToAddresses?: EmailAddressInfo[] | undefined;
7347
- /**
7348
- * <p>The <b>additional</b> recipients information present in cc list. You must have 1
7349
- * required recipient (<code>DestinationEmailAddress</code>). You can then specify up to 49 additional recipients
7350
- * (across <code>ToAddresses</code> and <code>CcAddresses</code>), for a total of 50 recipients.</p>
7351
- * @public
7352
- */
7353
- CcAddresses?: EmailAddressInfo[] | undefined;
7354
- }
7355
- /**
7356
- * <p>Information about the email attachment files.</p>
7357
- * @public
7358
- */
7359
- export interface EmailAttachment {
7360
- /**
7361
- * <p>A case-sensitive name of the attached file being uploaded.</p>
7362
- * @public
7363
- */
7364
- FileName: string | undefined;
7365
- /**
7366
- * <p>The pre-signed URLs for the S3 bucket where the email attachment is stored.</p>
7367
- * @public
7368
- */
7369
- S3Url: string | undefined;
7370
- }
7371
- /**
7372
- * <p>Information about the raw email body content.</p>
7373
- * @public
7374
- */
7375
- export interface InboundRawMessage {
7376
- /**
7377
- * <p>The email subject.</p>
7378
- * @public
7379
- */
7380
- Subject: string | undefined;
7381
- /**
7382
- * <p>The email message body.</p>
7383
- * @public
7384
- */
7385
- Body: string | undefined;
7386
- /**
7387
- * <p>Type of content, that is, <code>text/plain</code> or <code>text/html</code>.</p>
7388
- * @public
7389
- */
7390
- ContentType: string | undefined;
7391
- /**
7392
- * <p>Headers present in inbound email.</p>
7393
- * @public
7394
- */
7395
- Headers?: Partial<Record<EmailHeaderType, string>> | undefined;
7396
- }
7397
- /**
7398
- * <p>Information about email body content.</p>
7399
- * @public
7400
- */
7401
- export interface InboundEmailContent {
7402
- /**
7403
- * <p>The message source type, that is, <code>RAW</code>.</p>
7404
- * @public
7405
- */
7406
- MessageSourceType: InboundMessageSourceType | undefined;
7407
- /**
7408
- * <p>The raw email body content.</p>
7409
- * @public
7410
- */
7411
- RawMessage?: InboundRawMessage | undefined;
7412
- }
7413
- /**
7414
- * @public
7415
- */
7416
- export interface StartEmailContactResponse {
7417
- /**
7418
- * <p>The identifier of this contact within the Amazon Connect instance.</p>
7419
- * @public
7420
- */
7421
- ContactId?: string | undefined;
7422
- }
7423
- /**
7424
- * @public
7425
- */
7426
- export interface StartOutboundChatContactResponse {
7427
- /**
7428
- * <p>The identifier of this contact within the Amazon Connect instance.</p>
7429
- * @public
7430
- */
7431
- ContactId?: string | undefined;
7432
- }
@@ -1,7 +1,180 @@
1
- import { AgentAvailabilityTimer, AgentStatusState, AnsweringMachineDetectionStatus, Channel, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactRecordingType, DataTableAttributeValueType, DataTableLockLevel, DisconnectOnCustomerExitParticipantType, EvaluationFormItemEnablementAction, EvaluationFormItemEnablementOperator, EvaluationFormQuestionType, EvaluationFormVersionStatus, InitiateAs, InstanceAttributeType, InstanceStorageResourceType, MeetingFeatureStatus, ParticipantTimerAction, ParticipantTimerType, QueueStatus, RoutingCriteriaStepStatus, RulePublishStatus, SearchableQueueType, TaskTemplateStatus, TimerEligibleParticipantRoles, TrafficType, ViewStatus, ViewType, Visibility } from "./enums";
2
- import { type AdditionalEmailRecipients, type AgentConfig, type AgentInfo, type AgentStatusSearchFilter, type AllowedCapabilities, type Campaign, type DataTableLockVersion, type Endpoint, type EvaluationFormAutoEvaluationConfiguration, type EvaluationFormLanguageConfiguration, type EvaluationFormQuestionTypeProperties, type EvaluationFormScoringStrategy, type EvaluationFormTargetConfiguration, type GranularAccessControlConfiguration, type InputPredefinedAttributeConfiguration, type InstanceStorageConfig, type OutboundCallerConfig, type OutboundEmailConfig, type OutboundStrategy, type PredefinedAttributeValues, type QuickConnectConfig, type StringCondition, type TaskTemplateConstraints, type TaskTemplateDefaults, type UserIdentityInfo, type UserInfo, type UserPhoneConfig, type Validation, type View, type ViewInputContent, type WorkspaceTheme, Application, EvaluationFormItemEnablementExpression, FlowModule, HoursOfOperationConfig, HoursOfOperationOverrideConfig, MediaConcurrency, PrimaryValue, Reference, RoutingProfileQueueConfig, RuleAction, TaskTemplateField, UserProficiency } from "./models_0";
1
+ import { AgentAvailabilityTimer, AgentStatusState, AnsweringMachineDetectionStatus, Channel, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactRecordingType, DataTableAttributeValueType, DataTableLockLevel, DisconnectOnCustomerExitParticipantType, EmailHeaderType, EvaluationFormItemEnablementAction, EvaluationFormItemEnablementOperator, EvaluationFormQuestionType, EvaluationFormVersionStatus, InboundMessageSourceType, InitiateAs, InstanceAttributeType, InstanceStorageResourceType, MeetingFeatureStatus, OverrideType, ParticipantTimerAction, ParticipantTimerType, QueueStatus, RoutingCriteriaStepStatus, RulePublishStatus, SearchableQueueType, TaskTemplateStatus, TimerEligibleParticipantRoles, TrafficType, ViewStatus, ViewType, Visibility } from "./enums";
2
+ import { type AdditionalEmailRecipients, type AgentConfig, type AgentInfo, type AgentStatusSearchFilter, type AllowedCapabilities, type Campaign, type DataTableLockVersion, type Endpoint, type EvaluationFormAutoEvaluationConfiguration, type EvaluationFormLanguageConfiguration, type EvaluationFormQuestionTypeProperties, type EvaluationFormScoringStrategy, type EvaluationFormTargetConfiguration, type GranularAccessControlConfiguration, type InputPredefinedAttributeConfiguration, type InstanceStorageConfig, type OutboundCallerConfig, type OutboundEmailConfig, type OutboundStrategy, type PredefinedAttributeValues, type QuickConnectConfig, type RecurrenceConfig, type StringCondition, type TaskTemplateConstraints, type TaskTemplateDefaults, type UserIdentityInfo, type UserInfo, type UserPhoneConfig, type Validation, type View, type ViewInputContent, type WorkspaceTheme, Application, EvaluationFormItemEnablementExpression, FlowModule, HoursOfOperationConfig, HoursOfOperationOverrideConfig, MediaConcurrency, PrimaryValue, Reference, RoutingProfileQueueConfig, RuleAction, TaskTemplateField, UserProficiency } from "./models_0";
3
3
  import { type AttributeCondition, type ChatMetrics, type ContactDetails, type Customer, type CustomerVoiceActivity, type DisconnectDetails, type EndpointInfo, type Evaluation, type EvaluationAnswerData, type Expiry, type GlobalResiliencyMetadata, type QualityMetrics, type QueueInfo, type SignInConfig, type TaskTemplateInfoV2, type TelephonyConfig, type WisdomInfo, ContactEvaluation, EvaluationNote, NextContactEntry, RecordingInfo } from "./models_1";
4
- import { type BooleanCondition, type ChatMessage, type ContactFlowModuleSearchFilter, type ContactFlowSearchFilter, type ContactSearchSummaryAgentInfo, type ContactSearchSummaryQueueInfo, type DataTableSearchFilter, type DateCondition, type DateTimeCondition, type DecimalCondition, type EmailAddressInfo, type EmailAddressSearchFilter, type EvaluationFormSearchFilter, type EvaluationSearchFilter, type HierarchyGroupCondition, type HoursOfOperationSearchFilter, type InboundAdditionalRecipients, type InboundEmailContent, type ListCondition, type NumberCondition, type OutboundAdditionalRecipients, type OutboundEmailContent, type ParticipantConfiguration, type ParticipantDetails, type PersistentChat, type PromptSearchFilter, type QueueSearchFilter, type QuickConnectSearchFilter, type RoutingProfileSearchFilter, type SecurityProfilesSearchFilter, type TemplatedMessageConfig, type UserHierarchyGroupSearchFilter, type UserSearchFilter, type ViewSearchFilter, type WorkspaceAssociationSearchFilter, type WorkspaceSearchFilter, EmailAttachment } from "./models_2";
4
+ import { type BooleanCondition, type ChatMessage, type ChatStreamingConfiguration, type ContactFlowModuleSearchFilter, type ContactFlowSearchFilter, type ContactSearchSummaryAgentInfo, type ContactSearchSummaryQueueInfo, type DataTableSearchFilter, type DateCondition, type DateTimeCondition, type DecimalCondition, type EmailAddressSearchFilter, type EvaluationFormSearchFilter, type EvaluationSearchFilter, type HierarchyGroupCondition, type HoursOfOperationSearchFilter, type ListCondition, type NumberCondition, type OutboundAdditionalRecipients, type OutboundEmailContent, type ParticipantConfiguration, type ParticipantDetails, type PersistentChat, type PromptSearchFilter, type QueueSearchFilter, type QuickConnectSearchFilter, type RoutingProfileSearchFilter, type SecurityProfilesSearchFilter, type TemplatedMessageConfig, type UserHierarchyGroupSearchFilter, type UserSearchFilter, type ViewSearchFilter, type VoiceRecordingConfiguration, type WorkspaceAssociationSearchFilter, type WorkspaceSearchFilter, EmailAddressInfo } from "./models_2";
5
+ /**
6
+ * @public
7
+ */
8
+ export interface StartContactRecordingRequest {
9
+ /**
10
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
11
+ * @public
12
+ */
13
+ InstanceId: string | undefined;
14
+ /**
15
+ * <p>The identifier of the contact.</p>
16
+ * @public
17
+ */
18
+ ContactId: string | undefined;
19
+ /**
20
+ * <p>The identifier of the contact. This is the identifier of the contact associated with the first interaction with
21
+ * the contact center.</p>
22
+ * @public
23
+ */
24
+ InitialContactId: string | undefined;
25
+ /**
26
+ * <p>The person being recorded.</p>
27
+ * @public
28
+ */
29
+ VoiceRecordingConfiguration: VoiceRecordingConfiguration | undefined;
30
+ }
31
+ /**
32
+ * @public
33
+ */
34
+ export interface StartContactRecordingResponse {
35
+ }
36
+ /**
37
+ * @public
38
+ */
39
+ export interface StartContactStreamingRequest {
40
+ /**
41
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
42
+ * @public
43
+ */
44
+ InstanceId: string | undefined;
45
+ /**
46
+ * <p>The identifier of the contact. This is the identifier of the contact associated with the first interaction with
47
+ * the contact center.</p>
48
+ * @public
49
+ */
50
+ ContactId: string | undefined;
51
+ /**
52
+ * <p>The streaming configuration, such as the Amazon SNS streaming endpoint.</p>
53
+ * @public
54
+ */
55
+ ChatStreamingConfiguration: ChatStreamingConfiguration | undefined;
56
+ /**
57
+ * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
58
+ * request. If not provided, the Amazon Web Services
59
+ * SDK populates this field. For more information about idempotency, see
60
+ * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
61
+ * @public
62
+ */
63
+ ClientToken?: string | undefined;
64
+ }
65
+ /**
66
+ * @public
67
+ */
68
+ export interface StartContactStreamingResponse {
69
+ /**
70
+ * <p>The identifier of the streaming configuration enabled. </p>
71
+ * @public
72
+ */
73
+ StreamingId: string | undefined;
74
+ }
75
+ /**
76
+ * <p>Information about the additional TO and CC recipients of an inbound email contact.</p>
77
+ * <note>
78
+ * <p>You can include up to 50 email addresses in total, distributed across <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_StartEmailContact.html#API_StartEmailContact_RequestBody">DestinationEmailAddress</a>, <code>ToAddresses</code>, and <code>CcAddresses</code>. This total must include
79
+ * one required <code>DestinationEmailAddress</code>. You can then specify up to 49 addresses allocated across
80
+ * <code>ToAddresses</code> and <code>CcAddresses</code> as needed.</p>
81
+ * </note>
82
+ * @public
83
+ */
84
+ export interface InboundAdditionalRecipients {
85
+ /**
86
+ * <p>The <b>additional</b> recipients information present in to list. You must have 1
87
+ * required recipient (<code>DestinationEmailAddress</code>). You can then specify up to 49 additional recipients
88
+ * (across <code>ToAddresses</code> and <code>CcAddresses</code>), for a total of 50 recipients.</p>
89
+ * @public
90
+ */
91
+ ToAddresses?: EmailAddressInfo[] | undefined;
92
+ /**
93
+ * <p>The <b>additional</b> recipients information present in cc list. You must have 1
94
+ * required recipient (<code>DestinationEmailAddress</code>). You can then specify up to 49 additional recipients
95
+ * (across <code>ToAddresses</code> and <code>CcAddresses</code>), for a total of 50 recipients.</p>
96
+ * @public
97
+ */
98
+ CcAddresses?: EmailAddressInfo[] | undefined;
99
+ }
100
+ /**
101
+ * <p>Information about the email attachment files.</p>
102
+ * @public
103
+ */
104
+ export interface EmailAttachment {
105
+ /**
106
+ * <p>A case-sensitive name of the attached file being uploaded.</p>
107
+ * @public
108
+ */
109
+ FileName: string | undefined;
110
+ /**
111
+ * <p>The pre-signed URLs for the S3 bucket where the email attachment is stored.</p>
112
+ * @public
113
+ */
114
+ S3Url: string | undefined;
115
+ }
116
+ /**
117
+ * <p>Information about the raw email body content.</p>
118
+ * @public
119
+ */
120
+ export interface InboundRawMessage {
121
+ /**
122
+ * <p>The email subject.</p>
123
+ * @public
124
+ */
125
+ Subject: string | undefined;
126
+ /**
127
+ * <p>The email message body.</p>
128
+ * @public
129
+ */
130
+ Body: string | undefined;
131
+ /**
132
+ * <p>Type of content, that is, <code>text/plain</code> or <code>text/html</code>.</p>
133
+ * @public
134
+ */
135
+ ContentType: string | undefined;
136
+ /**
137
+ * <p>Headers present in inbound email.</p>
138
+ * @public
139
+ */
140
+ Headers?: Partial<Record<EmailHeaderType, string>> | undefined;
141
+ }
142
+ /**
143
+ * <p>Information about email body content.</p>
144
+ * @public
145
+ */
146
+ export interface InboundEmailContent {
147
+ /**
148
+ * <p>The message source type, that is, <code>RAW</code>.</p>
149
+ * @public
150
+ */
151
+ MessageSourceType: InboundMessageSourceType | undefined;
152
+ /**
153
+ * <p>The raw email body content.</p>
154
+ * @public
155
+ */
156
+ RawMessage?: InboundRawMessage | undefined;
157
+ }
158
+ /**
159
+ * @public
160
+ */
161
+ export interface StartEmailContactResponse {
162
+ /**
163
+ * <p>The identifier of this contact within the Amazon Connect instance.</p>
164
+ * @public
165
+ */
166
+ ContactId?: string | undefined;
167
+ }
168
+ /**
169
+ * @public
170
+ */
171
+ export interface StartOutboundChatContactResponse {
172
+ /**
173
+ * <p>The identifier of this contact within the Amazon Connect instance.</p>
174
+ * @public
175
+ */
176
+ ContactId?: string | undefined;
177
+ }
5
178
  /**
6
179
  * @public
7
180
  */
@@ -1563,6 +1736,18 @@ export interface UpdateHoursOfOperationOverrideRequest {
1563
1736
  * @public
1564
1737
  */
1565
1738
  EffectiveTill?: string | undefined;
1739
+ /**
1740
+ * <p>Configuration for a recurring event.</p>
1741
+ * @public
1742
+ */
1743
+ RecurrenceConfig?: RecurrenceConfig | undefined;
1744
+ /**
1745
+ * <p>Whether the override will be defined as a <i>standard</i> or as a <i>recurring event</i>.</p>
1746
+ * <p>For more information about how override types are applied, see <a href="https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html">Build your list of overrides</a> in the
1747
+ * <i> Administrator Guide</i>.</p>
1748
+ * @public
1749
+ */
1750
+ OverrideType?: OverrideType | undefined;
1566
1751
  }
1567
1752
  /**
1568
1753
  * @public
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListChildHoursOfOperationsCommandInput, ListChildHoursOfOperationsCommandOutput } from "../commands/ListChildHoursOfOperationsCommand";
3
+ import { ConnectPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListChildHoursOfOperations: (config: ConnectPaginationConfiguration, input: ListChildHoursOfOperationsCommandInput, ...rest: any[]) => Paginator<ListChildHoursOfOperationsCommandOutput>;
@@ -8,6 +8,7 @@ export * from "./ListAgentStatusesPaginator";
8
8
  export * from "./ListApprovedOriginsPaginator";
9
9
  export * from "./ListAuthenticationProfilesPaginator";
10
10
  export * from "./ListBotsPaginator";
11
+ export * from "./ListChildHoursOfOperationsPaginator";
11
12
  export * from "./ListContactEvaluationsPaginator";
12
13
  export * from "./ListContactFlowModuleAliasesPaginator";
13
14
  export * from "./ListContactFlowModulesPaginator";