@aws-sdk/client-connect 3.686.0 → 3.691.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.
@@ -92,167 +92,171 @@ import {
92
92
  WisdomInfo,
93
93
  } from "./models_1";
94
94
  export interface ListTagsForResourceResponse {
95
- tags?: Record<string, string>;
95
+ tags?: Record<string, string> | undefined;
96
96
  }
97
97
  export interface ListTaskTemplatesRequest {
98
98
  InstanceId: string | undefined;
99
- NextToken?: string;
100
- MaxResults?: number;
101
- Status?: TaskTemplateStatus;
102
- Name?: string;
99
+ NextToken?: string | undefined;
100
+ MaxResults?: number | undefined;
101
+ Status?: TaskTemplateStatus | undefined;
102
+ Name?: string | undefined;
103
103
  }
104
104
  export interface TaskTemplateMetadata {
105
- Id?: string;
106
- Arn?: string;
107
- Name?: string;
108
- Description?: string;
109
- Status?: TaskTemplateStatus;
110
- LastModifiedTime?: Date;
111
- CreatedTime?: Date;
105
+ Id?: string | undefined;
106
+ Arn?: string | undefined;
107
+ Name?: string | undefined;
108
+ Description?: string | undefined;
109
+ Status?: TaskTemplateStatus | undefined;
110
+ LastModifiedTime?: Date | undefined;
111
+ CreatedTime?: Date | undefined;
112
112
  }
113
113
  export interface ListTaskTemplatesResponse {
114
- TaskTemplates?: TaskTemplateMetadata[];
115
- NextToken?: string;
114
+ TaskTemplates?: TaskTemplateMetadata[] | undefined;
115
+ NextToken?: string | undefined;
116
116
  }
117
117
  export interface ListTrafficDistributionGroupsRequest {
118
- MaxResults?: number;
119
- NextToken?: string;
120
- InstanceId?: string;
118
+ MaxResults?: number | undefined;
119
+ NextToken?: string | undefined;
120
+ InstanceId?: string | undefined;
121
121
  }
122
122
  export interface TrafficDistributionGroupSummary {
123
- Id?: string;
124
- Arn?: string;
125
- Name?: string;
126
- InstanceArn?: string;
127
- Status?: TrafficDistributionGroupStatus;
128
- IsDefault?: boolean;
123
+ Id?: string | undefined;
124
+ Arn?: string | undefined;
125
+ Name?: string | undefined;
126
+ InstanceArn?: string | undefined;
127
+ Status?: TrafficDistributionGroupStatus | undefined;
128
+ IsDefault?: boolean | undefined;
129
129
  }
130
130
  export interface ListTrafficDistributionGroupsResponse {
131
- NextToken?: string;
132
- TrafficDistributionGroupSummaryList?: TrafficDistributionGroupSummary[];
131
+ NextToken?: string | undefined;
132
+ TrafficDistributionGroupSummaryList?:
133
+ | TrafficDistributionGroupSummary[]
134
+ | undefined;
133
135
  }
134
136
  export interface ListTrafficDistributionGroupUsersRequest {
135
137
  TrafficDistributionGroupId: string | undefined;
136
- MaxResults?: number;
137
- NextToken?: string;
138
+ MaxResults?: number | undefined;
139
+ NextToken?: string | undefined;
138
140
  }
139
141
  export interface TrafficDistributionGroupUserSummary {
140
- UserId?: string;
142
+ UserId?: string | undefined;
141
143
  }
142
144
  export interface ListTrafficDistributionGroupUsersResponse {
143
- NextToken?: string;
144
- TrafficDistributionGroupUserSummaryList?: TrafficDistributionGroupUserSummary[];
145
+ NextToken?: string | undefined;
146
+ TrafficDistributionGroupUserSummaryList?:
147
+ | TrafficDistributionGroupUserSummary[]
148
+ | undefined;
145
149
  }
146
150
  export interface ListUseCasesRequest {
147
151
  InstanceId: string | undefined;
148
152
  IntegrationAssociationId: string | undefined;
149
- NextToken?: string;
150
- MaxResults?: number;
153
+ NextToken?: string | undefined;
154
+ MaxResults?: number | undefined;
151
155
  }
152
156
  export interface UseCase {
153
- UseCaseId?: string;
154
- UseCaseArn?: string;
155
- UseCaseType?: UseCaseType;
157
+ UseCaseId?: string | undefined;
158
+ UseCaseArn?: string | undefined;
159
+ UseCaseType?: UseCaseType | undefined;
156
160
  }
157
161
  export interface ListUseCasesResponse {
158
- UseCaseSummaryList?: UseCase[];
159
- NextToken?: string;
162
+ UseCaseSummaryList?: UseCase[] | undefined;
163
+ NextToken?: string | undefined;
160
164
  }
161
165
  export interface ListUserHierarchyGroupsRequest {
162
166
  InstanceId: string | undefined;
163
- NextToken?: string;
164
- MaxResults?: number;
167
+ NextToken?: string | undefined;
168
+ MaxResults?: number | undefined;
165
169
  }
166
170
  export interface ListUserHierarchyGroupsResponse {
167
- UserHierarchyGroupSummaryList?: HierarchyGroupSummary[];
168
- NextToken?: string;
171
+ UserHierarchyGroupSummaryList?: HierarchyGroupSummary[] | undefined;
172
+ NextToken?: string | undefined;
169
173
  }
170
174
  export interface ListUserProficienciesRequest {
171
175
  InstanceId: string | undefined;
172
176
  UserId: string | undefined;
173
- NextToken?: string;
174
- MaxResults?: number;
177
+ NextToken?: string | undefined;
178
+ MaxResults?: number | undefined;
175
179
  }
176
180
  export interface ListUserProficienciesResponse {
177
- NextToken?: string;
178
- UserProficiencyList?: UserProficiency[];
179
- LastModifiedTime?: Date;
180
- LastModifiedRegion?: string;
181
+ NextToken?: string | undefined;
182
+ UserProficiencyList?: UserProficiency[] | undefined;
183
+ LastModifiedTime?: Date | undefined;
184
+ LastModifiedRegion?: string | undefined;
181
185
  }
182
186
  export interface ListUsersRequest {
183
187
  InstanceId: string | undefined;
184
- NextToken?: string;
185
- MaxResults?: number;
188
+ NextToken?: string | undefined;
189
+ MaxResults?: number | undefined;
186
190
  }
187
191
  export interface UserSummary {
188
- Id?: string;
189
- Arn?: string;
190
- Username?: string;
191
- LastModifiedTime?: Date;
192
- LastModifiedRegion?: string;
192
+ Id?: string | undefined;
193
+ Arn?: string | undefined;
194
+ Username?: string | undefined;
195
+ LastModifiedTime?: Date | undefined;
196
+ LastModifiedRegion?: string | undefined;
193
197
  }
194
198
  export interface ListUsersResponse {
195
- UserSummaryList?: UserSummary[];
196
- NextToken?: string;
199
+ UserSummaryList?: UserSummary[] | undefined;
200
+ NextToken?: string | undefined;
197
201
  }
198
202
  export interface ListViewsRequest {
199
203
  InstanceId: string | undefined;
200
- Type?: ViewType;
201
- NextToken?: string;
202
- MaxResults?: number;
204
+ Type?: ViewType | undefined;
205
+ NextToken?: string | undefined;
206
+ MaxResults?: number | undefined;
203
207
  }
204
208
  export interface ViewSummary {
205
- Id?: string;
206
- Arn?: string;
207
- Name?: string;
208
- Type?: ViewType;
209
- Status?: ViewStatus;
210
- Description?: string;
209
+ Id?: string | undefined;
210
+ Arn?: string | undefined;
211
+ Name?: string | undefined;
212
+ Type?: ViewType | undefined;
213
+ Status?: ViewStatus | undefined;
214
+ Description?: string | undefined;
211
215
  }
212
216
  export interface ListViewsResponse {
213
- ViewsSummaryList?: ViewSummary[];
214
- NextToken?: string;
217
+ ViewsSummaryList?: ViewSummary[] | undefined;
218
+ NextToken?: string | undefined;
215
219
  }
216
220
  export interface ListViewVersionsRequest {
217
221
  InstanceId: string | undefined;
218
222
  ViewId: string | undefined;
219
- NextToken?: string;
220
- MaxResults?: number;
223
+ NextToken?: string | undefined;
224
+ MaxResults?: number | undefined;
221
225
  }
222
226
  export interface ViewVersionSummary {
223
- Id?: string;
224
- Arn?: string;
225
- Description?: string;
226
- Name?: string;
227
- Type?: ViewType;
228
- Version?: number;
229
- VersionDescription?: string;
227
+ Id?: string | undefined;
228
+ Arn?: string | undefined;
229
+ Description?: string | undefined;
230
+ Name?: string | undefined;
231
+ Type?: ViewType | undefined;
232
+ Version?: number | undefined;
233
+ VersionDescription?: string | undefined;
230
234
  }
231
235
  export interface ListViewVersionsResponse {
232
- ViewVersionSummaryList?: ViewVersionSummary[];
233
- NextToken?: string;
236
+ ViewVersionSummaryList?: ViewVersionSummary[] | undefined;
237
+ NextToken?: string | undefined;
234
238
  }
235
239
  export interface MonitorContactRequest {
236
240
  InstanceId: string | undefined;
237
241
  ContactId: string | undefined;
238
242
  UserId: string | undefined;
239
- AllowedMonitorCapabilities?: MonitorCapability[];
240
- ClientToken?: string;
243
+ AllowedMonitorCapabilities?: MonitorCapability[] | undefined;
244
+ ClientToken?: string | undefined;
241
245
  }
242
246
  export interface MonitorContactResponse {
243
- ContactId?: string;
244
- ContactArn?: string;
247
+ ContactId?: string | undefined;
248
+ ContactArn?: string | undefined;
245
249
  }
246
250
  export declare class ConflictException extends __BaseException {
247
251
  readonly name: "ConflictException";
248
252
  readonly $fault: "client";
249
- Message?: string;
253
+ Message?: string | undefined;
250
254
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
251
255
  }
252
256
  export interface PauseContactRequest {
253
257
  ContactId: string | undefined;
254
258
  InstanceId: string | undefined;
255
- ContactFlowId?: string;
259
+ ContactFlowId?: string | undefined;
256
260
  }
257
261
  export interface PauseContactResponse {}
258
262
  export interface PutUserStatusRequest {
@@ -263,22 +267,22 @@ export interface PutUserStatusRequest {
263
267
  export interface PutUserStatusResponse {}
264
268
  export interface ReleasePhoneNumberRequest {
265
269
  PhoneNumberId: string | undefined;
266
- ClientToken?: string;
270
+ ClientToken?: string | undefined;
267
271
  }
268
272
  export interface ReplicateInstanceRequest {
269
273
  InstanceId: string | undefined;
270
274
  ReplicaRegion: string | undefined;
271
- ClientToken?: string;
275
+ ClientToken?: string | undefined;
272
276
  ReplicaAlias: string | undefined;
273
277
  }
274
278
  export interface ReplicateInstanceResponse {
275
- Id?: string;
276
- Arn?: string;
279
+ Id?: string | undefined;
280
+ Arn?: string | undefined;
277
281
  }
278
282
  export interface ResumeContactRequest {
279
283
  ContactId: string | undefined;
280
284
  InstanceId: string | undefined;
281
- ContactFlowId?: string;
285
+ ContactFlowId?: string | undefined;
282
286
  }
283
287
  export interface ResumeContactResponse {}
284
288
  export interface ResumeContactRecordingRequest {
@@ -288,48 +292,48 @@ export interface ResumeContactRecordingRequest {
288
292
  }
289
293
  export interface ResumeContactRecordingResponse {}
290
294
  export interface SearchAgentStatusesResponse {
291
- AgentStatuses?: AgentStatus[];
292
- NextToken?: string;
293
- ApproximateTotalCount?: number;
295
+ AgentStatuses?: AgentStatus[] | undefined;
296
+ NextToken?: string | undefined;
297
+ ApproximateTotalCount?: number | undefined;
294
298
  }
295
299
  export interface SearchAvailablePhoneNumbersRequest {
296
- TargetArn?: string;
297
- InstanceId?: string;
300
+ TargetArn?: string | undefined;
301
+ InstanceId?: string | undefined;
298
302
  PhoneNumberCountryCode: PhoneNumberCountryCode | undefined;
299
303
  PhoneNumberType: PhoneNumberType | undefined;
300
- PhoneNumberPrefix?: string;
301
- MaxResults?: number;
302
- NextToken?: string;
304
+ PhoneNumberPrefix?: string | undefined;
305
+ MaxResults?: number | undefined;
306
+ NextToken?: string | undefined;
303
307
  }
304
308
  export interface AvailableNumberSummary {
305
- PhoneNumber?: string;
306
- PhoneNumberCountryCode?: PhoneNumberCountryCode;
307
- PhoneNumberType?: PhoneNumberType;
309
+ PhoneNumber?: string | undefined;
310
+ PhoneNumberCountryCode?: PhoneNumberCountryCode | undefined;
311
+ PhoneNumberType?: PhoneNumberType | undefined;
308
312
  }
309
313
  export interface SearchAvailablePhoneNumbersResponse {
310
- NextToken?: string;
311
- AvailableNumbersList?: AvailableNumberSummary[];
314
+ NextToken?: string | undefined;
315
+ AvailableNumbersList?: AvailableNumberSummary[] | undefined;
312
316
  }
313
317
  export interface ControlPlaneTagFilter {
314
- OrConditions?: TagCondition[][];
315
- AndConditions?: TagCondition[];
316
- TagCondition?: TagCondition;
318
+ OrConditions?: TagCondition[][] | undefined;
319
+ AndConditions?: TagCondition[] | undefined;
320
+ TagCondition?: TagCondition | undefined;
317
321
  }
318
322
  export interface ContactFlowModuleSearchFilter {
319
- TagFilter?: ControlPlaneTagFilter;
323
+ TagFilter?: ControlPlaneTagFilter | undefined;
320
324
  }
321
325
  export interface SearchContactFlowModulesResponse {
322
- ContactFlowModules?: ContactFlowModule[];
323
- NextToken?: string;
324
- ApproximateTotalCount?: number;
326
+ ContactFlowModules?: ContactFlowModule[] | undefined;
327
+ NextToken?: string | undefined;
328
+ ApproximateTotalCount?: number | undefined;
325
329
  }
326
330
  export interface ContactFlowSearchFilter {
327
- TagFilter?: ControlPlaneTagFilter;
331
+ TagFilter?: ControlPlaneTagFilter | undefined;
328
332
  }
329
333
  export interface SearchContactFlowsResponse {
330
- ContactFlows?: ContactFlow[];
331
- NextToken?: string;
332
- ApproximateTotalCount?: number;
334
+ ContactFlows?: ContactFlow[] | undefined;
335
+ NextToken?: string | undefined;
336
+ ApproximateTotalCount?: number | undefined;
333
337
  }
334
338
  export declare const SearchContactsMatchType: {
335
339
  readonly MATCH_ALL: "MATCH_ALL";
@@ -344,10 +348,10 @@ export interface TranscriptCriteria {
344
348
  }
345
349
  export interface Transcript {
346
350
  Criteria: TranscriptCriteria[] | undefined;
347
- MatchType?: SearchContactsMatchType;
351
+ MatchType?: SearchContactsMatchType | undefined;
348
352
  }
349
353
  export interface ContactAnalysis {
350
- Transcript?: Transcript;
354
+ Transcript?: Transcript | undefined;
351
355
  }
352
356
  export interface SearchableContactAttributesCriteria {
353
357
  Key: string | undefined;
@@ -355,16 +359,16 @@ export interface SearchableContactAttributesCriteria {
355
359
  }
356
360
  export interface SearchableContactAttributes {
357
361
  Criteria: SearchableContactAttributesCriteria[] | undefined;
358
- MatchType?: SearchContactsMatchType;
362
+ MatchType?: SearchContactsMatchType | undefined;
359
363
  }
360
364
  export interface SearchCriteria {
361
- AgentIds?: string[];
362
- AgentHierarchyGroups?: AgentHierarchyGroups;
363
- Channels?: Channel[];
364
- ContactAnalysis?: ContactAnalysis;
365
- InitiationMethods?: ContactInitiationMethod[];
366
- QueueIds?: string[];
367
- SearchableContactAttributes?: SearchableContactAttributes;
365
+ AgentIds?: string[] | undefined;
366
+ AgentHierarchyGroups?: AgentHierarchyGroups | undefined;
367
+ Channels?: Channel[] | undefined;
368
+ ContactAnalysis?: ContactAnalysis | undefined;
369
+ InitiationMethods?: ContactInitiationMethod[] | undefined;
370
+ QueueIds?: string[] | undefined;
371
+ SearchableContactAttributes?: SearchableContactAttributes | undefined;
368
372
  }
369
373
  export declare const SortableFieldName: {
370
374
  readonly CHANNEL: "CHANNEL";
@@ -396,57 +400,57 @@ export interface SearchContactsTimeRange {
396
400
  export interface SearchContactsRequest {
397
401
  InstanceId: string | undefined;
398
402
  TimeRange: SearchContactsTimeRange | undefined;
399
- SearchCriteria?: SearchCriteria;
400
- MaxResults?: number;
401
- NextToken?: string;
402
- Sort?: Sort;
403
+ SearchCriteria?: SearchCriteria | undefined;
404
+ MaxResults?: number | undefined;
405
+ NextToken?: string | undefined;
406
+ Sort?: Sort | undefined;
403
407
  }
404
408
  export interface ContactSearchSummaryAgentInfo {
405
- Id?: string;
406
- ConnectedToAgentTimestamp?: Date;
409
+ Id?: string | undefined;
410
+ ConnectedToAgentTimestamp?: Date | undefined;
407
411
  }
408
412
  export interface ContactSearchSummaryQueueInfo {
409
- Id?: string;
410
- EnqueueTimestamp?: Date;
413
+ Id?: string | undefined;
414
+ EnqueueTimestamp?: Date | undefined;
411
415
  }
412
416
  export interface ContactSearchSummary {
413
- Arn?: string;
414
- Id?: string;
415
- InitialContactId?: string;
416
- PreviousContactId?: string;
417
- InitiationMethod?: ContactInitiationMethod;
418
- Channel?: Channel;
419
- QueueInfo?: ContactSearchSummaryQueueInfo;
420
- AgentInfo?: ContactSearchSummaryAgentInfo;
421
- InitiationTimestamp?: Date;
422
- DisconnectTimestamp?: Date;
423
- ScheduledTimestamp?: Date;
417
+ Arn?: string | undefined;
418
+ Id?: string | undefined;
419
+ InitialContactId?: string | undefined;
420
+ PreviousContactId?: string | undefined;
421
+ InitiationMethod?: ContactInitiationMethod | undefined;
422
+ Channel?: Channel | undefined;
423
+ QueueInfo?: ContactSearchSummaryQueueInfo | undefined;
424
+ AgentInfo?: ContactSearchSummaryAgentInfo | undefined;
425
+ InitiationTimestamp?: Date | undefined;
426
+ DisconnectTimestamp?: Date | undefined;
427
+ ScheduledTimestamp?: Date | undefined;
424
428
  }
425
429
  export interface SearchContactsResponse {
426
430
  Contacts: ContactSearchSummary[] | undefined;
427
- NextToken?: string;
428
- TotalCount?: number;
431
+ NextToken?: string | undefined;
432
+ TotalCount?: number | undefined;
429
433
  }
430
434
  export interface HoursOfOperationSearchFilter {
431
- TagFilter?: ControlPlaneTagFilter;
435
+ TagFilter?: ControlPlaneTagFilter | undefined;
432
436
  }
433
437
  export interface SearchHoursOfOperationsResponse {
434
- HoursOfOperations?: HoursOfOperation[];
435
- NextToken?: string;
436
- ApproximateTotalCount?: number;
438
+ HoursOfOperations?: HoursOfOperation[] | undefined;
439
+ NextToken?: string | undefined;
440
+ ApproximateTotalCount?: number | undefined;
437
441
  }
438
442
  export interface SearchPredefinedAttributesResponse {
439
- PredefinedAttributes?: PredefinedAttribute[];
440
- NextToken?: string;
441
- ApproximateTotalCount?: number;
443
+ PredefinedAttributes?: PredefinedAttribute[] | undefined;
444
+ NextToken?: string | undefined;
445
+ ApproximateTotalCount?: number | undefined;
442
446
  }
443
447
  export interface PromptSearchFilter {
444
- TagFilter?: ControlPlaneTagFilter;
448
+ TagFilter?: ControlPlaneTagFilter | undefined;
445
449
  }
446
450
  export interface SearchPromptsResponse {
447
- Prompts?: Prompt[];
448
- NextToken?: string;
449
- ApproximateTotalCount?: number;
451
+ Prompts?: Prompt[] | undefined;
452
+ NextToken?: string | undefined;
453
+ ApproximateTotalCount?: number | undefined;
450
454
  }
451
455
  export declare const SearchableQueueType: {
452
456
  readonly STANDARD: "STANDARD";
@@ -454,84 +458,84 @@ export declare const SearchableQueueType: {
454
458
  export type SearchableQueueType =
455
459
  (typeof SearchableQueueType)[keyof typeof SearchableQueueType];
456
460
  export interface QueueSearchFilter {
457
- TagFilter?: ControlPlaneTagFilter;
461
+ TagFilter?: ControlPlaneTagFilter | undefined;
458
462
  }
459
463
  export interface SearchQueuesResponse {
460
- Queues?: Queue[];
461
- NextToken?: string;
462
- ApproximateTotalCount?: number;
464
+ Queues?: Queue[] | undefined;
465
+ NextToken?: string | undefined;
466
+ ApproximateTotalCount?: number | undefined;
463
467
  }
464
468
  export interface QuickConnectSearchFilter {
465
- TagFilter?: ControlPlaneTagFilter;
469
+ TagFilter?: ControlPlaneTagFilter | undefined;
466
470
  }
467
471
  export interface SearchQuickConnectsResponse {
468
- QuickConnects?: QuickConnect[];
469
- NextToken?: string;
470
- ApproximateTotalCount?: number;
472
+ QuickConnects?: QuickConnect[] | undefined;
473
+ NextToken?: string | undefined;
474
+ ApproximateTotalCount?: number | undefined;
471
475
  }
472
476
  export declare class MaximumResultReturnedException extends __BaseException {
473
477
  readonly name: "MaximumResultReturnedException";
474
478
  readonly $fault: "client";
475
- Message?: string;
479
+ Message?: string | undefined;
476
480
  constructor(
477
481
  opts: __ExceptionOptionType<MaximumResultReturnedException, __BaseException>
478
482
  );
479
483
  }
480
484
  export interface TagSearchCondition {
481
- tagKey?: string;
482
- tagValue?: string;
483
- tagKeyComparisonType?: StringComparisonType;
484
- tagValueComparisonType?: StringComparisonType;
485
+ tagKey?: string | undefined;
486
+ tagValue?: string | undefined;
487
+ tagKeyComparisonType?: StringComparisonType | undefined;
488
+ tagValueComparisonType?: StringComparisonType | undefined;
485
489
  }
486
490
  export interface ResourceTagsSearchCriteria {
487
- TagSearchCondition?: TagSearchCondition;
491
+ TagSearchCondition?: TagSearchCondition | undefined;
488
492
  }
489
493
  export interface SearchResourceTagsRequest {
490
494
  InstanceId: string | undefined;
491
- ResourceTypes?: string[];
492
- NextToken?: string;
493
- MaxResults?: number;
494
- SearchCriteria?: ResourceTagsSearchCriteria;
495
+ ResourceTypes?: string[] | undefined;
496
+ NextToken?: string | undefined;
497
+ MaxResults?: number | undefined;
498
+ SearchCriteria?: ResourceTagsSearchCriteria | undefined;
495
499
  }
496
500
  export interface TagSet {
497
- key?: string;
498
- value?: string;
501
+ key?: string | undefined;
502
+ value?: string | undefined;
499
503
  }
500
504
  export interface SearchResourceTagsResponse {
501
- Tags?: TagSet[];
502
- NextToken?: string;
505
+ Tags?: TagSet[] | undefined;
506
+ NextToken?: string | undefined;
503
507
  }
504
508
  export interface RoutingProfileSearchFilter {
505
- TagFilter?: ControlPlaneTagFilter;
509
+ TagFilter?: ControlPlaneTagFilter | undefined;
506
510
  }
507
511
  export interface SearchRoutingProfilesResponse {
508
- RoutingProfiles?: RoutingProfile[];
509
- NextToken?: string;
510
- ApproximateTotalCount?: number;
512
+ RoutingProfiles?: RoutingProfile[] | undefined;
513
+ NextToken?: string | undefined;
514
+ ApproximateTotalCount?: number | undefined;
511
515
  }
512
516
  export interface SecurityProfilesSearchFilter {
513
- TagFilter?: ControlPlaneTagFilter;
517
+ TagFilter?: ControlPlaneTagFilter | undefined;
514
518
  }
515
519
  export interface SecurityProfileSearchSummary {
516
- Id?: string;
517
- OrganizationResourceId?: string;
518
- Arn?: string;
519
- SecurityProfileName?: string;
520
- Description?: string;
521
- Tags?: Record<string, string>;
520
+ Id?: string | undefined;
521
+ OrganizationResourceId?: string | undefined;
522
+ Arn?: string | undefined;
523
+ SecurityProfileName?: string | undefined;
524
+ Description?: string | undefined;
525
+ Tags?: Record<string, string> | undefined;
522
526
  }
523
527
  export interface SearchSecurityProfilesResponse {
524
- SecurityProfiles?: SecurityProfileSearchSummary[];
525
- NextToken?: string;
526
- ApproximateTotalCount?: number;
528
+ SecurityProfiles?: SecurityProfileSearchSummary[] | undefined;
529
+ NextToken?: string | undefined;
530
+ ApproximateTotalCount?: number | undefined;
527
531
  }
528
532
  export interface UserHierarchyGroupSearchFilter {
529
- AttributeFilter?: ControlPlaneAttributeFilter;
533
+ AttributeFilter?: ControlPlaneAttributeFilter | undefined;
530
534
  }
531
535
  export interface SearchUserHierarchyGroupsResponse {
532
- UserHierarchyGroups?: HierarchyGroup[];
533
- NextToken?: string;
534
- ApproximateTotalCount?: number;
536
+ UserHierarchyGroups?: HierarchyGroup[] | undefined;
537
+ NextToken?: string | undefined;
538
+ ApproximateTotalCount?: number | undefined;
535
539
  }
536
540
  export declare const HierarchyGroupMatchType: {
537
541
  readonly EXACT: "EXACT";
@@ -540,8 +544,8 @@ export declare const HierarchyGroupMatchType: {
540
544
  export type HierarchyGroupMatchType =
541
545
  (typeof HierarchyGroupMatchType)[keyof typeof HierarchyGroupMatchType];
542
546
  export interface HierarchyGroupCondition {
543
- Value?: string;
544
- HierarchyGroupMatchType?: HierarchyGroupMatchType;
547
+ Value?: string | undefined;
548
+ HierarchyGroupMatchType?: HierarchyGroupMatchType | undefined;
545
549
  }
546
550
  export declare const NumberComparisonType: {
547
551
  readonly EQUAL: "EQUAL";
@@ -555,14 +559,14 @@ export declare const NumberComparisonType: {
555
559
  export type NumberComparisonType =
556
560
  (typeof NumberComparisonType)[keyof typeof NumberComparisonType];
557
561
  export interface NumberCondition {
558
- FieldName?: string;
559
- MinValue?: number;
560
- MaxValue?: number;
561
- ComparisonType?: NumberComparisonType;
562
+ FieldName?: string | undefined;
563
+ MinValue?: number | undefined;
564
+ MaxValue?: number | undefined;
565
+ ComparisonType?: NumberComparisonType | undefined;
562
566
  }
563
567
  export interface Condition {
564
- StringCondition?: StringCondition;
565
- NumberCondition?: NumberCondition;
568
+ StringCondition?: StringCondition | undefined;
569
+ NumberCondition?: NumberCondition | undefined;
566
570
  }
567
571
  export declare const TargetListType: {
568
572
  readonly PROFICIENCIES: "PROFICIENCIES";
@@ -570,51 +574,51 @@ export declare const TargetListType: {
570
574
  export type TargetListType =
571
575
  (typeof TargetListType)[keyof typeof TargetListType];
572
576
  export interface ListCondition {
573
- TargetListType?: TargetListType;
574
- Conditions?: Condition[];
577
+ TargetListType?: TargetListType | undefined;
578
+ Conditions?: Condition[] | undefined;
575
579
  }
576
580
  export interface AttributeAndCondition {
577
- TagConditions?: TagCondition[];
578
- HierarchyGroupCondition?: HierarchyGroupCondition;
581
+ TagConditions?: TagCondition[] | undefined;
582
+ HierarchyGroupCondition?: HierarchyGroupCondition | undefined;
579
583
  }
580
584
  export interface ControlPlaneUserAttributeFilter {
581
- OrConditions?: AttributeAndCondition[];
582
- AndCondition?: AttributeAndCondition;
583
- TagCondition?: TagCondition;
584
- HierarchyGroupCondition?: HierarchyGroupCondition;
585
+ OrConditions?: AttributeAndCondition[] | undefined;
586
+ AndCondition?: AttributeAndCondition | undefined;
587
+ TagCondition?: TagCondition | undefined;
588
+ HierarchyGroupCondition?: HierarchyGroupCondition | undefined;
585
589
  }
586
590
  export interface UserSearchFilter {
587
- TagFilter?: ControlPlaneTagFilter;
588
- UserAttributeFilter?: ControlPlaneUserAttributeFilter;
591
+ TagFilter?: ControlPlaneTagFilter | undefined;
592
+ UserAttributeFilter?: ControlPlaneUserAttributeFilter | undefined;
589
593
  }
590
594
  export interface UserIdentityInfoLite {
591
- FirstName?: string;
592
- LastName?: string;
595
+ FirstName?: string | undefined;
596
+ LastName?: string | undefined;
593
597
  }
594
598
  export interface UserSearchSummary {
595
- Arn?: string;
596
- DirectoryUserId?: string;
597
- HierarchyGroupId?: string;
598
- Id?: string;
599
- IdentityInfo?: UserIdentityInfoLite;
600
- PhoneConfig?: UserPhoneConfig;
601
- RoutingProfileId?: string;
602
- SecurityProfileIds?: string[];
603
- Tags?: Record<string, string>;
604
- Username?: string;
599
+ Arn?: string | undefined;
600
+ DirectoryUserId?: string | undefined;
601
+ HierarchyGroupId?: string | undefined;
602
+ Id?: string | undefined;
603
+ IdentityInfo?: UserIdentityInfoLite | undefined;
604
+ PhoneConfig?: UserPhoneConfig | undefined;
605
+ RoutingProfileId?: string | undefined;
606
+ SecurityProfileIds?: string[] | undefined;
607
+ Tags?: Record<string, string> | undefined;
608
+ Username?: string | undefined;
605
609
  }
606
610
  export interface SearchUsersResponse {
607
- Users?: UserSearchSummary[];
608
- NextToken?: string;
609
- ApproximateTotalCount?: number;
611
+ Users?: UserSearchSummary[] | undefined;
612
+ NextToken?: string | undefined;
613
+ ApproximateTotalCount?: number | undefined;
610
614
  }
611
615
  export interface SearchVocabulariesRequest {
612
616
  InstanceId: string | undefined;
613
- MaxResults?: number;
614
- NextToken?: string;
615
- State?: VocabularyState;
616
- NameStartsWith?: string;
617
- LanguageCode?: VocabularyLanguageCode;
617
+ MaxResults?: number | undefined;
618
+ NextToken?: string | undefined;
619
+ State?: VocabularyState | undefined;
620
+ NameStartsWith?: string | undefined;
621
+ LanguageCode?: VocabularyLanguageCode | undefined;
618
622
  }
619
623
  export interface VocabularySummary {
620
624
  Name: string | undefined;
@@ -623,11 +627,11 @@ export interface VocabularySummary {
623
627
  LanguageCode: VocabularyLanguageCode | undefined;
624
628
  State: VocabularyState | undefined;
625
629
  LastModifiedTime: Date | undefined;
626
- FailureReason?: string;
630
+ FailureReason?: string | undefined;
627
631
  }
628
632
  export interface SearchVocabulariesResponse {
629
- VocabularySummaryList?: VocabularySummary[];
630
- NextToken?: string;
633
+ VocabularySummaryList?: VocabularySummary[] | undefined;
634
+ NextToken?: string | undefined;
631
635
  }
632
636
  export declare const ChatEventType: {
633
637
  readonly DISCONNECT: "DISCONNECT";
@@ -637,8 +641,8 @@ export declare const ChatEventType: {
637
641
  export type ChatEventType = (typeof ChatEventType)[keyof typeof ChatEventType];
638
642
  export interface ChatEvent {
639
643
  Type: ChatEventType | undefined;
640
- ContentType?: string;
641
- Content?: string;
644
+ ContentType?: string | undefined;
645
+ Content?: string | undefined;
642
646
  }
643
647
  export interface ParticipantDetails {
644
648
  DisplayName: string | undefined;
@@ -647,78 +651,78 @@ export interface ChatStreamingConfiguration {
647
651
  StreamingEndpointArn: string | undefined;
648
652
  }
649
653
  export interface NewSessionDetails {
650
- SupportedMessagingContentTypes?: string[];
651
- ParticipantDetails?: ParticipantDetails;
652
- Attributes?: Record<string, string>;
653
- StreamingConfiguration?: ChatStreamingConfiguration;
654
+ SupportedMessagingContentTypes?: string[] | undefined;
655
+ ParticipantDetails?: ParticipantDetails | undefined;
656
+ Attributes?: Record<string, string> | undefined;
657
+ StreamingConfiguration?: ChatStreamingConfiguration | undefined;
654
658
  }
655
659
  export interface SendChatIntegrationEventRequest {
656
660
  SourceId: string | undefined;
657
661
  DestinationId: string | undefined;
658
- Subtype?: string;
662
+ Subtype?: string | undefined;
659
663
  Event: ChatEvent | undefined;
660
- NewSessionDetails?: NewSessionDetails;
664
+ NewSessionDetails?: NewSessionDetails | undefined;
661
665
  }
662
666
  export interface SendChatIntegrationEventResponse {
663
- InitialContactId?: string;
664
- NewChatCreated?: boolean;
667
+ InitialContactId?: string | undefined;
668
+ NewChatCreated?: boolean | undefined;
665
669
  }
666
670
  export interface StartAttachedFileUploadRequest {
667
- ClientToken?: string;
671
+ ClientToken?: string | undefined;
668
672
  InstanceId: string | undefined;
669
673
  FileName: string | undefined;
670
674
  FileSizeInBytes: number | undefined;
671
- UrlExpiryInSeconds?: number;
675
+ UrlExpiryInSeconds?: number | undefined;
672
676
  FileUseCaseType: FileUseCaseType | undefined;
673
677
  AssociatedResourceArn: string | undefined;
674
- CreatedBy?: CreatedByInfo;
675
- Tags?: Record<string, string>;
678
+ CreatedBy?: CreatedByInfo | undefined;
679
+ Tags?: Record<string, string> | undefined;
676
680
  }
677
681
  export interface UploadUrlMetadata {
678
- Url?: string;
679
- UrlExpiry?: string;
680
- HeadersToInclude?: Record<string, string>;
682
+ Url?: string | undefined;
683
+ UrlExpiry?: string | undefined;
684
+ HeadersToInclude?: Record<string, string> | undefined;
681
685
  }
682
686
  export interface StartAttachedFileUploadResponse {
683
- FileArn?: string;
684
- FileId?: string;
685
- CreationTime?: string;
686
- FileStatus?: FileStatusType;
687
- CreatedBy?: CreatedByInfo;
688
- UploadUrlMetadata?: UploadUrlMetadata;
687
+ FileArn?: string | undefined;
688
+ FileId?: string | undefined;
689
+ CreationTime?: string | undefined;
690
+ FileStatus?: FileStatusType | undefined;
691
+ CreatedBy?: CreatedByInfo | undefined;
692
+ UploadUrlMetadata?: UploadUrlMetadata | undefined;
689
693
  }
690
694
  export interface ChatMessage {
691
695
  ContentType: string | undefined;
692
696
  Content: string | undefined;
693
697
  }
694
698
  export interface PersistentChat {
695
- RehydrationType?: RehydrationType;
696
- SourceContactId?: string;
699
+ RehydrationType?: RehydrationType | undefined;
700
+ SourceContactId?: string | undefined;
697
701
  }
698
702
  export interface StartChatContactRequest {
699
703
  InstanceId: string | undefined;
700
704
  ContactFlowId: string | undefined;
701
- Attributes?: Record<string, string>;
705
+ Attributes?: Record<string, string> | undefined;
702
706
  ParticipantDetails: ParticipantDetails | undefined;
703
- InitialMessage?: ChatMessage;
704
- ClientToken?: string;
705
- ChatDurationInMinutes?: number;
706
- SupportedMessagingContentTypes?: string[];
707
- PersistentChat?: PersistentChat;
708
- RelatedContactId?: string;
709
- SegmentAttributes?: Record<string, SegmentAttributeValue>;
707
+ InitialMessage?: ChatMessage | undefined;
708
+ ClientToken?: string | undefined;
709
+ ChatDurationInMinutes?: number | undefined;
710
+ SupportedMessagingContentTypes?: string[] | undefined;
711
+ PersistentChat?: PersistentChat | undefined;
712
+ RelatedContactId?: string | undefined;
713
+ SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
710
714
  }
711
715
  export interface StartChatContactResponse {
712
- ContactId?: string;
713
- ParticipantId?: string;
714
- ParticipantToken?: string;
715
- ContinuedFromContactId?: string;
716
+ ContactId?: string | undefined;
717
+ ParticipantId?: string | undefined;
718
+ ParticipantToken?: string | undefined;
719
+ ContinuedFromContactId?: string | undefined;
716
720
  }
717
721
  export interface StartContactEvaluationRequest {
718
722
  InstanceId: string | undefined;
719
723
  ContactId: string | undefined;
720
724
  EvaluationFormId: string | undefined;
721
- ClientToken?: string;
725
+ ClientToken?: string | undefined;
722
726
  }
723
727
  export interface StartContactEvaluationResponse {
724
728
  EvaluationId: string | undefined;
@@ -732,7 +736,7 @@ export declare const VoiceRecordingTrack: {
732
736
  export type VoiceRecordingTrack =
733
737
  (typeof VoiceRecordingTrack)[keyof typeof VoiceRecordingTrack];
734
738
  export interface VoiceRecordingConfiguration {
735
- VoiceRecordingTrack?: VoiceRecordingTrack;
739
+ VoiceRecordingTrack?: VoiceRecordingTrack | undefined;
736
740
  }
737
741
  export interface StartContactRecordingRequest {
738
742
  InstanceId: string | undefined;
@@ -745,7 +749,7 @@ export interface StartContactStreamingRequest {
745
749
  InstanceId: string | undefined;
746
750
  ContactId: string | undefined;
747
751
  ChatStreamingConfiguration: ChatStreamingConfiguration | undefined;
748
- ClientToken?: string;
752
+ ClientToken?: string | undefined;
749
753
  }
750
754
  export interface StartContactStreamingResponse {
751
755
  StreamingId: string | undefined;
@@ -755,22 +759,22 @@ export interface StartOutboundChatContactRequest {
755
759
  DestinationEndpoint: Endpoint | undefined;
756
760
  InstanceId: string | undefined;
757
761
  SegmentAttributes: Record<string, SegmentAttributeValue> | undefined;
758
- Attributes?: Record<string, string>;
762
+ Attributes?: Record<string, string> | undefined;
759
763
  ContactFlowId: string | undefined;
760
- ChatDurationInMinutes?: number;
761
- ParticipantDetails?: ParticipantDetails;
762
- InitialSystemMessage?: ChatMessage;
763
- RelatedContactId?: string;
764
- SupportedMessagingContentTypes?: string[];
765
- ClientToken?: string;
764
+ ChatDurationInMinutes?: number | undefined;
765
+ ParticipantDetails?: ParticipantDetails | undefined;
766
+ InitialSystemMessage?: ChatMessage | undefined;
767
+ RelatedContactId?: string | undefined;
768
+ SupportedMessagingContentTypes?: string[] | undefined;
769
+ ClientToken?: string | undefined;
766
770
  }
767
771
  export interface StartOutboundChatContactResponse {
768
- ContactId?: string;
772
+ ContactId?: string | undefined;
769
773
  }
770
774
  export declare class DestinationNotAllowedException extends __BaseException {
771
775
  readonly name: "DestinationNotAllowedException";
772
776
  readonly $fault: "client";
773
- Message?: string;
777
+ Message?: string | undefined;
774
778
  constructor(
775
779
  opts: __ExceptionOptionType<DestinationNotAllowedException, __BaseException>
776
780
  );
@@ -778,7 +782,7 @@ export declare class DestinationNotAllowedException extends __BaseException {
778
782
  export declare class OutboundContactNotPermittedException extends __BaseException {
779
783
  readonly name: "OutboundContactNotPermittedException";
780
784
  readonly $fault: "client";
781
- Message?: string;
785
+ Message?: string | undefined;
782
786
  constructor(
783
787
  opts: __ExceptionOptionType<
784
788
  OutboundContactNotPermittedException,
@@ -787,8 +791,8 @@ export declare class OutboundContactNotPermittedException extends __BaseExceptio
787
791
  );
788
792
  }
789
793
  export interface AnswerMachineDetectionConfig {
790
- EnableAnswerMachineDetection?: boolean;
791
- AwaitAnswerMachinePrompt?: boolean;
794
+ EnableAnswerMachineDetection?: boolean | undefined;
795
+ AwaitAnswerMachinePrompt?: boolean | undefined;
792
796
  }
793
797
  export declare const TrafficType: {
794
798
  readonly CAMPAIGN: "CAMPAIGN";
@@ -796,68 +800,68 @@ export declare const TrafficType: {
796
800
  };
797
801
  export type TrafficType = (typeof TrafficType)[keyof typeof TrafficType];
798
802
  export interface StartOutboundVoiceContactRequest {
799
- Name?: string;
800
- Description?: string;
801
- References?: Record<string, Reference>;
802
- RelatedContactId?: string;
803
+ Name?: string | undefined;
804
+ Description?: string | undefined;
805
+ References?: Record<string, Reference> | undefined;
806
+ RelatedContactId?: string | undefined;
803
807
  DestinationPhoneNumber: string | undefined;
804
808
  ContactFlowId: string | undefined;
805
809
  InstanceId: string | undefined;
806
- ClientToken?: string;
807
- SourcePhoneNumber?: string;
808
- QueueId?: string;
809
- Attributes?: Record<string, string>;
810
- AnswerMachineDetectionConfig?: AnswerMachineDetectionConfig;
811
- CampaignId?: string;
812
- TrafficType?: TrafficType;
810
+ ClientToken?: string | undefined;
811
+ SourcePhoneNumber?: string | undefined;
812
+ QueueId?: string | undefined;
813
+ Attributes?: Record<string, string> | undefined;
814
+ AnswerMachineDetectionConfig?: AnswerMachineDetectionConfig | undefined;
815
+ CampaignId?: string | undefined;
816
+ TrafficType?: TrafficType | undefined;
813
817
  }
814
818
  export interface StartOutboundVoiceContactResponse {
815
- ContactId?: string;
819
+ ContactId?: string | undefined;
816
820
  }
817
821
  export interface StartScreenSharingRequest {
818
- ClientToken?: string;
822
+ ClientToken?: string | undefined;
819
823
  InstanceId: string | undefined;
820
824
  ContactId: string | undefined;
821
825
  }
822
826
  export interface StartScreenSharingResponse {}
823
827
  export interface StartTaskContactRequest {
824
828
  InstanceId: string | undefined;
825
- PreviousContactId?: string;
826
- ContactFlowId?: string;
827
- Attributes?: Record<string, string>;
829
+ PreviousContactId?: string | undefined;
830
+ ContactFlowId?: string | undefined;
831
+ Attributes?: Record<string, string> | undefined;
828
832
  Name: string | undefined;
829
- References?: Record<string, Reference>;
830
- Description?: string;
831
- ClientToken?: string;
832
- ScheduledTime?: Date;
833
- TaskTemplateId?: string;
834
- QuickConnectId?: string;
835
- RelatedContactId?: string;
833
+ References?: Record<string, Reference> | undefined;
834
+ Description?: string | undefined;
835
+ ClientToken?: string | undefined;
836
+ ScheduledTime?: Date | undefined;
837
+ TaskTemplateId?: string | undefined;
838
+ QuickConnectId?: string | undefined;
839
+ RelatedContactId?: string | undefined;
836
840
  }
837
841
  export interface StartTaskContactResponse {
838
- ContactId?: string;
842
+ ContactId?: string | undefined;
839
843
  }
840
844
  export interface StartWebRTCContactRequest {
841
- Attributes?: Record<string, string>;
842
- ClientToken?: string;
845
+ Attributes?: Record<string, string> | undefined;
846
+ ClientToken?: string | undefined;
843
847
  ContactFlowId: string | undefined;
844
848
  InstanceId: string | undefined;
845
- AllowedCapabilities?: AllowedCapabilities;
849
+ AllowedCapabilities?: AllowedCapabilities | undefined;
846
850
  ParticipantDetails: ParticipantDetails | undefined;
847
- RelatedContactId?: string;
848
- References?: Record<string, Reference>;
849
- Description?: string;
851
+ RelatedContactId?: string | undefined;
852
+ References?: Record<string, Reference> | undefined;
853
+ Description?: string | undefined;
850
854
  }
851
855
  export interface Attendee {
852
- AttendeeId?: string;
853
- JoinToken?: string;
856
+ AttendeeId?: string | undefined;
857
+ JoinToken?: string | undefined;
854
858
  }
855
859
  export interface MediaPlacement {
856
- AudioHostUrl?: string;
857
- AudioFallbackUrl?: string;
858
- SignalingUrl?: string;
859
- TurnControlUrl?: string;
860
- EventIngestionUrl?: string;
860
+ AudioHostUrl?: string | undefined;
861
+ AudioFallbackUrl?: string | undefined;
862
+ SignalingUrl?: string | undefined;
863
+ TurnControlUrl?: string | undefined;
864
+ EventIngestionUrl?: string | undefined;
861
865
  }
862
866
  export declare const MeetingFeatureStatus: {
863
867
  readonly AVAILABLE: "AVAILABLE";
@@ -866,42 +870,42 @@ export declare const MeetingFeatureStatus: {
866
870
  export type MeetingFeatureStatus =
867
871
  (typeof MeetingFeatureStatus)[keyof typeof MeetingFeatureStatus];
868
872
  export interface AudioFeatures {
869
- EchoReduction?: MeetingFeatureStatus;
873
+ EchoReduction?: MeetingFeatureStatus | undefined;
870
874
  }
871
875
  export interface MeetingFeaturesConfiguration {
872
- Audio?: AudioFeatures;
876
+ Audio?: AudioFeatures | undefined;
873
877
  }
874
878
  export interface Meeting {
875
- MediaRegion?: string;
876
- MediaPlacement?: MediaPlacement;
877
- MeetingFeatures?: MeetingFeaturesConfiguration;
878
- MeetingId?: string;
879
+ MediaRegion?: string | undefined;
880
+ MediaPlacement?: MediaPlacement | undefined;
881
+ MeetingFeatures?: MeetingFeaturesConfiguration | undefined;
882
+ MeetingId?: string | undefined;
879
883
  }
880
884
  export interface ConnectionData {
881
- Attendee?: Attendee;
882
- Meeting?: Meeting;
885
+ Attendee?: Attendee | undefined;
886
+ Meeting?: Meeting | undefined;
883
887
  }
884
888
  export interface StartWebRTCContactResponse {
885
- ConnectionData?: ConnectionData;
886
- ContactId?: string;
887
- ParticipantId?: string;
888
- ParticipantToken?: string;
889
+ ConnectionData?: ConnectionData | undefined;
890
+ ContactId?: string | undefined;
891
+ ParticipantId?: string | undefined;
892
+ ParticipantToken?: string | undefined;
889
893
  }
890
894
  export declare class ContactNotFoundException extends __BaseException {
891
895
  readonly name: "ContactNotFoundException";
892
896
  readonly $fault: "client";
893
- Message?: string;
897
+ Message?: string | undefined;
894
898
  constructor(
895
899
  opts: __ExceptionOptionType<ContactNotFoundException, __BaseException>
896
900
  );
897
901
  }
898
902
  export interface DisconnectReason {
899
- Code?: string;
903
+ Code?: string | undefined;
900
904
  }
901
905
  export interface StopContactRequest {
902
906
  ContactId: string | undefined;
903
907
  InstanceId: string | undefined;
904
- DisconnectReason?: DisconnectReason;
908
+ DisconnectReason?: DisconnectReason | undefined;
905
909
  }
906
910
  export interface StopContactResponse {}
907
911
  export interface StopContactRecordingRequest {
@@ -917,13 +921,13 @@ export interface StopContactStreamingRequest {
917
921
  }
918
922
  export interface StopContactStreamingResponse {}
919
923
  export interface EvaluationAnswerInput {
920
- Value?: EvaluationAnswerData;
924
+ Value?: EvaluationAnswerData | undefined;
921
925
  }
922
926
  export interface SubmitContactEvaluationRequest {
923
927
  InstanceId: string | undefined;
924
928
  EvaluationId: string | undefined;
925
- Answers?: Record<string, EvaluationAnswerInput>;
926
- Notes?: Record<string, EvaluationNote>;
929
+ Answers?: Record<string, EvaluationAnswerInput> | undefined;
930
+ Notes?: Record<string, EvaluationNote> | undefined;
927
931
  }
928
932
  export interface SubmitContactEvaluationResponse {
929
933
  EvaluationId: string | undefined;
@@ -948,14 +952,14 @@ export interface TagResourceRequest {
948
952
  export interface TransferContactRequest {
949
953
  InstanceId: string | undefined;
950
954
  ContactId: string | undefined;
951
- QueueId?: string;
952
- UserId?: string;
955
+ QueueId?: string | undefined;
956
+ UserId?: string | undefined;
953
957
  ContactFlowId: string | undefined;
954
- ClientToken?: string;
958
+ ClientToken?: string | undefined;
955
959
  }
956
960
  export interface TransferContactResponse {
957
- ContactId?: string;
958
- ContactArn?: string;
961
+ ContactId?: string | undefined;
962
+ ContactArn?: string | undefined;
959
963
  }
960
964
  export interface UntagContactRequest {
961
965
  ContactId: string | undefined;
@@ -970,27 +974,27 @@ export interface UntagResourceRequest {
970
974
  export interface UpdateAgentStatusRequest {
971
975
  InstanceId: string | undefined;
972
976
  AgentStatusId: string | undefined;
973
- Name?: string;
974
- Description?: string;
975
- State?: AgentStatusState;
976
- DisplayOrder?: number;
977
- ResetOrderNumber?: boolean;
977
+ Name?: string | undefined;
978
+ Description?: string | undefined;
979
+ State?: AgentStatusState | undefined;
980
+ DisplayOrder?: number | undefined;
981
+ ResetOrderNumber?: boolean | undefined;
978
982
  }
979
983
  export interface UpdateAuthenticationProfileRequest {
980
984
  AuthenticationProfileId: string | undefined;
981
985
  InstanceId: string | undefined;
982
- Name?: string;
983
- Description?: string;
984
- AllowedIps?: string[];
985
- BlockedIps?: string[];
986
- PeriodicSessionDuration?: number;
986
+ Name?: string | undefined;
987
+ Description?: string | undefined;
988
+ AllowedIps?: string[] | undefined;
989
+ BlockedIps?: string[] | undefined;
990
+ PeriodicSessionDuration?: number | undefined;
987
991
  }
988
992
  export interface UpdateContactRequest {
989
993
  InstanceId: string | undefined;
990
994
  ContactId: string | undefined;
991
- Name?: string;
992
- Description?: string;
993
- References?: Record<string, Reference>;
995
+ Name?: string | undefined;
996
+ Description?: string | undefined;
997
+ References?: Record<string, Reference> | undefined;
994
998
  }
995
999
  export interface UpdateContactResponse {}
996
1000
  export interface UpdateContactAttributesRequest {
@@ -1002,8 +1006,8 @@ export interface UpdateContactAttributesResponse {}
1002
1006
  export interface UpdateContactEvaluationRequest {
1003
1007
  InstanceId: string | undefined;
1004
1008
  EvaluationId: string | undefined;
1005
- Answers?: Record<string, EvaluationAnswerInput>;
1006
- Notes?: Record<string, EvaluationNote>;
1009
+ Answers?: Record<string, EvaluationAnswerInput> | undefined;
1010
+ Notes?: Record<string, EvaluationNote> | undefined;
1007
1011
  }
1008
1012
  export interface UpdateContactEvaluationResponse {
1009
1013
  EvaluationId: string | undefined;
@@ -1018,9 +1022,9 @@ export interface UpdateContactFlowContentResponse {}
1018
1022
  export interface UpdateContactFlowMetadataRequest {
1019
1023
  InstanceId: string | undefined;
1020
1024
  ContactFlowId: string | undefined;
1021
- Name?: string;
1022
- Description?: string;
1023
- ContactFlowState?: ContactFlowState;
1025
+ Name?: string | undefined;
1026
+ Description?: string | undefined;
1027
+ ContactFlowState?: ContactFlowState | undefined;
1024
1028
  }
1025
1029
  export interface UpdateContactFlowMetadataResponse {}
1026
1030
  export interface UpdateContactFlowModuleContentRequest {
@@ -1032,20 +1036,20 @@ export interface UpdateContactFlowModuleContentResponse {}
1032
1036
  export interface UpdateContactFlowModuleMetadataRequest {
1033
1037
  InstanceId: string | undefined;
1034
1038
  ContactFlowModuleId: string | undefined;
1035
- Name?: string;
1036
- Description?: string;
1037
- State?: ContactFlowModuleState;
1039
+ Name?: string | undefined;
1040
+ Description?: string | undefined;
1041
+ State?: ContactFlowModuleState | undefined;
1038
1042
  }
1039
1043
  export interface UpdateContactFlowModuleMetadataResponse {}
1040
1044
  export interface UpdateContactFlowNameRequest {
1041
1045
  InstanceId: string | undefined;
1042
1046
  ContactFlowId: string | undefined;
1043
- Name?: string;
1044
- Description?: string;
1047
+ Name?: string | undefined;
1048
+ Description?: string | undefined;
1045
1049
  }
1046
1050
  export interface UpdateContactFlowNameResponse {}
1047
1051
  export interface RoutingCriteriaInputStepExpiry {
1048
- DurationInSeconds?: number;
1052
+ DurationInSeconds?: number | undefined;
1049
1053
  }
1050
1054
  export interface UpdateContactRoutingDataResponse {}
1051
1055
  export interface UpdateContactScheduleRequest {
@@ -1062,10 +1066,10 @@ export interface UpdateEvaluationFormResponse {
1062
1066
  export interface UpdateHoursOfOperationRequest {
1063
1067
  InstanceId: string | undefined;
1064
1068
  HoursOfOperationId: string | undefined;
1065
- Name?: string;
1066
- Description?: string;
1067
- TimeZone?: string;
1068
- Config?: HoursOfOperationConfig[];
1069
+ Name?: string | undefined;
1070
+ Description?: string | undefined;
1071
+ TimeZone?: string | undefined;
1072
+ Config?: HoursOfOperationConfig[] | undefined;
1069
1073
  }
1070
1074
  export interface UpdateInstanceAttributeRequest {
1071
1075
  InstanceId: string | undefined;
@@ -1159,34 +1163,34 @@ export interface UpdateParticipantRoleConfigRequest {
1159
1163
  export interface UpdateParticipantRoleConfigResponse {}
1160
1164
  export interface UpdatePhoneNumberRequest {
1161
1165
  PhoneNumberId: string | undefined;
1162
- TargetArn?: string;
1163
- InstanceId?: string;
1164
- ClientToken?: string;
1166
+ TargetArn?: string | undefined;
1167
+ InstanceId?: string | undefined;
1168
+ ClientToken?: string | undefined;
1165
1169
  }
1166
1170
  export interface UpdatePhoneNumberResponse {
1167
- PhoneNumberId?: string;
1168
- PhoneNumberArn?: string;
1171
+ PhoneNumberId?: string | undefined;
1172
+ PhoneNumberArn?: string | undefined;
1169
1173
  }
1170
1174
  export interface UpdatePhoneNumberMetadataRequest {
1171
1175
  PhoneNumberId: string | undefined;
1172
- PhoneNumberDescription?: string;
1173
- ClientToken?: string;
1176
+ PhoneNumberDescription?: string | undefined;
1177
+ ClientToken?: string | undefined;
1174
1178
  }
1175
1179
  export interface UpdatePredefinedAttributeRequest {
1176
1180
  InstanceId: string | undefined;
1177
1181
  Name: string | undefined;
1178
- Values?: PredefinedAttributeValues;
1182
+ Values?: PredefinedAttributeValues | undefined;
1179
1183
  }
1180
1184
  export interface UpdatePromptRequest {
1181
1185
  InstanceId: string | undefined;
1182
1186
  PromptId: string | undefined;
1183
- Name?: string;
1184
- Description?: string;
1185
- S3Uri?: string;
1187
+ Name?: string | undefined;
1188
+ Description?: string | undefined;
1189
+ S3Uri?: string | undefined;
1186
1190
  }
1187
1191
  export interface UpdatePromptResponse {
1188
- PromptARN?: string;
1189
- PromptId?: string;
1192
+ PromptARN?: string | undefined;
1193
+ PromptId?: string | undefined;
1190
1194
  }
1191
1195
  export interface UpdateQueueHoursOfOperationRequest {
1192
1196
  InstanceId: string | undefined;
@@ -1196,13 +1200,13 @@ export interface UpdateQueueHoursOfOperationRequest {
1196
1200
  export interface UpdateQueueMaxContactsRequest {
1197
1201
  InstanceId: string | undefined;
1198
1202
  QueueId: string | undefined;
1199
- MaxContacts?: number;
1203
+ MaxContacts?: number | undefined;
1200
1204
  }
1201
1205
  export interface UpdateQueueNameRequest {
1202
1206
  InstanceId: string | undefined;
1203
1207
  QueueId: string | undefined;
1204
- Name?: string;
1205
- Description?: string;
1208
+ Name?: string | undefined;
1209
+ Description?: string | undefined;
1206
1210
  }
1207
1211
  export interface UpdateQueueOutboundCallerConfigRequest {
1208
1212
  InstanceId: string | undefined;
@@ -1222,8 +1226,8 @@ export interface UpdateQuickConnectConfigRequest {
1222
1226
  export interface UpdateQuickConnectNameRequest {
1223
1227
  InstanceId: string | undefined;
1224
1228
  QuickConnectId: string | undefined;
1225
- Name?: string;
1226
- Description?: string;
1229
+ Name?: string | undefined;
1230
+ Description?: string | undefined;
1227
1231
  }
1228
1232
  export interface UpdateRoutingProfileAgentAvailabilityTimerRequest {
1229
1233
  InstanceId: string | undefined;
@@ -1243,8 +1247,8 @@ export interface UpdateRoutingProfileDefaultOutboundQueueRequest {
1243
1247
  export interface UpdateRoutingProfileNameRequest {
1244
1248
  InstanceId: string | undefined;
1245
1249
  RoutingProfileId: string | undefined;
1246
- Name?: string;
1247
- Description?: string;
1250
+ Name?: string | undefined;
1251
+ Description?: string | undefined;
1248
1252
  }
1249
1253
  export interface UpdateRoutingProfileQueuesRequest {
1250
1254
  InstanceId: string | undefined;
@@ -1260,50 +1264,50 @@ export interface UpdateRuleRequest {
1260
1264
  PublishStatus: RulePublishStatus | undefined;
1261
1265
  }
1262
1266
  export interface UpdateSecurityProfileRequest {
1263
- Description?: string;
1264
- Permissions?: string[];
1267
+ Description?: string | undefined;
1268
+ Permissions?: string[] | undefined;
1265
1269
  SecurityProfileId: string | undefined;
1266
1270
  InstanceId: string | undefined;
1267
- AllowedAccessControlTags?: Record<string, string>;
1268
- TagRestrictedResources?: string[];
1269
- Applications?: Application[];
1270
- HierarchyRestrictedResources?: string[];
1271
- AllowedAccessControlHierarchyGroupId?: string;
1271
+ AllowedAccessControlTags?: Record<string, string> | undefined;
1272
+ TagRestrictedResources?: string[] | undefined;
1273
+ Applications?: Application[] | undefined;
1274
+ HierarchyRestrictedResources?: string[] | undefined;
1275
+ AllowedAccessControlHierarchyGroupId?: string | undefined;
1272
1276
  }
1273
1277
  export interface UpdateTaskTemplateRequest {
1274
1278
  TaskTemplateId: string | undefined;
1275
1279
  InstanceId: string | undefined;
1276
- Name?: string;
1277
- Description?: string;
1278
- ContactFlowId?: string;
1279
- Constraints?: TaskTemplateConstraints;
1280
- Defaults?: TaskTemplateDefaults;
1281
- Status?: TaskTemplateStatus;
1282
- Fields?: TaskTemplateField[];
1280
+ Name?: string | undefined;
1281
+ Description?: string | undefined;
1282
+ ContactFlowId?: string | undefined;
1283
+ Constraints?: TaskTemplateConstraints | undefined;
1284
+ Defaults?: TaskTemplateDefaults | undefined;
1285
+ Status?: TaskTemplateStatus | undefined;
1286
+ Fields?: TaskTemplateField[] | undefined;
1283
1287
  }
1284
1288
  export interface UpdateTaskTemplateResponse {
1285
- InstanceId?: string;
1286
- Id?: string;
1287
- Arn?: string;
1288
- Name?: string;
1289
- Description?: string;
1290
- ContactFlowId?: string;
1291
- Constraints?: TaskTemplateConstraints;
1292
- Defaults?: TaskTemplateDefaults;
1293
- Fields?: TaskTemplateField[];
1294
- Status?: TaskTemplateStatus;
1295
- LastModifiedTime?: Date;
1296
- CreatedTime?: Date;
1289
+ InstanceId?: string | undefined;
1290
+ Id?: string | undefined;
1291
+ Arn?: string | undefined;
1292
+ Name?: string | undefined;
1293
+ Description?: string | undefined;
1294
+ ContactFlowId?: string | undefined;
1295
+ Constraints?: TaskTemplateConstraints | undefined;
1296
+ Defaults?: TaskTemplateDefaults | undefined;
1297
+ Fields?: TaskTemplateField[] | undefined;
1298
+ Status?: TaskTemplateStatus | undefined;
1299
+ LastModifiedTime?: Date | undefined;
1300
+ CreatedTime?: Date | undefined;
1297
1301
  }
1298
1302
  export interface UpdateTrafficDistributionRequest {
1299
1303
  Id: string | undefined;
1300
- TelephonyConfig?: TelephonyConfig;
1301
- SignInConfig?: SignInConfig;
1302
- AgentConfig?: AgentConfig;
1304
+ TelephonyConfig?: TelephonyConfig | undefined;
1305
+ SignInConfig?: SignInConfig | undefined;
1306
+ AgentConfig?: AgentConfig | undefined;
1303
1307
  }
1304
1308
  export interface UpdateTrafficDistributionResponse {}
1305
1309
  export interface UpdateUserHierarchyRequest {
1306
- HierarchyGroupId?: string;
1310
+ HierarchyGroupId?: string | undefined;
1307
1311
  UserId: string | undefined;
1308
1312
  InstanceId: string | undefined;
1309
1313
  }
@@ -1316,11 +1320,11 @@ export interface HierarchyLevelUpdate {
1316
1320
  Name: string | undefined;
1317
1321
  }
1318
1322
  export interface HierarchyStructureUpdate {
1319
- LevelOne?: HierarchyLevelUpdate;
1320
- LevelTwo?: HierarchyLevelUpdate;
1321
- LevelThree?: HierarchyLevelUpdate;
1322
- LevelFour?: HierarchyLevelUpdate;
1323
- LevelFive?: HierarchyLevelUpdate;
1323
+ LevelOne?: HierarchyLevelUpdate | undefined;
1324
+ LevelTwo?: HierarchyLevelUpdate | undefined;
1325
+ LevelThree?: HierarchyLevelUpdate | undefined;
1326
+ LevelFour?: HierarchyLevelUpdate | undefined;
1327
+ LevelFive?: HierarchyLevelUpdate | undefined;
1324
1328
  }
1325
1329
  export interface UpdateUserHierarchyStructureRequest {
1326
1330
  HierarchyStructure: HierarchyStructureUpdate | undefined;
@@ -1358,13 +1362,13 @@ export interface UpdateViewContentRequest {
1358
1362
  Content: ViewInputContent | undefined;
1359
1363
  }
1360
1364
  export interface UpdateViewContentResponse {
1361
- View?: View;
1365
+ View?: View | undefined;
1362
1366
  }
1363
1367
  export interface UpdateViewMetadataRequest {
1364
1368
  InstanceId: string | undefined;
1365
1369
  ViewId: string | undefined;
1366
- Name?: string;
1367
- Description?: string;
1370
+ Name?: string | undefined;
1371
+ Description?: string | undefined;
1368
1372
  }
1369
1373
  export interface UpdateViewMetadataResponse {}
1370
1374
  export type EvaluationFormItem =
@@ -1397,35 +1401,35 @@ export declare namespace EvaluationFormItem {
1397
1401
  export interface EvaluationFormSection {
1398
1402
  Title: string | undefined;
1399
1403
  RefId: string | undefined;
1400
- Instructions?: string;
1404
+ Instructions?: string | undefined;
1401
1405
  Items: EvaluationFormItem[] | undefined;
1402
- Weight?: number;
1406
+ Weight?: number | undefined;
1403
1407
  }
1404
1408
  export interface AgentStatusSearchCriteria {
1405
- OrConditions?: AgentStatusSearchCriteria[];
1406
- AndConditions?: AgentStatusSearchCriteria[];
1407
- StringCondition?: StringCondition;
1409
+ OrConditions?: AgentStatusSearchCriteria[] | undefined;
1410
+ AndConditions?: AgentStatusSearchCriteria[] | undefined;
1411
+ StringCondition?: StringCondition | undefined;
1408
1412
  }
1409
1413
  export interface ContactFlowModuleSearchCriteria {
1410
- OrConditions?: ContactFlowModuleSearchCriteria[];
1411
- AndConditions?: ContactFlowModuleSearchCriteria[];
1412
- StringCondition?: StringCondition;
1414
+ OrConditions?: ContactFlowModuleSearchCriteria[] | undefined;
1415
+ AndConditions?: ContactFlowModuleSearchCriteria[] | undefined;
1416
+ StringCondition?: StringCondition | undefined;
1413
1417
  }
1414
1418
  export interface ContactFlowSearchCriteria {
1415
- OrConditions?: ContactFlowSearchCriteria[];
1416
- AndConditions?: ContactFlowSearchCriteria[];
1417
- StringCondition?: StringCondition;
1418
- TypeCondition?: ContactFlowType;
1419
- StateCondition?: ContactFlowState;
1420
- StatusCondition?: ContactFlowStatus;
1419
+ OrConditions?: ContactFlowSearchCriteria[] | undefined;
1420
+ AndConditions?: ContactFlowSearchCriteria[] | undefined;
1421
+ StringCondition?: StringCondition | undefined;
1422
+ TypeCondition?: ContactFlowType | undefined;
1423
+ StateCondition?: ContactFlowState | undefined;
1424
+ StatusCondition?: ContactFlowStatus | undefined;
1421
1425
  }
1422
1426
  export interface CreateEvaluationFormRequest {
1423
1427
  InstanceId: string | undefined;
1424
1428
  Title: string | undefined;
1425
- Description?: string;
1429
+ Description?: string | undefined;
1426
1430
  Items: EvaluationFormItem[] | undefined;
1427
- ScoringStrategy?: EvaluationFormScoringStrategy;
1428
- ClientToken?: string;
1431
+ ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
1432
+ ClientToken?: string | undefined;
1429
1433
  }
1430
1434
  export interface EvaluationForm {
1431
1435
  EvaluationFormId: string | undefined;
@@ -1433,88 +1437,88 @@ export interface EvaluationForm {
1433
1437
  Locked: boolean | undefined;
1434
1438
  EvaluationFormArn: string | undefined;
1435
1439
  Title: string | undefined;
1436
- Description?: string;
1440
+ Description?: string | undefined;
1437
1441
  Status: EvaluationFormVersionStatus | undefined;
1438
1442
  Items: EvaluationFormItem[] | undefined;
1439
- ScoringStrategy?: EvaluationFormScoringStrategy;
1443
+ ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
1440
1444
  CreatedTime: Date | undefined;
1441
1445
  CreatedBy: string | undefined;
1442
1446
  LastModifiedTime: Date | undefined;
1443
1447
  LastModifiedBy: string | undefined;
1444
- Tags?: Record<string, string>;
1448
+ Tags?: Record<string, string> | undefined;
1445
1449
  }
1446
1450
  export interface EvaluationFormContent {
1447
1451
  EvaluationFormVersion: number | undefined;
1448
1452
  EvaluationFormId: string | undefined;
1449
1453
  EvaluationFormArn: string | undefined;
1450
1454
  Title: string | undefined;
1451
- Description?: string;
1455
+ Description?: string | undefined;
1452
1456
  Items: EvaluationFormItem[] | undefined;
1453
- ScoringStrategy?: EvaluationFormScoringStrategy;
1457
+ ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
1454
1458
  }
1455
1459
  export interface Expression {
1456
- AttributeCondition?: AttributeCondition;
1457
- AndExpression?: Expression[];
1458
- OrExpression?: Expression[];
1460
+ AttributeCondition?: AttributeCondition | undefined;
1461
+ AndExpression?: Expression[] | undefined;
1462
+ OrExpression?: Expression[] | undefined;
1459
1463
  }
1460
1464
  export interface HoursOfOperationSearchCriteria {
1461
- OrConditions?: HoursOfOperationSearchCriteria[];
1462
- AndConditions?: HoursOfOperationSearchCriteria[];
1463
- StringCondition?: StringCondition;
1465
+ OrConditions?: HoursOfOperationSearchCriteria[] | undefined;
1466
+ AndConditions?: HoursOfOperationSearchCriteria[] | undefined;
1467
+ StringCondition?: StringCondition | undefined;
1464
1468
  }
1465
1469
  export interface PredefinedAttributeSearchCriteria {
1466
- OrConditions?: PredefinedAttributeSearchCriteria[];
1467
- AndConditions?: PredefinedAttributeSearchCriteria[];
1468
- StringCondition?: StringCondition;
1470
+ OrConditions?: PredefinedAttributeSearchCriteria[] | undefined;
1471
+ AndConditions?: PredefinedAttributeSearchCriteria[] | undefined;
1472
+ StringCondition?: StringCondition | undefined;
1469
1473
  }
1470
1474
  export interface PromptSearchCriteria {
1471
- OrConditions?: PromptSearchCriteria[];
1472
- AndConditions?: PromptSearchCriteria[];
1473
- StringCondition?: StringCondition;
1475
+ OrConditions?: PromptSearchCriteria[] | undefined;
1476
+ AndConditions?: PromptSearchCriteria[] | undefined;
1477
+ StringCondition?: StringCondition | undefined;
1474
1478
  }
1475
1479
  export interface QueueSearchCriteria {
1476
- OrConditions?: QueueSearchCriteria[];
1477
- AndConditions?: QueueSearchCriteria[];
1478
- StringCondition?: StringCondition;
1479
- QueueTypeCondition?: SearchableQueueType;
1480
+ OrConditions?: QueueSearchCriteria[] | undefined;
1481
+ AndConditions?: QueueSearchCriteria[] | undefined;
1482
+ StringCondition?: StringCondition | undefined;
1483
+ QueueTypeCondition?: SearchableQueueType | undefined;
1480
1484
  }
1481
1485
  export interface QuickConnectSearchCriteria {
1482
- OrConditions?: QuickConnectSearchCriteria[];
1483
- AndConditions?: QuickConnectSearchCriteria[];
1484
- StringCondition?: StringCondition;
1486
+ OrConditions?: QuickConnectSearchCriteria[] | undefined;
1487
+ AndConditions?: QuickConnectSearchCriteria[] | undefined;
1488
+ StringCondition?: StringCondition | undefined;
1485
1489
  }
1486
1490
  export interface RoutingProfileSearchCriteria {
1487
- OrConditions?: RoutingProfileSearchCriteria[];
1488
- AndConditions?: RoutingProfileSearchCriteria[];
1489
- StringCondition?: StringCondition;
1491
+ OrConditions?: RoutingProfileSearchCriteria[] | undefined;
1492
+ AndConditions?: RoutingProfileSearchCriteria[] | undefined;
1493
+ StringCondition?: StringCondition | undefined;
1490
1494
  }
1491
1495
  export interface SecurityProfileSearchCriteria {
1492
- OrConditions?: SecurityProfileSearchCriteria[];
1493
- AndConditions?: SecurityProfileSearchCriteria[];
1494
- StringCondition?: StringCondition;
1496
+ OrConditions?: SecurityProfileSearchCriteria[] | undefined;
1497
+ AndConditions?: SecurityProfileSearchCriteria[] | undefined;
1498
+ StringCondition?: StringCondition | undefined;
1495
1499
  }
1496
1500
  export interface UpdateEvaluationFormRequest {
1497
1501
  InstanceId: string | undefined;
1498
1502
  EvaluationFormId: string | undefined;
1499
1503
  EvaluationFormVersion: number | undefined;
1500
- CreateNewVersion?: boolean;
1504
+ CreateNewVersion?: boolean | undefined;
1501
1505
  Title: string | undefined;
1502
- Description?: string;
1506
+ Description?: string | undefined;
1503
1507
  Items: EvaluationFormItem[] | undefined;
1504
- ScoringStrategy?: EvaluationFormScoringStrategy;
1505
- ClientToken?: string;
1508
+ ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
1509
+ ClientToken?: string | undefined;
1506
1510
  }
1507
1511
  export interface UserHierarchyGroupSearchCriteria {
1508
- OrConditions?: UserHierarchyGroupSearchCriteria[];
1509
- AndConditions?: UserHierarchyGroupSearchCriteria[];
1510
- StringCondition?: StringCondition;
1512
+ OrConditions?: UserHierarchyGroupSearchCriteria[] | undefined;
1513
+ AndConditions?: UserHierarchyGroupSearchCriteria[] | undefined;
1514
+ StringCondition?: StringCondition | undefined;
1511
1515
  }
1512
1516
  export interface UserSearchCriteria {
1513
- OrConditions?: UserSearchCriteria[];
1514
- AndConditions?: UserSearchCriteria[];
1515
- StringCondition?: StringCondition;
1516
- ListCondition?: ListCondition;
1517
- HierarchyGroupCondition?: HierarchyGroupCondition;
1517
+ OrConditions?: UserSearchCriteria[] | undefined;
1518
+ AndConditions?: UserSearchCriteria[] | undefined;
1519
+ StringCondition?: StringCondition | undefined;
1520
+ ListCondition?: ListCondition | undefined;
1521
+ HierarchyGroupCondition?: HierarchyGroupCondition | undefined;
1518
1522
  }
1519
1523
  export interface DescribeContactEvaluationResponse {
1520
1524
  Evaluation: Evaluation | undefined;
@@ -1524,148 +1528,148 @@ export interface DescribeEvaluationFormResponse {
1524
1528
  EvaluationForm: EvaluationForm | undefined;
1525
1529
  }
1526
1530
  export interface RoutingCriteriaInputStep {
1527
- Expiry?: RoutingCriteriaInputStepExpiry;
1528
- Expression?: Expression;
1531
+ Expiry?: RoutingCriteriaInputStepExpiry | undefined;
1532
+ Expression?: Expression | undefined;
1529
1533
  }
1530
1534
  export interface SearchAgentStatusesRequest {
1531
1535
  InstanceId: string | undefined;
1532
- NextToken?: string;
1533
- MaxResults?: number;
1534
- SearchFilter?: AgentStatusSearchFilter;
1535
- SearchCriteria?: AgentStatusSearchCriteria;
1536
+ NextToken?: string | undefined;
1537
+ MaxResults?: number | undefined;
1538
+ SearchFilter?: AgentStatusSearchFilter | undefined;
1539
+ SearchCriteria?: AgentStatusSearchCriteria | undefined;
1536
1540
  }
1537
1541
  export interface SearchContactFlowModulesRequest {
1538
1542
  InstanceId: string | undefined;
1539
- NextToken?: string;
1540
- MaxResults?: number;
1541
- SearchFilter?: ContactFlowModuleSearchFilter;
1542
- SearchCriteria?: ContactFlowModuleSearchCriteria;
1543
+ NextToken?: string | undefined;
1544
+ MaxResults?: number | undefined;
1545
+ SearchFilter?: ContactFlowModuleSearchFilter | undefined;
1546
+ SearchCriteria?: ContactFlowModuleSearchCriteria | undefined;
1543
1547
  }
1544
1548
  export interface SearchContactFlowsRequest {
1545
1549
  InstanceId: string | undefined;
1546
- NextToken?: string;
1547
- MaxResults?: number;
1548
- SearchFilter?: ContactFlowSearchFilter;
1549
- SearchCriteria?: ContactFlowSearchCriteria;
1550
+ NextToken?: string | undefined;
1551
+ MaxResults?: number | undefined;
1552
+ SearchFilter?: ContactFlowSearchFilter | undefined;
1553
+ SearchCriteria?: ContactFlowSearchCriteria | undefined;
1550
1554
  }
1551
1555
  export interface SearchHoursOfOperationsRequest {
1552
1556
  InstanceId: string | undefined;
1553
- NextToken?: string;
1554
- MaxResults?: number;
1555
- SearchFilter?: HoursOfOperationSearchFilter;
1556
- SearchCriteria?: HoursOfOperationSearchCriteria;
1557
+ NextToken?: string | undefined;
1558
+ MaxResults?: number | undefined;
1559
+ SearchFilter?: HoursOfOperationSearchFilter | undefined;
1560
+ SearchCriteria?: HoursOfOperationSearchCriteria | undefined;
1557
1561
  }
1558
1562
  export interface SearchPredefinedAttributesRequest {
1559
1563
  InstanceId: string | undefined;
1560
- NextToken?: string;
1561
- MaxResults?: number;
1562
- SearchCriteria?: PredefinedAttributeSearchCriteria;
1564
+ NextToken?: string | undefined;
1565
+ MaxResults?: number | undefined;
1566
+ SearchCriteria?: PredefinedAttributeSearchCriteria | undefined;
1563
1567
  }
1564
1568
  export interface SearchPromptsRequest {
1565
1569
  InstanceId: string | undefined;
1566
- NextToken?: string;
1567
- MaxResults?: number;
1568
- SearchFilter?: PromptSearchFilter;
1569
- SearchCriteria?: PromptSearchCriteria;
1570
+ NextToken?: string | undefined;
1571
+ MaxResults?: number | undefined;
1572
+ SearchFilter?: PromptSearchFilter | undefined;
1573
+ SearchCriteria?: PromptSearchCriteria | undefined;
1570
1574
  }
1571
1575
  export interface SearchQueuesRequest {
1572
1576
  InstanceId: string | undefined;
1573
- NextToken?: string;
1574
- MaxResults?: number;
1575
- SearchFilter?: QueueSearchFilter;
1576
- SearchCriteria?: QueueSearchCriteria;
1577
+ NextToken?: string | undefined;
1578
+ MaxResults?: number | undefined;
1579
+ SearchFilter?: QueueSearchFilter | undefined;
1580
+ SearchCriteria?: QueueSearchCriteria | undefined;
1577
1581
  }
1578
1582
  export interface SearchQuickConnectsRequest {
1579
1583
  InstanceId: string | undefined;
1580
- NextToken?: string;
1581
- MaxResults?: number;
1582
- SearchFilter?: QuickConnectSearchFilter;
1583
- SearchCriteria?: QuickConnectSearchCriteria;
1584
+ NextToken?: string | undefined;
1585
+ MaxResults?: number | undefined;
1586
+ SearchFilter?: QuickConnectSearchFilter | undefined;
1587
+ SearchCriteria?: QuickConnectSearchCriteria | undefined;
1584
1588
  }
1585
1589
  export interface SearchRoutingProfilesRequest {
1586
1590
  InstanceId: string | undefined;
1587
- NextToken?: string;
1588
- MaxResults?: number;
1589
- SearchFilter?: RoutingProfileSearchFilter;
1590
- SearchCriteria?: RoutingProfileSearchCriteria;
1591
+ NextToken?: string | undefined;
1592
+ MaxResults?: number | undefined;
1593
+ SearchFilter?: RoutingProfileSearchFilter | undefined;
1594
+ SearchCriteria?: RoutingProfileSearchCriteria | undefined;
1591
1595
  }
1592
1596
  export interface SearchSecurityProfilesRequest {
1593
1597
  InstanceId: string | undefined;
1594
- NextToken?: string;
1595
- MaxResults?: number;
1596
- SearchCriteria?: SecurityProfileSearchCriteria;
1597
- SearchFilter?: SecurityProfilesSearchFilter;
1598
+ NextToken?: string | undefined;
1599
+ MaxResults?: number | undefined;
1600
+ SearchCriteria?: SecurityProfileSearchCriteria | undefined;
1601
+ SearchFilter?: SecurityProfilesSearchFilter | undefined;
1598
1602
  }
1599
1603
  export interface SearchUserHierarchyGroupsRequest {
1600
1604
  InstanceId: string | undefined;
1601
- NextToken?: string;
1602
- MaxResults?: number;
1603
- SearchFilter?: UserHierarchyGroupSearchFilter;
1604
- SearchCriteria?: UserHierarchyGroupSearchCriteria;
1605
+ NextToken?: string | undefined;
1606
+ MaxResults?: number | undefined;
1607
+ SearchFilter?: UserHierarchyGroupSearchFilter | undefined;
1608
+ SearchCriteria?: UserHierarchyGroupSearchCriteria | undefined;
1605
1609
  }
1606
1610
  export interface SearchUsersRequest {
1607
1611
  InstanceId: string | undefined;
1608
- NextToken?: string;
1609
- MaxResults?: number;
1610
- SearchFilter?: UserSearchFilter;
1611
- SearchCriteria?: UserSearchCriteria;
1612
+ NextToken?: string | undefined;
1613
+ MaxResults?: number | undefined;
1614
+ SearchFilter?: UserSearchFilter | undefined;
1615
+ SearchCriteria?: UserSearchCriteria | undefined;
1612
1616
  }
1613
1617
  export interface Step {
1614
- Expiry?: Expiry;
1615
- Expression?: Expression;
1616
- Status?: RoutingCriteriaStepStatus;
1618
+ Expiry?: Expiry | undefined;
1619
+ Expression?: Expression | undefined;
1620
+ Status?: RoutingCriteriaStepStatus | undefined;
1617
1621
  }
1618
1622
  export interface RoutingCriteria {
1619
- Steps?: Step[];
1620
- ActivationTimestamp?: Date;
1621
- Index?: number;
1623
+ Steps?: Step[] | undefined;
1624
+ ActivationTimestamp?: Date | undefined;
1625
+ Index?: number | undefined;
1622
1626
  }
1623
1627
  export interface RoutingCriteriaInput {
1624
- Steps?: RoutingCriteriaInputStep[];
1628
+ Steps?: RoutingCriteriaInputStep[] | undefined;
1625
1629
  }
1626
1630
  export interface Contact {
1627
- Arn?: string;
1628
- Id?: string;
1629
- InitialContactId?: string;
1630
- PreviousContactId?: string;
1631
- InitiationMethod?: ContactInitiationMethod;
1632
- Name?: string;
1633
- Description?: string;
1634
- Channel?: Channel;
1635
- QueueInfo?: QueueInfo;
1636
- AgentInfo?: AgentInfo;
1637
- InitiationTimestamp?: Date;
1638
- DisconnectTimestamp?: Date;
1639
- LastUpdateTimestamp?: Date;
1640
- LastPausedTimestamp?: Date;
1641
- LastResumedTimestamp?: Date;
1642
- TotalPauseCount?: number;
1643
- TotalPauseDurationInSeconds?: number;
1644
- ScheduledTimestamp?: Date;
1645
- RelatedContactId?: string;
1646
- WisdomInfo?: WisdomInfo;
1647
- QueueTimeAdjustmentSeconds?: number;
1648
- QueuePriority?: number;
1649
- Tags?: Record<string, string>;
1650
- ConnectedToSystemTimestamp?: Date;
1651
- RoutingCriteria?: RoutingCriteria;
1652
- Customer?: Customer;
1653
- Campaign?: Campaign;
1654
- AnsweringMachineDetectionStatus?: AnsweringMachineDetectionStatus;
1655
- CustomerVoiceActivity?: CustomerVoiceActivity;
1656
- QualityMetrics?: QualityMetrics;
1657
- DisconnectDetails?: DisconnectDetails;
1658
- SegmentAttributes?: Record<string, SegmentAttributeValue>;
1631
+ Arn?: string | undefined;
1632
+ Id?: string | undefined;
1633
+ InitialContactId?: string | undefined;
1634
+ PreviousContactId?: string | undefined;
1635
+ InitiationMethod?: ContactInitiationMethod | undefined;
1636
+ Name?: string | undefined;
1637
+ Description?: string | undefined;
1638
+ Channel?: Channel | undefined;
1639
+ QueueInfo?: QueueInfo | undefined;
1640
+ AgentInfo?: AgentInfo | undefined;
1641
+ InitiationTimestamp?: Date | undefined;
1642
+ DisconnectTimestamp?: Date | undefined;
1643
+ LastUpdateTimestamp?: Date | undefined;
1644
+ LastPausedTimestamp?: Date | undefined;
1645
+ LastResumedTimestamp?: Date | undefined;
1646
+ TotalPauseCount?: number | undefined;
1647
+ TotalPauseDurationInSeconds?: number | undefined;
1648
+ ScheduledTimestamp?: Date | undefined;
1649
+ RelatedContactId?: string | undefined;
1650
+ WisdomInfo?: WisdomInfo | undefined;
1651
+ QueueTimeAdjustmentSeconds?: number | undefined;
1652
+ QueuePriority?: number | undefined;
1653
+ Tags?: Record<string, string> | undefined;
1654
+ ConnectedToSystemTimestamp?: Date | undefined;
1655
+ RoutingCriteria?: RoutingCriteria | undefined;
1656
+ Customer?: Customer | undefined;
1657
+ Campaign?: Campaign | undefined;
1658
+ AnsweringMachineDetectionStatus?: AnsweringMachineDetectionStatus | undefined;
1659
+ CustomerVoiceActivity?: CustomerVoiceActivity | undefined;
1660
+ QualityMetrics?: QualityMetrics | undefined;
1661
+ DisconnectDetails?: DisconnectDetails | undefined;
1662
+ SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
1659
1663
  }
1660
1664
  export interface UpdateContactRoutingDataRequest {
1661
1665
  InstanceId: string | undefined;
1662
1666
  ContactId: string | undefined;
1663
- QueueTimeAdjustmentSeconds?: number;
1664
- QueuePriority?: number;
1665
- RoutingCriteria?: RoutingCriteriaInput;
1667
+ QueueTimeAdjustmentSeconds?: number | undefined;
1668
+ QueuePriority?: number | undefined;
1669
+ RoutingCriteria?: RoutingCriteriaInput | undefined;
1666
1670
  }
1667
1671
  export interface DescribeContactResponse {
1668
- Contact?: Contact;
1672
+ Contact?: Contact | undefined;
1669
1673
  }
1670
1674
  export declare const ViewSummaryFilterSensitiveLog: (obj: ViewSummary) => any;
1671
1675
  export declare const ListViewsResponseFilterSensitiveLog: (