@aws-sdk/client-connect 3.687.0 → 3.692.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +366 -366
- package/dist-types/models/models_1.d.ts +638 -638
- package/dist-types/models/models_2.d.ts +585 -585
- package/dist-types/ts3.4/models/models_0.d.ts +368 -366
- package/dist-types/ts3.4/models/models_1.d.ts +646 -638
- package/dist-types/ts3.4/models/models_2.d.ts +589 -585
- package/package.json +35 -35
|
@@ -7,7 +7,7 @@ import { ConnectServiceException as __BaseException } from "./ConnectServiceExce
|
|
|
7
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
9
9
|
readonly $fault: "client";
|
|
10
|
-
Message?: string;
|
|
10
|
+
Message?: string | undefined;
|
|
11
11
|
/**
|
|
12
12
|
* @internal
|
|
13
13
|
*/
|
|
@@ -94,7 +94,7 @@ export declare class InternalServiceException extends __BaseException {
|
|
|
94
94
|
* <p>The message.</p>
|
|
95
95
|
* @public
|
|
96
96
|
*/
|
|
97
|
-
Message?: string;
|
|
97
|
+
Message?: string | undefined;
|
|
98
98
|
/**
|
|
99
99
|
* @internal
|
|
100
100
|
*/
|
|
@@ -111,7 +111,7 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
111
111
|
* <p>The message about the parameters.</p>
|
|
112
112
|
* @public
|
|
113
113
|
*/
|
|
114
|
-
Message?: string;
|
|
114
|
+
Message?: string | undefined;
|
|
115
115
|
/**
|
|
116
116
|
* @internal
|
|
117
117
|
*/
|
|
@@ -124,7 +124,7 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
124
124
|
export declare class ResourceConflictException extends __BaseException {
|
|
125
125
|
readonly name: "ResourceConflictException";
|
|
126
126
|
readonly $fault: "client";
|
|
127
|
-
Message?: string;
|
|
127
|
+
Message?: string | undefined;
|
|
128
128
|
/**
|
|
129
129
|
* @internal
|
|
130
130
|
*/
|
|
@@ -141,7 +141,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
141
141
|
* <p>The message about the resource.</p>
|
|
142
142
|
* @public
|
|
143
143
|
*/
|
|
144
|
-
Message?: string;
|
|
144
|
+
Message?: string | undefined;
|
|
145
145
|
/**
|
|
146
146
|
* @internal
|
|
147
147
|
*/
|
|
@@ -154,7 +154,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
154
154
|
export declare class ThrottlingException extends __BaseException {
|
|
155
155
|
readonly name: "ThrottlingException";
|
|
156
156
|
readonly $fault: "client";
|
|
157
|
-
Message?: string;
|
|
157
|
+
Message?: string | undefined;
|
|
158
158
|
/**
|
|
159
159
|
* @internal
|
|
160
160
|
*/
|
|
@@ -259,12 +259,12 @@ export interface QueueReference {
|
|
|
259
259
|
* <p>The identifier of the queue.</p>
|
|
260
260
|
* @public
|
|
261
261
|
*/
|
|
262
|
-
Id?: string;
|
|
262
|
+
Id?: string | undefined;
|
|
263
263
|
/**
|
|
264
264
|
* <p>The Amazon Resource Name (ARN) of the queue.</p>
|
|
265
265
|
* @public
|
|
266
266
|
*/
|
|
267
|
-
Arn?: string;
|
|
267
|
+
Arn?: string | undefined;
|
|
268
268
|
}
|
|
269
269
|
/**
|
|
270
270
|
* <p>Information about the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Contact.html">contact</a> associated to the
|
|
@@ -276,17 +276,17 @@ export interface AgentContactReference {
|
|
|
276
276
|
* <p>The identifier of the contact in this instance of Amazon Connect. </p>
|
|
277
277
|
* @public
|
|
278
278
|
*/
|
|
279
|
-
ContactId?: string;
|
|
279
|
+
ContactId?: string | undefined;
|
|
280
280
|
/**
|
|
281
281
|
* <p>The channel of the contact.</p>
|
|
282
282
|
* @public
|
|
283
283
|
*/
|
|
284
|
-
Channel?: Channel;
|
|
284
|
+
Channel?: Channel | undefined;
|
|
285
285
|
/**
|
|
286
286
|
* <p>How the contact was initiated.</p>
|
|
287
287
|
* @public
|
|
288
288
|
*/
|
|
289
|
-
InitiationMethod?: ContactInitiationMethod;
|
|
289
|
+
InitiationMethod?: ContactInitiationMethod | undefined;
|
|
290
290
|
/**
|
|
291
291
|
* <p>The <a href="https://docs.aws.amazon.com/connect/latest/adminguide/about-contact-states.html">state of the contact</a>.</p>
|
|
292
292
|
* <note>
|
|
@@ -296,22 +296,22 @@ export interface AgentContactReference {
|
|
|
296
296
|
* </note>
|
|
297
297
|
* @public
|
|
298
298
|
*/
|
|
299
|
-
AgentContactState?: ContactState;
|
|
299
|
+
AgentContactState?: ContactState | undefined;
|
|
300
300
|
/**
|
|
301
301
|
* <p>The epoch timestamp when the contact state started.</p>
|
|
302
302
|
* @public
|
|
303
303
|
*/
|
|
304
|
-
StateStartTimestamp?: Date;
|
|
304
|
+
StateStartTimestamp?: Date | undefined;
|
|
305
305
|
/**
|
|
306
306
|
* <p>The time at which the contact was connected to an agent.</p>
|
|
307
307
|
* @public
|
|
308
308
|
*/
|
|
309
|
-
ConnectedToAgentTimestamp?: Date;
|
|
309
|
+
ConnectedToAgentTimestamp?: Date | undefined;
|
|
310
310
|
/**
|
|
311
311
|
* <p>Contains information about a queue resource for which metrics are returned.</p>
|
|
312
312
|
* @public
|
|
313
313
|
*/
|
|
314
|
-
Queue?: QueueReference;
|
|
314
|
+
Queue?: QueueReference | undefined;
|
|
315
315
|
}
|
|
316
316
|
/**
|
|
317
317
|
* <p>Information about an agent hierarchy group.</p>
|
|
@@ -322,7 +322,7 @@ export interface AgentHierarchyGroup {
|
|
|
322
322
|
* <p>The Amazon Resource Name (ARN) of the group.</p>
|
|
323
323
|
* @public
|
|
324
324
|
*/
|
|
325
|
-
Arn?: string;
|
|
325
|
+
Arn?: string | undefined;
|
|
326
326
|
}
|
|
327
327
|
/**
|
|
328
328
|
* <p>A structure that defines search criteria for contacts using agent hierarchy group levels.
|
|
@@ -335,27 +335,27 @@ export interface AgentHierarchyGroups {
|
|
|
335
335
|
* <p>The identifiers for level 1 hierarchy groups.</p>
|
|
336
336
|
* @public
|
|
337
337
|
*/
|
|
338
|
-
L1Ids?: string[];
|
|
338
|
+
L1Ids?: string[] | undefined;
|
|
339
339
|
/**
|
|
340
340
|
* <p>The identifiers for level 2 hierarchy groups.</p>
|
|
341
341
|
* @public
|
|
342
342
|
*/
|
|
343
|
-
L2Ids?: string[];
|
|
343
|
+
L2Ids?: string[] | undefined;
|
|
344
344
|
/**
|
|
345
345
|
* <p>The identifiers for level 3 hierarchy groups.</p>
|
|
346
346
|
* @public
|
|
347
347
|
*/
|
|
348
|
-
L3Ids?: string[];
|
|
348
|
+
L3Ids?: string[] | undefined;
|
|
349
349
|
/**
|
|
350
350
|
* <p>The identifiers for level 4 hierarchy groups.</p>
|
|
351
351
|
* @public
|
|
352
352
|
*/
|
|
353
|
-
L4Ids?: string[];
|
|
353
|
+
L4Ids?: string[] | undefined;
|
|
354
354
|
/**
|
|
355
355
|
* <p>The identifiers for level 5 hierarchy groups.</p>
|
|
356
356
|
* @public
|
|
357
357
|
*/
|
|
358
|
-
L5Ids?: string[];
|
|
358
|
+
L5Ids?: string[] | undefined;
|
|
359
359
|
}
|
|
360
360
|
/**
|
|
361
361
|
* @public
|
|
@@ -391,12 +391,12 @@ export interface ParticipantCapabilities {
|
|
|
391
391
|
* call.</p>
|
|
392
392
|
* @public
|
|
393
393
|
*/
|
|
394
|
-
Video?: VideoCapability;
|
|
394
|
+
Video?: VideoCapability | undefined;
|
|
395
395
|
/**
|
|
396
396
|
* <p>The screen sharing capability that is enabled for the participant. <code>SEND</code> indicates the participant can share their screen.</p>
|
|
397
397
|
* @public
|
|
398
398
|
*/
|
|
399
|
-
ScreenShare?: ScreenShareCapability;
|
|
399
|
+
ScreenShare?: ScreenShareCapability | undefined;
|
|
400
400
|
}
|
|
401
401
|
/**
|
|
402
402
|
* <p>Information regarding the device.</p>
|
|
@@ -407,17 +407,17 @@ export interface DeviceInfo {
|
|
|
407
407
|
* <p>Name of the platform that the participant used for the call.</p>
|
|
408
408
|
* @public
|
|
409
409
|
*/
|
|
410
|
-
PlatformName?: string;
|
|
410
|
+
PlatformName?: string | undefined;
|
|
411
411
|
/**
|
|
412
412
|
* <p>Version of the platform that the participant used for the call.</p>
|
|
413
413
|
* @public
|
|
414
414
|
*/
|
|
415
|
-
PlatformVersion?: string;
|
|
415
|
+
PlatformVersion?: string | undefined;
|
|
416
416
|
/**
|
|
417
417
|
* <p>Operating system that the participant used for the call.</p>
|
|
418
418
|
* @public
|
|
419
419
|
*/
|
|
420
|
-
OperatingSystem?: string;
|
|
420
|
+
OperatingSystem?: string | undefined;
|
|
421
421
|
}
|
|
422
422
|
/**
|
|
423
423
|
* <p>Information about the agent hierarchy. Hierarchies can be configured with up to five
|
|
@@ -429,27 +429,27 @@ export interface HierarchyGroups {
|
|
|
429
429
|
* <p>The group at level one of the agent hierarchy.</p>
|
|
430
430
|
* @public
|
|
431
431
|
*/
|
|
432
|
-
Level1?: AgentHierarchyGroup;
|
|
432
|
+
Level1?: AgentHierarchyGroup | undefined;
|
|
433
433
|
/**
|
|
434
434
|
* <p>The group at level two of the agent hierarchy.</p>
|
|
435
435
|
* @public
|
|
436
436
|
*/
|
|
437
|
-
Level2?: AgentHierarchyGroup;
|
|
437
|
+
Level2?: AgentHierarchyGroup | undefined;
|
|
438
438
|
/**
|
|
439
439
|
* <p>The group at level three of the agent hierarchy.</p>
|
|
440
440
|
* @public
|
|
441
441
|
*/
|
|
442
|
-
Level3?: AgentHierarchyGroup;
|
|
442
|
+
Level3?: AgentHierarchyGroup | undefined;
|
|
443
443
|
/**
|
|
444
444
|
* <p>The group at level four of the agent hierarchy.</p>
|
|
445
445
|
* @public
|
|
446
446
|
*/
|
|
447
|
-
Level4?: AgentHierarchyGroup;
|
|
447
|
+
Level4?: AgentHierarchyGroup | undefined;
|
|
448
448
|
/**
|
|
449
449
|
* <p>The group at level five of the agent hierarchy.</p>
|
|
450
450
|
* @public
|
|
451
451
|
*/
|
|
452
|
-
Level5?: AgentHierarchyGroup;
|
|
452
|
+
Level5?: AgentHierarchyGroup | undefined;
|
|
453
453
|
}
|
|
454
454
|
/**
|
|
455
455
|
* <p>Information about the agent who accepted the contact.</p>
|
|
@@ -460,34 +460,34 @@ export interface AgentInfo {
|
|
|
460
460
|
* <p>The identifier of the agent who accepted the contact.</p>
|
|
461
461
|
* @public
|
|
462
462
|
*/
|
|
463
|
-
Id?: string;
|
|
463
|
+
Id?: string | undefined;
|
|
464
464
|
/**
|
|
465
465
|
* <p>The timestamp when the contact was connected to the agent.</p>
|
|
466
466
|
* @public
|
|
467
467
|
*/
|
|
468
|
-
ConnectedToAgentTimestamp?: Date;
|
|
468
|
+
ConnectedToAgentTimestamp?: Date | undefined;
|
|
469
469
|
/**
|
|
470
470
|
* <p>Agent pause duration for a contact in seconds.</p>
|
|
471
471
|
* @public
|
|
472
472
|
*/
|
|
473
|
-
AgentPauseDurationInSeconds?: number;
|
|
473
|
+
AgentPauseDurationInSeconds?: number | undefined;
|
|
474
474
|
/**
|
|
475
475
|
* <p>The agent hierarchy groups for the agent.</p>
|
|
476
476
|
* @public
|
|
477
477
|
*/
|
|
478
|
-
HierarchyGroups?: HierarchyGroups;
|
|
478
|
+
HierarchyGroups?: HierarchyGroups | undefined;
|
|
479
479
|
/**
|
|
480
480
|
* <p>Information regarding Agent’s device.</p>
|
|
481
481
|
* @public
|
|
482
482
|
*/
|
|
483
|
-
DeviceInfo?: DeviceInfo;
|
|
483
|
+
DeviceInfo?: DeviceInfo | undefined;
|
|
484
484
|
/**
|
|
485
485
|
* <p>The configuration for the allowed video and screen sharing capabilities for participants present over the
|
|
486
486
|
* call. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/inapp-calling.html">Set up in-app, web,
|
|
487
487
|
* video calling, and screen sharing capabilities</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
488
488
|
* @public
|
|
489
489
|
*/
|
|
490
|
-
Capabilities?: ParticipantCapabilities;
|
|
490
|
+
Capabilities?: ParticipantCapabilities | undefined;
|
|
491
491
|
}
|
|
492
492
|
/**
|
|
493
493
|
* <p>Contains information for score and potential quality issues for Audio</p>
|
|
@@ -498,7 +498,7 @@ export interface AudioQualityMetricsInfo {
|
|
|
498
498
|
* <p>Number measuring the estimated quality of the media connection.</p>
|
|
499
499
|
* @public
|
|
500
500
|
*/
|
|
501
|
-
QualityScore?: number;
|
|
501
|
+
QualityScore?: number | undefined;
|
|
502
502
|
/**
|
|
503
503
|
* <p>List of potential issues causing degradation of quality on a media connection. If the
|
|
504
504
|
* service did not detect any potential quality issues the list is empty.</p>
|
|
@@ -507,7 +507,7 @@ export interface AudioQualityMetricsInfo {
|
|
|
507
507
|
* </p>
|
|
508
508
|
* @public
|
|
509
509
|
*/
|
|
510
|
-
PotentialQualityIssues?: string[];
|
|
510
|
+
PotentialQualityIssues?: string[] | undefined;
|
|
511
511
|
}
|
|
512
512
|
/**
|
|
513
513
|
* <p>Information about the quality of the Agent's media connection</p>
|
|
@@ -518,7 +518,7 @@ export interface AgentQualityMetrics {
|
|
|
518
518
|
* <p>Information about the audio quality of the Agent</p>
|
|
519
519
|
* @public
|
|
520
520
|
*/
|
|
521
|
-
Audio?: AudioQualityMetricsInfo;
|
|
521
|
+
Audio?: AudioQualityMetricsInfo | undefined;
|
|
522
522
|
}
|
|
523
523
|
/**
|
|
524
524
|
* <p>Can be used to define a list of preferred agents to target the contact to within the queue.
|
|
@@ -531,7 +531,7 @@ export interface AgentsCriteria {
|
|
|
531
531
|
* <p>An object to specify a list of agents, by user ID.</p>
|
|
532
532
|
* @public
|
|
533
533
|
*/
|
|
534
|
-
AgentIds?: string[];
|
|
534
|
+
AgentIds?: string[] | undefined;
|
|
535
535
|
}
|
|
536
536
|
/**
|
|
537
537
|
* @public
|
|
@@ -567,52 +567,52 @@ export interface AgentStatus {
|
|
|
567
567
|
* <p>The Amazon Resource Name (ARN) of the agent status.</p>
|
|
568
568
|
* @public
|
|
569
569
|
*/
|
|
570
|
-
AgentStatusARN?: string;
|
|
570
|
+
AgentStatusARN?: string | undefined;
|
|
571
571
|
/**
|
|
572
572
|
* <p>The identifier of the agent status.</p>
|
|
573
573
|
* @public
|
|
574
574
|
*/
|
|
575
|
-
AgentStatusId?: string;
|
|
575
|
+
AgentStatusId?: string | undefined;
|
|
576
576
|
/**
|
|
577
577
|
* <p>The name of the agent status.</p>
|
|
578
578
|
* @public
|
|
579
579
|
*/
|
|
580
|
-
Name?: string;
|
|
580
|
+
Name?: string | undefined;
|
|
581
581
|
/**
|
|
582
582
|
* <p>The description of the agent status.</p>
|
|
583
583
|
* @public
|
|
584
584
|
*/
|
|
585
|
-
Description?: string;
|
|
585
|
+
Description?: string | undefined;
|
|
586
586
|
/**
|
|
587
587
|
* <p>The type of agent status.</p>
|
|
588
588
|
* @public
|
|
589
589
|
*/
|
|
590
|
-
Type?: AgentStatusType;
|
|
590
|
+
Type?: AgentStatusType | undefined;
|
|
591
591
|
/**
|
|
592
592
|
* <p>The display order of the agent status.</p>
|
|
593
593
|
* @public
|
|
594
594
|
*/
|
|
595
|
-
DisplayOrder?: number;
|
|
595
|
+
DisplayOrder?: number | undefined;
|
|
596
596
|
/**
|
|
597
597
|
* <p>The state of the agent status.</p>
|
|
598
598
|
* @public
|
|
599
599
|
*/
|
|
600
|
-
State?: AgentStatusState;
|
|
600
|
+
State?: AgentStatusState | undefined;
|
|
601
601
|
/**
|
|
602
602
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
603
603
|
* @public
|
|
604
604
|
*/
|
|
605
|
-
Tags?: Record<string, string
|
|
605
|
+
Tags?: Record<string, string> | undefined;
|
|
606
606
|
/**
|
|
607
607
|
* <p>The timestamp when this resource was last modified.</p>
|
|
608
608
|
* @public
|
|
609
609
|
*/
|
|
610
|
-
LastModifiedTime?: Date;
|
|
610
|
+
LastModifiedTime?: Date | undefined;
|
|
611
611
|
/**
|
|
612
612
|
* <p>The Amazon Web Services Region where this resource was last modified.</p>
|
|
613
613
|
* @public
|
|
614
614
|
*/
|
|
615
|
-
LastModifiedRegion?: string;
|
|
615
|
+
LastModifiedRegion?: string | undefined;
|
|
616
616
|
}
|
|
617
617
|
/**
|
|
618
618
|
* <p>Information about the agent's status.</p>
|
|
@@ -623,17 +623,17 @@ export interface AgentStatusReference {
|
|
|
623
623
|
* <p>The start timestamp of the agent's status.</p>
|
|
624
624
|
* @public
|
|
625
625
|
*/
|
|
626
|
-
StatusStartTimestamp?: Date;
|
|
626
|
+
StatusStartTimestamp?: Date | undefined;
|
|
627
627
|
/**
|
|
628
628
|
* <p>The Amazon Resource Name (ARN) of the agent's status.</p>
|
|
629
629
|
* @public
|
|
630
630
|
*/
|
|
631
|
-
StatusArn?: string;
|
|
631
|
+
StatusArn?: string | undefined;
|
|
632
632
|
/**
|
|
633
633
|
* <p>The name of the agent status.</p>
|
|
634
634
|
* @public
|
|
635
635
|
*/
|
|
636
|
-
StatusName?: string;
|
|
636
|
+
StatusName?: string | undefined;
|
|
637
637
|
}
|
|
638
638
|
/**
|
|
639
639
|
* @public
|
|
@@ -657,17 +657,17 @@ export interface StringCondition {
|
|
|
657
657
|
* <p>The name of the field in the string condition.</p>
|
|
658
658
|
* @public
|
|
659
659
|
*/
|
|
660
|
-
FieldName?: string;
|
|
660
|
+
FieldName?: string | undefined;
|
|
661
661
|
/**
|
|
662
662
|
* <p>The value of the string.</p>
|
|
663
663
|
* @public
|
|
664
664
|
*/
|
|
665
|
-
Value?: string;
|
|
665
|
+
Value?: string | undefined;
|
|
666
666
|
/**
|
|
667
667
|
* <p>The type of comparison to be made when evaluating the string condition.</p>
|
|
668
668
|
* @public
|
|
669
669
|
*/
|
|
670
|
-
ComparisonType?: StringComparisonType;
|
|
670
|
+
ComparisonType?: StringComparisonType | undefined;
|
|
671
671
|
}
|
|
672
672
|
/**
|
|
673
673
|
* <p>A leaf node condition which can be used to specify a tag condition, for example, <code>HAVE
|
|
@@ -679,12 +679,12 @@ export interface TagCondition {
|
|
|
679
679
|
* <p>The tag key in the tag condition.</p>
|
|
680
680
|
* @public
|
|
681
681
|
*/
|
|
682
|
-
TagKey?: string;
|
|
682
|
+
TagKey?: string | undefined;
|
|
683
683
|
/**
|
|
684
684
|
* <p>The tag value in the tag condition.</p>
|
|
685
685
|
* @public
|
|
686
686
|
*/
|
|
687
|
-
TagValue?: string;
|
|
687
|
+
TagValue?: string | undefined;
|
|
688
688
|
}
|
|
689
689
|
/**
|
|
690
690
|
* <p>A list of conditions which would be applied together with an <code>AND</code>
|
|
@@ -696,7 +696,7 @@ export interface CommonAttributeAndCondition {
|
|
|
696
696
|
* <p>A leaf node condition which can be used to specify a tag condition.</p>
|
|
697
697
|
* @public
|
|
698
698
|
*/
|
|
699
|
-
TagConditions?: TagCondition[];
|
|
699
|
+
TagConditions?: TagCondition[] | undefined;
|
|
700
700
|
}
|
|
701
701
|
/**
|
|
702
702
|
* <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>.
|
|
@@ -719,19 +719,19 @@ export interface ControlPlaneAttributeFilter {
|
|
|
719
719
|
* condition.</p>
|
|
720
720
|
* @public
|
|
721
721
|
*/
|
|
722
|
-
OrConditions?: CommonAttributeAndCondition[];
|
|
722
|
+
OrConditions?: CommonAttributeAndCondition[] | undefined;
|
|
723
723
|
/**
|
|
724
724
|
* <p>A list of conditions which would be applied together with an <code>AND</code>
|
|
725
725
|
* condition.</p>
|
|
726
726
|
* @public
|
|
727
727
|
*/
|
|
728
|
-
AndCondition?: CommonAttributeAndCondition;
|
|
728
|
+
AndCondition?: CommonAttributeAndCondition | undefined;
|
|
729
729
|
/**
|
|
730
730
|
* <p>A leaf node condition which can be used to specify a tag condition, for example, <code>HAVE
|
|
731
731
|
* BPO = 123</code>. </p>
|
|
732
732
|
* @public
|
|
733
733
|
*/
|
|
734
|
-
TagCondition?: TagCondition;
|
|
734
|
+
TagCondition?: TagCondition | undefined;
|
|
735
735
|
}
|
|
736
736
|
/**
|
|
737
737
|
* <p>Filters to be applied to search results.</p>
|
|
@@ -753,7 +753,7 @@ export interface AgentStatusSearchFilter {
|
|
|
753
753
|
* </ul>
|
|
754
754
|
* @public
|
|
755
755
|
*/
|
|
756
|
-
AttributeFilter?: ControlPlaneAttributeFilter;
|
|
756
|
+
AttributeFilter?: ControlPlaneAttributeFilter | undefined;
|
|
757
757
|
}
|
|
758
758
|
/**
|
|
759
759
|
* <p>Summary information for an agent status.</p>
|
|
@@ -764,32 +764,32 @@ export interface AgentStatusSummary {
|
|
|
764
764
|
* <p>The identifier for an agent status.</p>
|
|
765
765
|
* @public
|
|
766
766
|
*/
|
|
767
|
-
Id?: string;
|
|
767
|
+
Id?: string | undefined;
|
|
768
768
|
/**
|
|
769
769
|
* <p>The Amazon Resource Name (ARN) for the agent status.</p>
|
|
770
770
|
* @public
|
|
771
771
|
*/
|
|
772
|
-
Arn?: string;
|
|
772
|
+
Arn?: string | undefined;
|
|
773
773
|
/**
|
|
774
774
|
* <p>The name of the agent status.</p>
|
|
775
775
|
* @public
|
|
776
776
|
*/
|
|
777
|
-
Name?: string;
|
|
777
|
+
Name?: string | undefined;
|
|
778
778
|
/**
|
|
779
779
|
* <p>The type of the agent status.</p>
|
|
780
780
|
* @public
|
|
781
781
|
*/
|
|
782
|
-
Type?: AgentStatusType;
|
|
782
|
+
Type?: AgentStatusType | undefined;
|
|
783
783
|
/**
|
|
784
784
|
* <p>The timestamp when this resource was last modified.</p>
|
|
785
785
|
* @public
|
|
786
786
|
*/
|
|
787
|
-
LastModifiedTime?: Date;
|
|
787
|
+
LastModifiedTime?: Date | undefined;
|
|
788
788
|
/**
|
|
789
789
|
* <p>The Amazon Web Services Region where this resource was last modified.</p>
|
|
790
790
|
* @public
|
|
791
791
|
*/
|
|
792
|
-
LastModifiedRegion?: string;
|
|
792
|
+
LastModifiedRegion?: string | undefined;
|
|
793
793
|
}
|
|
794
794
|
/**
|
|
795
795
|
* <p>Information about the capabilities enabled for participants of the contact.</p>
|
|
@@ -800,12 +800,12 @@ export interface AllowedCapabilities {
|
|
|
800
800
|
* <p>Information about the customer's video sharing capabilities.</p>
|
|
801
801
|
* @public
|
|
802
802
|
*/
|
|
803
|
-
Customer?: ParticipantCapabilities;
|
|
803
|
+
Customer?: ParticipantCapabilities | undefined;
|
|
804
804
|
/**
|
|
805
805
|
* <p>Information about the agent's video sharing capabilities.</p>
|
|
806
806
|
* @public
|
|
807
807
|
*/
|
|
808
|
-
Agent?: ParticipantCapabilities;
|
|
808
|
+
Agent?: ParticipantCapabilities | undefined;
|
|
809
809
|
}
|
|
810
810
|
/**
|
|
811
811
|
* @public
|
|
@@ -838,7 +838,7 @@ export interface AssociateAnalyticsDataSetRequest {
|
|
|
838
838
|
* the Amazon Connect instance. If not specified, by default this value is the Amazon Web Services account that has the Amazon Connect instance.</p>
|
|
839
839
|
* @public
|
|
840
840
|
*/
|
|
841
|
-
TargetAccountId?: string;
|
|
841
|
+
TargetAccountId?: string | undefined;
|
|
842
842
|
}
|
|
843
843
|
/**
|
|
844
844
|
* @public
|
|
@@ -848,22 +848,22 @@ export interface AssociateAnalyticsDataSetResponse {
|
|
|
848
848
|
* <p>The identifier of the dataset that was associated.</p>
|
|
849
849
|
* @public
|
|
850
850
|
*/
|
|
851
|
-
DataSetId?: string;
|
|
851
|
+
DataSetId?: string | undefined;
|
|
852
852
|
/**
|
|
853
853
|
* <p>The identifier of the target account. </p>
|
|
854
854
|
* @public
|
|
855
855
|
*/
|
|
856
|
-
TargetAccountId?: string;
|
|
856
|
+
TargetAccountId?: string | undefined;
|
|
857
857
|
/**
|
|
858
858
|
* <p>The Resource Access Manager share ID that is generated.</p>
|
|
859
859
|
* @public
|
|
860
860
|
*/
|
|
861
|
-
ResourceShareId?: string;
|
|
861
|
+
ResourceShareId?: string | undefined;
|
|
862
862
|
/**
|
|
863
863
|
* <p>The Amazon Resource Name (ARN) of the Resource Access Manager share. </p>
|
|
864
864
|
* @public
|
|
865
865
|
*/
|
|
866
|
-
ResourceShareArn?: string;
|
|
866
|
+
ResourceShareArn?: string | undefined;
|
|
867
867
|
}
|
|
868
868
|
/**
|
|
869
869
|
* @public
|
|
@@ -919,12 +919,12 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
919
919
|
* <p>The message about the request.</p>
|
|
920
920
|
* @public
|
|
921
921
|
*/
|
|
922
|
-
Message?: string;
|
|
922
|
+
Message?: string | undefined;
|
|
923
923
|
/**
|
|
924
924
|
* <p>Reason why the request was invalid.</p>
|
|
925
925
|
* @public
|
|
926
926
|
*/
|
|
927
|
-
Reason?: InvalidRequestExceptionReason;
|
|
927
|
+
Reason?: InvalidRequestExceptionReason | undefined;
|
|
928
928
|
/**
|
|
929
929
|
* @internal
|
|
930
930
|
*/
|
|
@@ -952,7 +952,7 @@ export interface AssociateApprovedOriginRequest {
|
|
|
952
952
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
953
953
|
readonly name: "ServiceQuotaExceededException";
|
|
954
954
|
readonly $fault: "client";
|
|
955
|
-
Message?: string;
|
|
955
|
+
Message?: string | undefined;
|
|
956
956
|
/**
|
|
957
957
|
* @internal
|
|
958
958
|
*/
|
|
@@ -983,7 +983,7 @@ export interface LexV2Bot {
|
|
|
983
983
|
* <p>The Amazon Resource Name (ARN) of the Amazon Lex V2 bot.</p>
|
|
984
984
|
* @public
|
|
985
985
|
*/
|
|
986
|
-
AliasArn?: string;
|
|
986
|
+
AliasArn?: string | undefined;
|
|
987
987
|
}
|
|
988
988
|
/**
|
|
989
989
|
* @public
|
|
@@ -998,12 +998,12 @@ export interface AssociateBotRequest {
|
|
|
998
998
|
* <p>Configuration information of an Amazon Lex bot.</p>
|
|
999
999
|
* @public
|
|
1000
1000
|
*/
|
|
1001
|
-
LexBot?: LexBot;
|
|
1001
|
+
LexBot?: LexBot | undefined;
|
|
1002
1002
|
/**
|
|
1003
1003
|
* <p>The Amazon Lex V2 bot to associate with the instance.</p>
|
|
1004
1004
|
* @public
|
|
1005
1005
|
*/
|
|
1006
|
-
LexV2Bot?: LexV2Bot;
|
|
1006
|
+
LexV2Bot?: LexV2Bot | undefined;
|
|
1007
1007
|
}
|
|
1008
1008
|
/**
|
|
1009
1009
|
* <p>The allowed limit for the resource has been exceeded.</p>
|
|
@@ -1016,7 +1016,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
1016
1016
|
* <p>The message about the limit.</p>
|
|
1017
1017
|
* @public
|
|
1018
1018
|
*/
|
|
1019
|
-
Message?: string;
|
|
1019
|
+
Message?: string | undefined;
|
|
1020
1020
|
/**
|
|
1021
1021
|
* @internal
|
|
1022
1022
|
*/
|
|
@@ -1085,7 +1085,7 @@ export interface AssociateDefaultVocabularyRequest {
|
|
|
1085
1085
|
* <p>The identifier of the custom vocabulary. If this is empty, the default is set to none.</p>
|
|
1086
1086
|
* @public
|
|
1087
1087
|
*/
|
|
1088
|
-
VocabularyId?: string;
|
|
1088
|
+
VocabularyId?: string | undefined;
|
|
1089
1089
|
}
|
|
1090
1090
|
/**
|
|
1091
1091
|
* @public
|
|
@@ -1253,7 +1253,7 @@ export interface S3Config {
|
|
|
1253
1253
|
* <p>The Amazon S3 encryption configuration.</p>
|
|
1254
1254
|
* @public
|
|
1255
1255
|
*/
|
|
1256
|
-
EncryptionConfig?: EncryptionConfig;
|
|
1256
|
+
EncryptionConfig?: EncryptionConfig | undefined;
|
|
1257
1257
|
}
|
|
1258
1258
|
/**
|
|
1259
1259
|
* @public
|
|
@@ -1278,7 +1278,7 @@ export interface InstanceStorageConfig {
|
|
|
1278
1278
|
* <p>The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.</p>
|
|
1279
1279
|
* @public
|
|
1280
1280
|
*/
|
|
1281
|
-
AssociationId?: string;
|
|
1281
|
+
AssociationId?: string | undefined;
|
|
1282
1282
|
/**
|
|
1283
1283
|
* <p>A valid storage type.</p>
|
|
1284
1284
|
* @public
|
|
@@ -1289,22 +1289,22 @@ export interface InstanceStorageConfig {
|
|
|
1289
1289
|
* configuration.</p>
|
|
1290
1290
|
* @public
|
|
1291
1291
|
*/
|
|
1292
|
-
S3Config?: S3Config;
|
|
1292
|
+
S3Config?: S3Config | undefined;
|
|
1293
1293
|
/**
|
|
1294
1294
|
* <p>The configuration of the Kinesis video stream.</p>
|
|
1295
1295
|
* @public
|
|
1296
1296
|
*/
|
|
1297
|
-
KinesisVideoStreamConfig?: KinesisVideoStreamConfig;
|
|
1297
|
+
KinesisVideoStreamConfig?: KinesisVideoStreamConfig | undefined;
|
|
1298
1298
|
/**
|
|
1299
1299
|
* <p>The configuration of the Kinesis data stream.</p>
|
|
1300
1300
|
* @public
|
|
1301
1301
|
*/
|
|
1302
|
-
KinesisStreamConfig?: KinesisStreamConfig;
|
|
1302
|
+
KinesisStreamConfig?: KinesisStreamConfig | undefined;
|
|
1303
1303
|
/**
|
|
1304
1304
|
* <p>The configuration of the Kinesis Firehose delivery stream.</p>
|
|
1305
1305
|
* @public
|
|
1306
1306
|
*/
|
|
1307
|
-
KinesisFirehoseConfig?: KinesisFirehoseConfig;
|
|
1307
|
+
KinesisFirehoseConfig?: KinesisFirehoseConfig | undefined;
|
|
1308
1308
|
}
|
|
1309
1309
|
/**
|
|
1310
1310
|
* @public
|
|
@@ -1353,7 +1353,7 @@ export interface AssociateInstanceStorageConfigResponse {
|
|
|
1353
1353
|
* <p>The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.</p>
|
|
1354
1354
|
* @public
|
|
1355
1355
|
*/
|
|
1356
|
-
AssociationId?: string;
|
|
1356
|
+
AssociationId?: string | undefined;
|
|
1357
1357
|
}
|
|
1358
1358
|
/**
|
|
1359
1359
|
* @public
|
|
@@ -1512,7 +1512,7 @@ export interface AssociateSecurityKeyResponse {
|
|
|
1512
1512
|
* <p>The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.</p>
|
|
1513
1513
|
* @public
|
|
1514
1514
|
*/
|
|
1515
|
-
AssociationId?: string;
|
|
1515
|
+
AssociationId?: string | undefined;
|
|
1516
1516
|
}
|
|
1517
1517
|
/**
|
|
1518
1518
|
* @public
|
|
@@ -1603,7 +1603,7 @@ export interface BatchAssociateAnalyticsDataSetRequest {
|
|
|
1603
1603
|
* the Amazon Connect instance. If not specified, by default this value is the Amazon Web Services account that has the Amazon Connect instance.</p>
|
|
1604
1604
|
* @public
|
|
1605
1605
|
*/
|
|
1606
|
-
TargetAccountId?: string;
|
|
1606
|
+
TargetAccountId?: string | undefined;
|
|
1607
1607
|
}
|
|
1608
1608
|
/**
|
|
1609
1609
|
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
@@ -1617,22 +1617,22 @@ export interface AnalyticsDataAssociationResult {
|
|
|
1617
1617
|
* <p>The identifier of the dataset.</p>
|
|
1618
1618
|
* @public
|
|
1619
1619
|
*/
|
|
1620
|
-
DataSetId?: string;
|
|
1620
|
+
DataSetId?: string | undefined;
|
|
1621
1621
|
/**
|
|
1622
1622
|
* <p>The identifier of the target account. </p>
|
|
1623
1623
|
* @public
|
|
1624
1624
|
*/
|
|
1625
|
-
TargetAccountId?: string;
|
|
1625
|
+
TargetAccountId?: string | undefined;
|
|
1626
1626
|
/**
|
|
1627
1627
|
* <p>The Resource Access Manager share ID.</p>
|
|
1628
1628
|
* @public
|
|
1629
1629
|
*/
|
|
1630
|
-
ResourceShareId?: string;
|
|
1630
|
+
ResourceShareId?: string | undefined;
|
|
1631
1631
|
/**
|
|
1632
1632
|
* <p>The Amazon Resource Name (ARN) of the Resource Access Manager share. </p>
|
|
1633
1633
|
* @public
|
|
1634
1634
|
*/
|
|
1635
|
-
ResourceShareArn?: string;
|
|
1635
|
+
ResourceShareArn?: string | undefined;
|
|
1636
1636
|
}
|
|
1637
1637
|
/**
|
|
1638
1638
|
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
@@ -1644,12 +1644,12 @@ export interface ErrorResult {
|
|
|
1644
1644
|
* <p>The error code.</p>
|
|
1645
1645
|
* @public
|
|
1646
1646
|
*/
|
|
1647
|
-
ErrorCode?: string;
|
|
1647
|
+
ErrorCode?: string | undefined;
|
|
1648
1648
|
/**
|
|
1649
1649
|
* <p>The corresponding error message for the error code.</p>
|
|
1650
1650
|
* @public
|
|
1651
1651
|
*/
|
|
1652
|
-
ErrorMessage?: string;
|
|
1652
|
+
ErrorMessage?: string | undefined;
|
|
1653
1653
|
}
|
|
1654
1654
|
/**
|
|
1655
1655
|
* @public
|
|
@@ -1661,13 +1661,13 @@ export interface BatchAssociateAnalyticsDataSetResponse {
|
|
|
1661
1661
|
* <code>ResourceShareArn</code>. </p>
|
|
1662
1662
|
* @public
|
|
1663
1663
|
*/
|
|
1664
|
-
Created?: AnalyticsDataAssociationResult[];
|
|
1664
|
+
Created?: AnalyticsDataAssociationResult[] | undefined;
|
|
1665
1665
|
/**
|
|
1666
1666
|
* <p>A list of errors for datasets that aren't successfully associated with the target
|
|
1667
1667
|
* account.</p>
|
|
1668
1668
|
* @public
|
|
1669
1669
|
*/
|
|
1670
|
-
Errors?: ErrorResult[];
|
|
1670
|
+
Errors?: ErrorResult[] | undefined;
|
|
1671
1671
|
}
|
|
1672
1672
|
/**
|
|
1673
1673
|
* @public
|
|
@@ -1688,7 +1688,7 @@ export interface BatchDisassociateAnalyticsDataSetRequest {
|
|
|
1688
1688
|
* the Amazon Connect instance. If not specified, by default this value is the Amazon Web Services account that has the Amazon Connect instance.</p>
|
|
1689
1689
|
* @public
|
|
1690
1690
|
*/
|
|
1691
|
-
TargetAccountId?: string;
|
|
1691
|
+
TargetAccountId?: string | undefined;
|
|
1692
1692
|
}
|
|
1693
1693
|
/**
|
|
1694
1694
|
* @public
|
|
@@ -1698,12 +1698,12 @@ export interface BatchDisassociateAnalyticsDataSetResponse {
|
|
|
1698
1698
|
* <p>An array of successfully disassociated dataset identifiers.</p>
|
|
1699
1699
|
* @public
|
|
1700
1700
|
*/
|
|
1701
|
-
Deleted?: string[];
|
|
1701
|
+
Deleted?: string[] | undefined;
|
|
1702
1702
|
/**
|
|
1703
1703
|
* <p>A list of errors for any datasets not successfully removed.</p>
|
|
1704
1704
|
* @public
|
|
1705
1705
|
*/
|
|
1706
|
-
Errors?: ErrorResult[];
|
|
1706
|
+
Errors?: ErrorResult[] | undefined;
|
|
1707
1707
|
}
|
|
1708
1708
|
/**
|
|
1709
1709
|
* @public
|
|
@@ -1739,17 +1739,17 @@ export interface AttachedFileError {
|
|
|
1739
1739
|
* <p> Status code describing the failure. </p>
|
|
1740
1740
|
* @public
|
|
1741
1741
|
*/
|
|
1742
|
-
ErrorCode?: string;
|
|
1742
|
+
ErrorCode?: string | undefined;
|
|
1743
1743
|
/**
|
|
1744
1744
|
* <p>Why the attached file couldn't be retrieved. </p>
|
|
1745
1745
|
* @public
|
|
1746
1746
|
*/
|
|
1747
|
-
ErrorMessage?: string;
|
|
1747
|
+
ErrorMessage?: string | undefined;
|
|
1748
1748
|
/**
|
|
1749
1749
|
* <p>The unique identifier of the attached file resource.</p>
|
|
1750
1750
|
* @public
|
|
1751
1751
|
*/
|
|
1752
|
-
FileId?: string;
|
|
1752
|
+
FileId?: string | undefined;
|
|
1753
1753
|
}
|
|
1754
1754
|
/**
|
|
1755
1755
|
* <p>Information on the identity that created the file.</p>
|
|
@@ -1860,12 +1860,12 @@ export interface AttachedFile {
|
|
|
1860
1860
|
* <p>Represents the identity that created the file.</p>
|
|
1861
1861
|
* @public
|
|
1862
1862
|
*/
|
|
1863
|
-
CreatedBy?: CreatedByInfo;
|
|
1863
|
+
CreatedBy?: CreatedByInfo | undefined;
|
|
1864
1864
|
/**
|
|
1865
1865
|
* <p>The use case for the file.</p>
|
|
1866
1866
|
* @public
|
|
1867
1867
|
*/
|
|
1868
|
-
FileUseCaseType?: FileUseCaseType;
|
|
1868
|
+
FileUseCaseType?: FileUseCaseType | undefined;
|
|
1869
1869
|
/**
|
|
1870
1870
|
* <p>The resource to which the attached file is (being) uploaded to. <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateCase.html">Cases</a> are the only
|
|
1871
1871
|
* current supported resource.</p>
|
|
@@ -1874,13 +1874,13 @@ export interface AttachedFile {
|
|
|
1874
1874
|
* </note>
|
|
1875
1875
|
* @public
|
|
1876
1876
|
*/
|
|
1877
|
-
AssociatedResourceArn?: string;
|
|
1877
|
+
AssociatedResourceArn?: string | undefined;
|
|
1878
1878
|
/**
|
|
1879
1879
|
* <p>The tags used to organize, track, or control access for this resource. For example, <code>\{
|
|
1880
1880
|
* "Tags": \{"key1":"value1", "key2":"value2"\} \}</code>.</p>
|
|
1881
1881
|
* @public
|
|
1882
1882
|
*/
|
|
1883
|
-
Tags?: Record<string, string
|
|
1883
|
+
Tags?: Record<string, string> | undefined;
|
|
1884
1884
|
}
|
|
1885
1885
|
/**
|
|
1886
1886
|
* @public
|
|
@@ -1890,12 +1890,12 @@ export interface BatchGetAttachedFileMetadataResponse {
|
|
|
1890
1890
|
* <p>List of attached files that were successfully retrieved. </p>
|
|
1891
1891
|
* @public
|
|
1892
1892
|
*/
|
|
1893
|
-
Files?: AttachedFile[];
|
|
1893
|
+
Files?: AttachedFile[] | undefined;
|
|
1894
1894
|
/**
|
|
1895
1895
|
* <p>List of errors of attached files that could not be retrieved. </p>
|
|
1896
1896
|
* @public
|
|
1897
1897
|
*/
|
|
1898
|
-
Errors?: AttachedFileError[];
|
|
1898
|
+
Errors?: AttachedFileError[] | undefined;
|
|
1899
1899
|
}
|
|
1900
1900
|
/**
|
|
1901
1901
|
* @public
|
|
@@ -1926,7 +1926,7 @@ export interface BatchGetFlowAssociationRequest {
|
|
|
1926
1926
|
* <p>The type of resource association.</p>
|
|
1927
1927
|
* @public
|
|
1928
1928
|
*/
|
|
1929
|
-
ResourceType?: ListFlowAssociationResourceType;
|
|
1929
|
+
ResourceType?: ListFlowAssociationResourceType | undefined;
|
|
1930
1930
|
}
|
|
1931
1931
|
/**
|
|
1932
1932
|
* <p>Information about flow associations.</p>
|
|
@@ -1937,17 +1937,17 @@ export interface FlowAssociationSummary {
|
|
|
1937
1937
|
* <p>The identifier of the resource.</p>
|
|
1938
1938
|
* @public
|
|
1939
1939
|
*/
|
|
1940
|
-
ResourceId?: string;
|
|
1940
|
+
ResourceId?: string | undefined;
|
|
1941
1941
|
/**
|
|
1942
1942
|
* <p>The identifier of the flow.</p>
|
|
1943
1943
|
* @public
|
|
1944
1944
|
*/
|
|
1945
|
-
FlowId?: string;
|
|
1945
|
+
FlowId?: string | undefined;
|
|
1946
1946
|
/**
|
|
1947
1947
|
* <p>The type of resource association.</p>
|
|
1948
1948
|
* @public
|
|
1949
1949
|
*/
|
|
1950
|
-
ResourceType?: ListFlowAssociationResourceType;
|
|
1950
|
+
ResourceType?: ListFlowAssociationResourceType | undefined;
|
|
1951
1951
|
}
|
|
1952
1952
|
/**
|
|
1953
1953
|
* @public
|
|
@@ -1957,7 +1957,7 @@ export interface BatchGetFlowAssociationResponse {
|
|
|
1957
1957
|
* <p>Information about flow associations.</p>
|
|
1958
1958
|
* @public
|
|
1959
1959
|
*/
|
|
1960
|
-
FlowAssociationSummaryList?: FlowAssociationSummary[];
|
|
1960
|
+
FlowAssociationSummaryList?: FlowAssociationSummary[] | undefined;
|
|
1961
1961
|
}
|
|
1962
1962
|
/**
|
|
1963
1963
|
* <p>Information associated with a campaign.</p>
|
|
@@ -1968,7 +1968,7 @@ export interface Campaign {
|
|
|
1968
1968
|
* <p>A unique identifier for a campaign.</p>
|
|
1969
1969
|
* @public
|
|
1970
1970
|
*/
|
|
1971
|
-
CampaignId?: string;
|
|
1971
|
+
CampaignId?: string | undefined;
|
|
1972
1972
|
}
|
|
1973
1973
|
/**
|
|
1974
1974
|
* @public
|
|
@@ -1993,12 +1993,12 @@ export interface Endpoint {
|
|
|
1993
1993
|
* <p>Type of the endpoint.</p>
|
|
1994
1994
|
* @public
|
|
1995
1995
|
*/
|
|
1996
|
-
Type?: EndpointType;
|
|
1996
|
+
Type?: EndpointType | undefined;
|
|
1997
1997
|
/**
|
|
1998
1998
|
* <p>Address of the endpoint.</p>
|
|
1999
1999
|
* @public
|
|
2000
2000
|
*/
|
|
2001
|
-
Address?: string;
|
|
2001
|
+
Address?: string | undefined;
|
|
2002
2002
|
}
|
|
2003
2003
|
/**
|
|
2004
2004
|
* <p>Request object with information to create a contact.</p>
|
|
@@ -2010,33 +2010,33 @@ export interface ContactDataRequest {
|
|
|
2010
2010
|
* initiated for the campaign.</p>
|
|
2011
2011
|
* @public
|
|
2012
2012
|
*/
|
|
2013
|
-
SystemEndpoint?: Endpoint;
|
|
2013
|
+
SystemEndpoint?: Endpoint | undefined;
|
|
2014
2014
|
/**
|
|
2015
2015
|
* <p>Endpoint of the customer for which contact will be initiated.</p>
|
|
2016
2016
|
* @public
|
|
2017
2017
|
*/
|
|
2018
|
-
CustomerEndpoint?: Endpoint;
|
|
2018
|
+
CustomerEndpoint?: Endpoint | undefined;
|
|
2019
2019
|
/**
|
|
2020
2020
|
* <p>Identifier to uniquely identify individual requests in the batch.</p>
|
|
2021
2021
|
* @public
|
|
2022
2022
|
*/
|
|
2023
|
-
RequestIdentifier?: string;
|
|
2023
|
+
RequestIdentifier?: string | undefined;
|
|
2024
2024
|
/**
|
|
2025
2025
|
* <p>The identifier of the queue associated with the Amazon Connect instance in which
|
|
2026
2026
|
* contacts that are created will be queued.</p>
|
|
2027
2027
|
* @public
|
|
2028
2028
|
*/
|
|
2029
|
-
QueueId?: string;
|
|
2029
|
+
QueueId?: string | undefined;
|
|
2030
2030
|
/**
|
|
2031
2031
|
* <p>List of attributes to be stored in a contact.</p>
|
|
2032
2032
|
* @public
|
|
2033
2033
|
*/
|
|
2034
|
-
Attributes?: Record<string, string
|
|
2034
|
+
Attributes?: Record<string, string> | undefined;
|
|
2035
2035
|
/**
|
|
2036
2036
|
* <p>Structure to store information associated with a campaign.</p>
|
|
2037
2037
|
* @public
|
|
2038
2038
|
*/
|
|
2039
|
-
Campaign?: Campaign;
|
|
2039
|
+
Campaign?: Campaign | undefined;
|
|
2040
2040
|
}
|
|
2041
2041
|
/**
|
|
2042
2042
|
* @public
|
|
@@ -2049,7 +2049,7 @@ export interface BatchPutContactRequest {
|
|
|
2049
2049
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
2050
2050
|
* @public
|
|
2051
2051
|
*/
|
|
2052
|
-
ClientToken?: string;
|
|
2052
|
+
ClientToken?: string | undefined;
|
|
2053
2053
|
/**
|
|
2054
2054
|
* <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>
|
|
2055
2055
|
* @public
|
|
@@ -2091,17 +2091,17 @@ export interface FailedRequest {
|
|
|
2091
2091
|
* contact.</p>
|
|
2092
2092
|
* @public
|
|
2093
2093
|
*/
|
|
2094
|
-
RequestIdentifier?: string;
|
|
2094
|
+
RequestIdentifier?: string | undefined;
|
|
2095
2095
|
/**
|
|
2096
2096
|
* <p>Reason code for the failure.</p>
|
|
2097
2097
|
* @public
|
|
2098
2098
|
*/
|
|
2099
|
-
FailureReasonCode?: FailureReasonCode;
|
|
2099
|
+
FailureReasonCode?: FailureReasonCode | undefined;
|
|
2100
2100
|
/**
|
|
2101
2101
|
* <p>Why the request to create a contact failed.</p>
|
|
2102
2102
|
* @public
|
|
2103
2103
|
*/
|
|
2104
|
-
FailureReasonMessage?: string;
|
|
2104
|
+
FailureReasonMessage?: string | undefined;
|
|
2105
2105
|
}
|
|
2106
2106
|
/**
|
|
2107
2107
|
* <p>Request for which contact was successfully created.</p>
|
|
@@ -2113,12 +2113,12 @@ export interface SuccessfulRequest {
|
|
|
2113
2113
|
* contact.</p>
|
|
2114
2114
|
* @public
|
|
2115
2115
|
*/
|
|
2116
|
-
RequestIdentifier?: string;
|
|
2116
|
+
RequestIdentifier?: string | undefined;
|
|
2117
2117
|
/**
|
|
2118
2118
|
* <p>The contactId of the contact that was created successfully.</p>
|
|
2119
2119
|
* @public
|
|
2120
2120
|
*/
|
|
2121
|
-
ContactId?: string;
|
|
2121
|
+
ContactId?: string | undefined;
|
|
2122
2122
|
}
|
|
2123
2123
|
/**
|
|
2124
2124
|
* @public
|
|
@@ -2128,12 +2128,12 @@ export interface BatchPutContactResponse {
|
|
|
2128
2128
|
* <p>List of requests for which contact was successfully created.</p>
|
|
2129
2129
|
* @public
|
|
2130
2130
|
*/
|
|
2131
|
-
SuccessfulRequestList?: SuccessfulRequest[];
|
|
2131
|
+
SuccessfulRequestList?: SuccessfulRequest[] | undefined;
|
|
2132
2132
|
/**
|
|
2133
2133
|
* <p>List of requests for which contact creation failed.</p>
|
|
2134
2134
|
* @public
|
|
2135
2135
|
*/
|
|
2136
|
-
FailedRequestList?: FailedRequest[];
|
|
2136
|
+
FailedRequestList?: FailedRequest[] | undefined;
|
|
2137
2137
|
}
|
|
2138
2138
|
/**
|
|
2139
2139
|
* <p>An entity with the same name already exists.</p>
|
|
@@ -2142,7 +2142,7 @@ export interface BatchPutContactResponse {
|
|
|
2142
2142
|
export declare class IdempotencyException extends __BaseException {
|
|
2143
2143
|
readonly name: "IdempotencyException";
|
|
2144
2144
|
readonly $fault: "client";
|
|
2145
|
-
Message?: string;
|
|
2145
|
+
Message?: string | undefined;
|
|
2146
2146
|
/**
|
|
2147
2147
|
* @internal
|
|
2148
2148
|
*/
|
|
@@ -2156,14 +2156,14 @@ export interface ClaimPhoneNumberRequest {
|
|
|
2156
2156
|
* <p>The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution groups that phone number inbound traffic is routed through. You must enter <code>InstanceId</code> or <code>TargetArn</code>. </p>
|
|
2157
2157
|
* @public
|
|
2158
2158
|
*/
|
|
2159
|
-
TargetArn?: string;
|
|
2159
|
+
TargetArn?: string | undefined;
|
|
2160
2160
|
/**
|
|
2161
2161
|
* <p>The identifier of the Amazon Connect instance that phone numbers are claimed to. You
|
|
2162
2162
|
* can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the
|
|
2163
2163
|
* instance ID</a> in the Amazon Resource Name (ARN) of the instance. You must enter <code>InstanceId</code> or <code>TargetArn</code>. </p>
|
|
2164
2164
|
* @public
|
|
2165
2165
|
*/
|
|
2166
|
-
InstanceId?: string;
|
|
2166
|
+
InstanceId?: string | undefined;
|
|
2167
2167
|
/**
|
|
2168
2168
|
* <p>The phone number you want to claim. Phone numbers are formatted <code>[+] [country code]
|
|
2169
2169
|
* [subscriber number including area code]</code>.</p>
|
|
@@ -2174,12 +2174,12 @@ export interface ClaimPhoneNumberRequest {
|
|
|
2174
2174
|
* <p>The description of the phone number.</p>
|
|
2175
2175
|
* @public
|
|
2176
2176
|
*/
|
|
2177
|
-
PhoneNumberDescription?: string;
|
|
2177
|
+
PhoneNumberDescription?: string | undefined;
|
|
2178
2178
|
/**
|
|
2179
2179
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
2180
2180
|
* @public
|
|
2181
2181
|
*/
|
|
2182
|
-
Tags?: Record<string, string
|
|
2182
|
+
Tags?: Record<string, string> | undefined;
|
|
2183
2183
|
/**
|
|
2184
2184
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2185
2185
|
* request. If not provided, the Amazon Web Services
|
|
@@ -2189,7 +2189,7 @@ export interface ClaimPhoneNumberRequest {
|
|
|
2189
2189
|
* </p>
|
|
2190
2190
|
* @public
|
|
2191
2191
|
*/
|
|
2192
|
-
ClientToken?: string;
|
|
2192
|
+
ClientToken?: string | undefined;
|
|
2193
2193
|
}
|
|
2194
2194
|
/**
|
|
2195
2195
|
* @public
|
|
@@ -2199,12 +2199,12 @@ export interface ClaimPhoneNumberResponse {
|
|
|
2199
2199
|
* <p>A unique identifier for the phone number.</p>
|
|
2200
2200
|
* @public
|
|
2201
2201
|
*/
|
|
2202
|
-
PhoneNumberId?: string;
|
|
2202
|
+
PhoneNumberId?: string | undefined;
|
|
2203
2203
|
/**
|
|
2204
2204
|
* <p>The Amazon Resource Name (ARN) of the phone number.</p>
|
|
2205
2205
|
* @public
|
|
2206
2206
|
*/
|
|
2207
|
-
PhoneNumberArn?: string;
|
|
2207
|
+
PhoneNumberArn?: string | undefined;
|
|
2208
2208
|
}
|
|
2209
2209
|
/**
|
|
2210
2210
|
* Request to CompleteAttachedFileUpload API
|
|
@@ -2255,7 +2255,7 @@ export interface CreateAgentStatusRequest {
|
|
|
2255
2255
|
* <p>The description of the status.</p>
|
|
2256
2256
|
* @public
|
|
2257
2257
|
*/
|
|
2258
|
-
Description?: string;
|
|
2258
|
+
Description?: string | undefined;
|
|
2259
2259
|
/**
|
|
2260
2260
|
* <p>The state of the status.</p>
|
|
2261
2261
|
* @public
|
|
@@ -2265,12 +2265,12 @@ export interface CreateAgentStatusRequest {
|
|
|
2265
2265
|
* <p>The display order of the status.</p>
|
|
2266
2266
|
* @public
|
|
2267
2267
|
*/
|
|
2268
|
-
DisplayOrder?: number;
|
|
2268
|
+
DisplayOrder?: number | undefined;
|
|
2269
2269
|
/**
|
|
2270
2270
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
2271
2271
|
* @public
|
|
2272
2272
|
*/
|
|
2273
|
-
Tags?: Record<string, string
|
|
2273
|
+
Tags?: Record<string, string> | undefined;
|
|
2274
2274
|
}
|
|
2275
2275
|
/**
|
|
2276
2276
|
* @public
|
|
@@ -2280,12 +2280,12 @@ export interface CreateAgentStatusResponse {
|
|
|
2280
2280
|
* <p>The Amazon Resource Name (ARN) of the agent status.</p>
|
|
2281
2281
|
* @public
|
|
2282
2282
|
*/
|
|
2283
|
-
AgentStatusARN?: string;
|
|
2283
|
+
AgentStatusARN?: string | undefined;
|
|
2284
2284
|
/**
|
|
2285
2285
|
* <p>The identifier of the agent status.</p>
|
|
2286
2286
|
* @public
|
|
2287
2287
|
*/
|
|
2288
|
-
AgentStatusId?: string;
|
|
2288
|
+
AgentStatusId?: string | undefined;
|
|
2289
2289
|
}
|
|
2290
2290
|
/**
|
|
2291
2291
|
* <p>A resource with the specified name already exists.</p>
|
|
@@ -2294,7 +2294,7 @@ export interface CreateAgentStatusResponse {
|
|
|
2294
2294
|
export declare class DuplicateResourceException extends __BaseException {
|
|
2295
2295
|
readonly name: "DuplicateResourceException";
|
|
2296
2296
|
readonly $fault: "client";
|
|
2297
|
-
Message?: string;
|
|
2297
|
+
Message?: string | undefined;
|
|
2298
2298
|
/**
|
|
2299
2299
|
* @internal
|
|
2300
2300
|
*/
|
|
@@ -2355,7 +2355,7 @@ export interface CreateContactFlowRequest {
|
|
|
2355
2355
|
* <p>The description of the flow. </p>
|
|
2356
2356
|
* @public
|
|
2357
2357
|
*/
|
|
2358
|
-
Description?: string;
|
|
2358
|
+
Description?: string | undefined;
|
|
2359
2359
|
/**
|
|
2360
2360
|
* <p>The JSON string that represents the content of the flow. For an example, see <a href="https://docs.aws.amazon.com/connect/latest/APIReference/flow-language-example.html">Example
|
|
2361
2361
|
* flow in Amazon Connect Flow language</a>. </p>
|
|
@@ -2370,12 +2370,12 @@ export interface CreateContactFlowRequest {
|
|
|
2370
2370
|
* <code>PUBLISHED</code>.</p>
|
|
2371
2371
|
* @public
|
|
2372
2372
|
*/
|
|
2373
|
-
Status?: ContactFlowStatus;
|
|
2373
|
+
Status?: ContactFlowStatus | undefined;
|
|
2374
2374
|
/**
|
|
2375
2375
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
2376
2376
|
* @public
|
|
2377
2377
|
*/
|
|
2378
|
-
Tags?: Record<string, string
|
|
2378
|
+
Tags?: Record<string, string> | undefined;
|
|
2379
2379
|
}
|
|
2380
2380
|
/**
|
|
2381
2381
|
* @public
|
|
@@ -2385,12 +2385,12 @@ export interface CreateContactFlowResponse {
|
|
|
2385
2385
|
* <p>The identifier of the flow.</p>
|
|
2386
2386
|
* @public
|
|
2387
2387
|
*/
|
|
2388
|
-
ContactFlowId?: string;
|
|
2388
|
+
ContactFlowId?: string | undefined;
|
|
2389
2389
|
/**
|
|
2390
2390
|
* <p>The Amazon Resource Name (ARN) of the flow.</p>
|
|
2391
2391
|
* @public
|
|
2392
2392
|
*/
|
|
2393
|
-
ContactFlowArn?: string;
|
|
2393
|
+
ContactFlowArn?: string | undefined;
|
|
2394
2394
|
}
|
|
2395
2395
|
/**
|
|
2396
2396
|
* <p>Information about a problem detail.</p>
|
|
@@ -2401,7 +2401,7 @@ export interface ProblemDetail {
|
|
|
2401
2401
|
* <p>The problem detail's message.</p>
|
|
2402
2402
|
* @public
|
|
2403
2403
|
*/
|
|
2404
|
-
message?: string;
|
|
2404
|
+
message?: string | undefined;
|
|
2405
2405
|
}
|
|
2406
2406
|
/**
|
|
2407
2407
|
* <p>The flow is not valid.</p>
|
|
@@ -2414,7 +2414,7 @@ export declare class InvalidContactFlowException extends __BaseException {
|
|
|
2414
2414
|
* <p>The problems with the flow. Please fix before trying again.</p>
|
|
2415
2415
|
* @public
|
|
2416
2416
|
*/
|
|
2417
|
-
problems?: ProblemDetail[];
|
|
2417
|
+
problems?: ProblemDetail[] | undefined;
|
|
2418
2418
|
/**
|
|
2419
2419
|
* @internal
|
|
2420
2420
|
*/
|
|
@@ -2438,7 +2438,7 @@ export interface CreateContactFlowModuleRequest {
|
|
|
2438
2438
|
* <p>The description of the flow module. </p>
|
|
2439
2439
|
* @public
|
|
2440
2440
|
*/
|
|
2441
|
-
Description?: string;
|
|
2441
|
+
Description?: string | undefined;
|
|
2442
2442
|
/**
|
|
2443
2443
|
* <p>The JSON string that represents the content of the flow. For an example, see <a href="https://docs.aws.amazon.com/connect/latest/APIReference/flow-language-example.html">Example
|
|
2444
2444
|
* flow in Amazon Connect Flow language</a>. </p>
|
|
@@ -2449,7 +2449,7 @@ export interface CreateContactFlowModuleRequest {
|
|
|
2449
2449
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
2450
2450
|
* @public
|
|
2451
2451
|
*/
|
|
2452
|
-
Tags?: Record<string, string
|
|
2452
|
+
Tags?: Record<string, string> | undefined;
|
|
2453
2453
|
/**
|
|
2454
2454
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2455
2455
|
* request. If not provided, the Amazon Web Services
|
|
@@ -2457,7 +2457,7 @@ export interface CreateContactFlowModuleRequest {
|
|
|
2457
2457
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
2458
2458
|
* @public
|
|
2459
2459
|
*/
|
|
2460
|
-
ClientToken?: string;
|
|
2460
|
+
ClientToken?: string | undefined;
|
|
2461
2461
|
}
|
|
2462
2462
|
/**
|
|
2463
2463
|
* @public
|
|
@@ -2467,12 +2467,12 @@ export interface CreateContactFlowModuleResponse {
|
|
|
2467
2467
|
* <p>The identifier of the flow module.</p>
|
|
2468
2468
|
* @public
|
|
2469
2469
|
*/
|
|
2470
|
-
Id?: string;
|
|
2470
|
+
Id?: string | undefined;
|
|
2471
2471
|
/**
|
|
2472
2472
|
* <p>The Amazon Resource Name (ARN) of the flow module.</p>
|
|
2473
2473
|
* @public
|
|
2474
2474
|
*/
|
|
2475
|
-
Arn?: string;
|
|
2475
|
+
Arn?: string | undefined;
|
|
2476
2476
|
}
|
|
2477
2477
|
/**
|
|
2478
2478
|
* <p>The problems with the module. Please fix before trying again.</p>
|
|
@@ -2481,7 +2481,7 @@ export interface CreateContactFlowModuleResponse {
|
|
|
2481
2481
|
export declare class InvalidContactFlowModuleException extends __BaseException {
|
|
2482
2482
|
readonly name: "InvalidContactFlowModuleException";
|
|
2483
2483
|
readonly $fault: "client";
|
|
2484
|
-
Problems?: ProblemDetail[];
|
|
2484
|
+
Problems?: ProblemDetail[] | undefined;
|
|
2485
2485
|
/**
|
|
2486
2486
|
* @internal
|
|
2487
2487
|
*/
|
|
@@ -2597,13 +2597,13 @@ export interface EvaluationFormNumericQuestionOption {
|
|
|
2597
2597
|
* <p>The score assigned to answer values within the range option.</p>
|
|
2598
2598
|
* @public
|
|
2599
2599
|
*/
|
|
2600
|
-
Score?: number;
|
|
2600
|
+
Score?: number | undefined;
|
|
2601
2601
|
/**
|
|
2602
2602
|
* <p>The flag to mark the option as automatic fail. If an automatic fail answer is provided, the
|
|
2603
2603
|
* overall evaluation gets a score of 0.</p>
|
|
2604
2604
|
* @public
|
|
2605
2605
|
*/
|
|
2606
|
-
AutomaticFail?: boolean;
|
|
2606
|
+
AutomaticFail?: boolean | undefined;
|
|
2607
2607
|
}
|
|
2608
2608
|
/**
|
|
2609
2609
|
* <p>Information about properties for a numeric question in an evaluation form.</p>
|
|
@@ -2624,12 +2624,12 @@ export interface EvaluationFormNumericQuestionProperties {
|
|
|
2624
2624
|
* <p>The scoring options of the numeric question.</p>
|
|
2625
2625
|
* @public
|
|
2626
2626
|
*/
|
|
2627
|
-
Options?: EvaluationFormNumericQuestionOption[];
|
|
2627
|
+
Options?: EvaluationFormNumericQuestionOption[] | undefined;
|
|
2628
2628
|
/**
|
|
2629
2629
|
* <p>The automation properties of the numeric question.</p>
|
|
2630
2630
|
* @public
|
|
2631
2631
|
*/
|
|
2632
|
-
Automation?: EvaluationFormNumericQuestionAutomation;
|
|
2632
|
+
Automation?: EvaluationFormNumericQuestionAutomation | undefined;
|
|
2633
2633
|
}
|
|
2634
2634
|
/**
|
|
2635
2635
|
* @public
|
|
@@ -2715,7 +2715,7 @@ export interface EvaluationFormSingleSelectQuestionAutomation {
|
|
|
2715
2715
|
* criteria.</p>
|
|
2716
2716
|
* @public
|
|
2717
2717
|
*/
|
|
2718
|
-
DefaultOptionRefId?: string;
|
|
2718
|
+
DefaultOptionRefId?: string | undefined;
|
|
2719
2719
|
}
|
|
2720
2720
|
/**
|
|
2721
2721
|
* @public
|
|
@@ -2749,13 +2749,13 @@ export interface EvaluationFormSingleSelectQuestionOption {
|
|
|
2749
2749
|
* <p>The score assigned to the answer option.</p>
|
|
2750
2750
|
* @public
|
|
2751
2751
|
*/
|
|
2752
|
-
Score?: number;
|
|
2752
|
+
Score?: number | undefined;
|
|
2753
2753
|
/**
|
|
2754
2754
|
* <p>The flag to mark the option as automatic fail. If an automatic fail answer is provided, the
|
|
2755
2755
|
* overall evaluation gets a score of 0.</p>
|
|
2756
2756
|
* @public
|
|
2757
2757
|
*/
|
|
2758
|
-
AutomaticFail?: boolean;
|
|
2758
|
+
AutomaticFail?: boolean | undefined;
|
|
2759
2759
|
}
|
|
2760
2760
|
/**
|
|
2761
2761
|
* <p>Information about the options in single select questions.</p>
|
|
@@ -2771,12 +2771,12 @@ export interface EvaluationFormSingleSelectQuestionProperties {
|
|
|
2771
2771
|
* <p>The display mode of the single select question.</p>
|
|
2772
2772
|
* @public
|
|
2773
2773
|
*/
|
|
2774
|
-
DisplayAs?: EvaluationFormSingleSelectQuestionDisplayMode;
|
|
2774
|
+
DisplayAs?: EvaluationFormSingleSelectQuestionDisplayMode | undefined;
|
|
2775
2775
|
/**
|
|
2776
2776
|
* <p>The display mode of the single select question.</p>
|
|
2777
2777
|
* @public
|
|
2778
2778
|
*/
|
|
2779
|
-
Automation?: EvaluationFormSingleSelectQuestionAutomation;
|
|
2779
|
+
Automation?: EvaluationFormSingleSelectQuestionAutomation | undefined;
|
|
2780
2780
|
}
|
|
2781
2781
|
/**
|
|
2782
2782
|
* <p>Information about properties for a question in an evaluation form. The question type
|
|
@@ -2835,7 +2835,7 @@ export interface EvaluationFormQuestion {
|
|
|
2835
2835
|
* <p>The instructions of the section.</p>
|
|
2836
2836
|
* @public
|
|
2837
2837
|
*/
|
|
2838
|
-
Instructions?: string;
|
|
2838
|
+
Instructions?: string | undefined;
|
|
2839
2839
|
/**
|
|
2840
2840
|
* <p>The identifier of the question. An identifier must be unique within the evaluation
|
|
2841
2841
|
* form.</p>
|
|
@@ -2846,7 +2846,7 @@ export interface EvaluationFormQuestion {
|
|
|
2846
2846
|
* <p>The flag to enable not applicable answers to the question.</p>
|
|
2847
2847
|
* @public
|
|
2848
2848
|
*/
|
|
2849
|
-
NotApplicableEnabled?: boolean;
|
|
2849
|
+
NotApplicableEnabled?: boolean | undefined;
|
|
2850
2850
|
/**
|
|
2851
2851
|
* <p>The type of the question.</p>
|
|
2852
2852
|
* @public
|
|
@@ -2857,12 +2857,12 @@ export interface EvaluationFormQuestion {
|
|
|
2857
2857
|
* properties.</p>
|
|
2858
2858
|
* @public
|
|
2859
2859
|
*/
|
|
2860
|
-
QuestionTypeProperties?: EvaluationFormQuestionTypeProperties;
|
|
2860
|
+
QuestionTypeProperties?: EvaluationFormQuestionTypeProperties | undefined;
|
|
2861
2861
|
/**
|
|
2862
2862
|
* <p>The scoring weight of the section.</p>
|
|
2863
2863
|
* @public
|
|
2864
2864
|
*/
|
|
2865
|
-
Weight?: number;
|
|
2865
|
+
Weight?: number | undefined;
|
|
2866
2866
|
}
|
|
2867
2867
|
/**
|
|
2868
2868
|
* @public
|
|
@@ -2991,7 +2991,7 @@ export interface CreateHoursOfOperationRequest {
|
|
|
2991
2991
|
* <p>The description of the hours of operation.</p>
|
|
2992
2992
|
* @public
|
|
2993
2993
|
*/
|
|
2994
|
-
Description?: string;
|
|
2994
|
+
Description?: string | undefined;
|
|
2995
2995
|
/**
|
|
2996
2996
|
* <p>The time zone of the hours of operation.</p>
|
|
2997
2997
|
* @public
|
|
@@ -3006,7 +3006,7 @@ export interface CreateHoursOfOperationRequest {
|
|
|
3006
3006
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
3007
3007
|
* @public
|
|
3008
3008
|
*/
|
|
3009
|
-
Tags?: Record<string, string
|
|
3009
|
+
Tags?: Record<string, string> | undefined;
|
|
3010
3010
|
}
|
|
3011
3011
|
/**
|
|
3012
3012
|
* @public
|
|
@@ -3016,12 +3016,12 @@ export interface CreateHoursOfOperationResponse {
|
|
|
3016
3016
|
* <p>The identifier for the hours of operation.</p>
|
|
3017
3017
|
* @public
|
|
3018
3018
|
*/
|
|
3019
|
-
HoursOfOperationId?: string;
|
|
3019
|
+
HoursOfOperationId?: string | undefined;
|
|
3020
3020
|
/**
|
|
3021
3021
|
* <p>The Amazon Resource Name (ARN) for the hours of operation.</p>
|
|
3022
3022
|
* @public
|
|
3023
3023
|
*/
|
|
3024
|
-
HoursOfOperationArn?: string;
|
|
3024
|
+
HoursOfOperationArn?: string | undefined;
|
|
3025
3025
|
}
|
|
3026
3026
|
/**
|
|
3027
3027
|
* @public
|
|
@@ -3044,7 +3044,7 @@ export interface CreateInstanceRequest {
|
|
|
3044
3044
|
* <p>The idempotency token.</p>
|
|
3045
3045
|
* @public
|
|
3046
3046
|
*/
|
|
3047
|
-
ClientToken?: string;
|
|
3047
|
+
ClientToken?: string | undefined;
|
|
3048
3048
|
/**
|
|
3049
3049
|
* <p>The type of identity management for your Amazon Connect users.</p>
|
|
3050
3050
|
* @public
|
|
@@ -3054,12 +3054,12 @@ export interface CreateInstanceRequest {
|
|
|
3054
3054
|
* <p>The name for your instance.</p>
|
|
3055
3055
|
* @public
|
|
3056
3056
|
*/
|
|
3057
|
-
InstanceAlias?: string;
|
|
3057
|
+
InstanceAlias?: string | undefined;
|
|
3058
3058
|
/**
|
|
3059
3059
|
* <p>The identifier for the directory.</p>
|
|
3060
3060
|
* @public
|
|
3061
3061
|
*/
|
|
3062
|
-
DirectoryId?: string;
|
|
3062
|
+
DirectoryId?: string | undefined;
|
|
3063
3063
|
/**
|
|
3064
3064
|
* <p>Your contact center handles incoming contacts.</p>
|
|
3065
3065
|
* @public
|
|
@@ -3075,7 +3075,7 @@ export interface CreateInstanceRequest {
|
|
|
3075
3075
|
* "tags": \{"key1":"value1", "key2":"value2"\} \}</code>.</p>
|
|
3076
3076
|
* @public
|
|
3077
3077
|
*/
|
|
3078
|
-
Tags?: Record<string, string
|
|
3078
|
+
Tags?: Record<string, string> | undefined;
|
|
3079
3079
|
}
|
|
3080
3080
|
/**
|
|
3081
3081
|
* @public
|
|
@@ -3085,12 +3085,12 @@ export interface CreateInstanceResponse {
|
|
|
3085
3085
|
* <p>The identifier for the instance.</p>
|
|
3086
3086
|
* @public
|
|
3087
3087
|
*/
|
|
3088
|
-
Id?: string;
|
|
3088
|
+
Id?: string | undefined;
|
|
3089
3089
|
/**
|
|
3090
3090
|
* <p>The Amazon Resource Name (ARN) of the instance.</p>
|
|
3091
3091
|
* @public
|
|
3092
3092
|
*/
|
|
3093
|
-
Arn?: string;
|
|
3093
|
+
Arn?: string | undefined;
|
|
3094
3094
|
}
|
|
3095
3095
|
/**
|
|
3096
3096
|
* @public
|
|
@@ -3151,22 +3151,22 @@ export interface CreateIntegrationAssociationRequest {
|
|
|
3151
3151
|
* <p>The URL for the external application. This field is only required for the EVENT integration type.</p>
|
|
3152
3152
|
* @public
|
|
3153
3153
|
*/
|
|
3154
|
-
SourceApplicationUrl?: string;
|
|
3154
|
+
SourceApplicationUrl?: string | undefined;
|
|
3155
3155
|
/**
|
|
3156
3156
|
* <p>The name of the external application. This field is only required for the EVENT integration type.</p>
|
|
3157
3157
|
* @public
|
|
3158
3158
|
*/
|
|
3159
|
-
SourceApplicationName?: string;
|
|
3159
|
+
SourceApplicationName?: string | undefined;
|
|
3160
3160
|
/**
|
|
3161
3161
|
* <p>The type of the data source. This field is only required for the EVENT integration type.</p>
|
|
3162
3162
|
* @public
|
|
3163
3163
|
*/
|
|
3164
|
-
SourceType?: SourceType;
|
|
3164
|
+
SourceType?: SourceType | undefined;
|
|
3165
3165
|
/**
|
|
3166
3166
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
3167
3167
|
* @public
|
|
3168
3168
|
*/
|
|
3169
|
-
Tags?: Record<string, string
|
|
3169
|
+
Tags?: Record<string, string> | undefined;
|
|
3170
3170
|
}
|
|
3171
3171
|
/**
|
|
3172
3172
|
* @public
|
|
@@ -3176,12 +3176,12 @@ export interface CreateIntegrationAssociationResponse {
|
|
|
3176
3176
|
* <p>The identifier for the integration association.</p>
|
|
3177
3177
|
* @public
|
|
3178
3178
|
*/
|
|
3179
|
-
IntegrationAssociationId?: string;
|
|
3179
|
+
IntegrationAssociationId?: string | undefined;
|
|
3180
3180
|
/**
|
|
3181
3181
|
* <p>The Amazon Resource Name (ARN) for the association.</p>
|
|
3182
3182
|
* @public
|
|
3183
3183
|
*/
|
|
3184
|
-
IntegrationAssociationArn?: string;
|
|
3184
|
+
IntegrationAssociationArn?: string | undefined;
|
|
3185
3185
|
}
|
|
3186
3186
|
/**
|
|
3187
3187
|
* @public
|
|
@@ -3207,12 +3207,12 @@ export interface ParticipantDetailsToAdd {
|
|
|
3207
3207
|
* <p>The role of the participant being added.</p>
|
|
3208
3208
|
* @public
|
|
3209
3209
|
*/
|
|
3210
|
-
ParticipantRole?: ParticipantRole;
|
|
3210
|
+
ParticipantRole?: ParticipantRole | undefined;
|
|
3211
3211
|
/**
|
|
3212
3212
|
* <p>The display name of the participant.</p>
|
|
3213
3213
|
* @public
|
|
3214
3214
|
*/
|
|
3215
|
-
DisplayName?: string;
|
|
3215
|
+
DisplayName?: string | undefined;
|
|
3216
3216
|
}
|
|
3217
3217
|
/**
|
|
3218
3218
|
* @public
|
|
@@ -3235,7 +3235,7 @@ export interface CreateParticipantRequest {
|
|
|
3235
3235
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
3236
3236
|
* @public
|
|
3237
3237
|
*/
|
|
3238
|
-
ClientToken?: string;
|
|
3238
|
+
ClientToken?: string | undefined;
|
|
3239
3239
|
/**
|
|
3240
3240
|
* <p>Information identifying the participant.</p>
|
|
3241
3241
|
* <important>
|
|
@@ -3257,13 +3257,13 @@ export interface ParticipantTokenCredentials {
|
|
|
3257
3257
|
* participant. </p>
|
|
3258
3258
|
* @public
|
|
3259
3259
|
*/
|
|
3260
|
-
ParticipantToken?: string;
|
|
3260
|
+
ParticipantToken?: string | undefined;
|
|
3261
3261
|
/**
|
|
3262
3262
|
* <p>The expiration of the token. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ.
|
|
3263
3263
|
* For example, 2019-11-08T02:41:28.172Z.</p>
|
|
3264
3264
|
* @public
|
|
3265
3265
|
*/
|
|
3266
|
-
Expiry?: string;
|
|
3266
|
+
Expiry?: string | undefined;
|
|
3267
3267
|
}
|
|
3268
3268
|
/**
|
|
3269
3269
|
* @public
|
|
@@ -3274,13 +3274,13 @@ export interface CreateParticipantResponse {
|
|
|
3274
3274
|
* participant token is valid for the lifetime of a chat participant.</p>
|
|
3275
3275
|
* @public
|
|
3276
3276
|
*/
|
|
3277
|
-
ParticipantCredentials?: ParticipantTokenCredentials;
|
|
3277
|
+
ParticipantCredentials?: ParticipantTokenCredentials | undefined;
|
|
3278
3278
|
/**
|
|
3279
3279
|
* <p>The identifier for a chat participant. The participantId for a chat participant is the same
|
|
3280
3280
|
* throughout the chat lifecycle.</p>
|
|
3281
3281
|
* @public
|
|
3282
3282
|
*/
|
|
3283
|
-
ParticipantId?: string;
|
|
3283
|
+
ParticipantId?: string | undefined;
|
|
3284
3284
|
}
|
|
3285
3285
|
/**
|
|
3286
3286
|
* @public
|
|
@@ -3418,7 +3418,7 @@ export interface CreatePersistentContactAssociationRequest {
|
|
|
3418
3418
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
3419
3419
|
* @public
|
|
3420
3420
|
*/
|
|
3421
|
-
ClientToken?: string;
|
|
3421
|
+
ClientToken?: string | undefined;
|
|
3422
3422
|
}
|
|
3423
3423
|
/**
|
|
3424
3424
|
* @public
|
|
@@ -3429,7 +3429,7 @@ export interface CreatePersistentContactAssociationResponse {
|
|
|
3429
3429
|
* for persistent chat.</p>
|
|
3430
3430
|
* @public
|
|
3431
3431
|
*/
|
|
3432
|
-
ContinuedFromContactId?: string;
|
|
3432
|
+
ContinuedFromContactId?: string | undefined;
|
|
3433
3433
|
}
|
|
3434
3434
|
/**
|
|
3435
3435
|
* <p>Information about values of a predefined attribute.</p>
|
|
@@ -3500,7 +3500,7 @@ export interface CreatePromptRequest {
|
|
|
3500
3500
|
* <p>The description of the prompt.</p>
|
|
3501
3501
|
* @public
|
|
3502
3502
|
*/
|
|
3503
|
-
Description?: string;
|
|
3503
|
+
Description?: string | undefined;
|
|
3504
3504
|
/**
|
|
3505
3505
|
* <p>The URI for the S3 bucket where the prompt is stored. You can provide S3 pre-signed URLs returned by the
|
|
3506
3506
|
* <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_GetPromptFile.html">GetPromptFile</a>
|
|
@@ -3512,7 +3512,7 @@ export interface CreatePromptRequest {
|
|
|
3512
3512
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
3513
3513
|
* @public
|
|
3514
3514
|
*/
|
|
3515
|
-
Tags?: Record<string, string
|
|
3515
|
+
Tags?: Record<string, string> | undefined;
|
|
3516
3516
|
}
|
|
3517
3517
|
/**
|
|
3518
3518
|
* @public
|
|
@@ -3522,12 +3522,12 @@ export interface CreatePromptResponse {
|
|
|
3522
3522
|
* <p>The Amazon Resource Name (ARN) of the prompt.</p>
|
|
3523
3523
|
* @public
|
|
3524
3524
|
*/
|
|
3525
|
-
PromptARN?: string;
|
|
3525
|
+
PromptARN?: string | undefined;
|
|
3526
3526
|
/**
|
|
3527
3527
|
* <p>A unique identifier for the prompt.</p>
|
|
3528
3528
|
* @public
|
|
3529
3529
|
*/
|
|
3530
|
-
PromptId?: string;
|
|
3530
|
+
PromptId?: string | undefined;
|
|
3531
3531
|
}
|
|
3532
3532
|
/**
|
|
3533
3533
|
* <p>The outbound caller ID name, number, and outbound whisper flow.</p>
|
|
@@ -3538,17 +3538,17 @@ export interface OutboundCallerConfig {
|
|
|
3538
3538
|
* <p>The caller ID name.</p>
|
|
3539
3539
|
* @public
|
|
3540
3540
|
*/
|
|
3541
|
-
OutboundCallerIdName?: string;
|
|
3541
|
+
OutboundCallerIdName?: string | undefined;
|
|
3542
3542
|
/**
|
|
3543
3543
|
* <p>The caller ID number.</p>
|
|
3544
3544
|
* @public
|
|
3545
3545
|
*/
|
|
3546
|
-
OutboundCallerIdNumberId?: string;
|
|
3546
|
+
OutboundCallerIdNumberId?: string | undefined;
|
|
3547
3547
|
/**
|
|
3548
3548
|
* <p>The outbound whisper flow to be used during an outbound call.</p>
|
|
3549
3549
|
* @public
|
|
3550
3550
|
*/
|
|
3551
|
-
OutboundFlowId?: string;
|
|
3551
|
+
OutboundFlowId?: string | undefined;
|
|
3552
3552
|
}
|
|
3553
3553
|
/**
|
|
3554
3554
|
* @public
|
|
@@ -3568,12 +3568,12 @@ export interface CreateQueueRequest {
|
|
|
3568
3568
|
* <p>The description of the queue.</p>
|
|
3569
3569
|
* @public
|
|
3570
3570
|
*/
|
|
3571
|
-
Description?: string;
|
|
3571
|
+
Description?: string | undefined;
|
|
3572
3572
|
/**
|
|
3573
3573
|
* <p>The outbound caller ID name, number, and outbound whisper flow.</p>
|
|
3574
3574
|
* @public
|
|
3575
3575
|
*/
|
|
3576
|
-
OutboundCallerConfig?: OutboundCallerConfig;
|
|
3576
|
+
OutboundCallerConfig?: OutboundCallerConfig | undefined;
|
|
3577
3577
|
/**
|
|
3578
3578
|
* <p>The identifier for the hours of operation.</p>
|
|
3579
3579
|
* @public
|
|
@@ -3583,17 +3583,17 @@ export interface CreateQueueRequest {
|
|
|
3583
3583
|
* <p>The maximum number of contacts that can be in the queue before it is considered full.</p>
|
|
3584
3584
|
* @public
|
|
3585
3585
|
*/
|
|
3586
|
-
MaxContacts?: number;
|
|
3586
|
+
MaxContacts?: number | undefined;
|
|
3587
3587
|
/**
|
|
3588
3588
|
* <p>The quick connects available to agents who are working the queue.</p>
|
|
3589
3589
|
* @public
|
|
3590
3590
|
*/
|
|
3591
|
-
QuickConnectIds?: string[];
|
|
3591
|
+
QuickConnectIds?: string[] | undefined;
|
|
3592
3592
|
/**
|
|
3593
3593
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
3594
3594
|
* @public
|
|
3595
3595
|
*/
|
|
3596
|
-
Tags?: Record<string, string
|
|
3596
|
+
Tags?: Record<string, string> | undefined;
|
|
3597
3597
|
}
|
|
3598
3598
|
/**
|
|
3599
3599
|
* @public
|
|
@@ -3603,12 +3603,12 @@ export interface CreateQueueResponse {
|
|
|
3603
3603
|
* <p>The Amazon Resource Name (ARN) of the queue.</p>
|
|
3604
3604
|
* @public
|
|
3605
3605
|
*/
|
|
3606
|
-
QueueArn?: string;
|
|
3606
|
+
QueueArn?: string | undefined;
|
|
3607
3607
|
/**
|
|
3608
3608
|
* <p>The identifier for the queue.</p>
|
|
3609
3609
|
* @public
|
|
3610
3610
|
*/
|
|
3611
|
-
QueueId?: string;
|
|
3611
|
+
QueueId?: string | undefined;
|
|
3612
3612
|
}
|
|
3613
3613
|
/**
|
|
3614
3614
|
* <p>Contains information about a phone number for a quick connect.</p>
|
|
@@ -3683,17 +3683,17 @@ export interface QuickConnectConfig {
|
|
|
3683
3683
|
* <p>The user configuration. This is required only if QuickConnectType is USER.</p>
|
|
3684
3684
|
* @public
|
|
3685
3685
|
*/
|
|
3686
|
-
UserConfig?: UserQuickConnectConfig;
|
|
3686
|
+
UserConfig?: UserQuickConnectConfig | undefined;
|
|
3687
3687
|
/**
|
|
3688
3688
|
* <p>The queue configuration. This is required only if QuickConnectType is QUEUE.</p>
|
|
3689
3689
|
* @public
|
|
3690
3690
|
*/
|
|
3691
|
-
QueueConfig?: QueueQuickConnectConfig;
|
|
3691
|
+
QueueConfig?: QueueQuickConnectConfig | undefined;
|
|
3692
3692
|
/**
|
|
3693
3693
|
* <p>The phone configuration. This is required only if QuickConnectType is PHONE_NUMBER.</p>
|
|
3694
3694
|
* @public
|
|
3695
3695
|
*/
|
|
3696
|
-
PhoneConfig?: PhoneNumberQuickConnectConfig;
|
|
3696
|
+
PhoneConfig?: PhoneNumberQuickConnectConfig | undefined;
|
|
3697
3697
|
}
|
|
3698
3698
|
/**
|
|
3699
3699
|
* @public
|
|
@@ -3713,7 +3713,7 @@ export interface CreateQuickConnectRequest {
|
|
|
3713
3713
|
* <p>The description of the quick connect.</p>
|
|
3714
3714
|
* @public
|
|
3715
3715
|
*/
|
|
3716
|
-
Description?: string;
|
|
3716
|
+
Description?: string | undefined;
|
|
3717
3717
|
/**
|
|
3718
3718
|
* <p>Configuration settings for the quick connect.</p>
|
|
3719
3719
|
* @public
|
|
@@ -3723,7 +3723,7 @@ export interface CreateQuickConnectRequest {
|
|
|
3723
3723
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
3724
3724
|
* @public
|
|
3725
3725
|
*/
|
|
3726
|
-
Tags?: Record<string, string
|
|
3726
|
+
Tags?: Record<string, string> | undefined;
|
|
3727
3727
|
}
|
|
3728
3728
|
/**
|
|
3729
3729
|
* @public
|
|
@@ -3733,12 +3733,12 @@ export interface CreateQuickConnectResponse {
|
|
|
3733
3733
|
* <p>The Amazon Resource Name (ARN) for the quick connect. </p>
|
|
3734
3734
|
* @public
|
|
3735
3735
|
*/
|
|
3736
|
-
QuickConnectARN?: string;
|
|
3736
|
+
QuickConnectARN?: string | undefined;
|
|
3737
3737
|
/**
|
|
3738
3738
|
* <p>The identifier for the quick connect. </p>
|
|
3739
3739
|
* @public
|
|
3740
3740
|
*/
|
|
3741
|
-
QuickConnectId?: string;
|
|
3741
|
+
QuickConnectId?: string | undefined;
|
|
3742
3742
|
}
|
|
3743
3743
|
/**
|
|
3744
3744
|
* @public
|
|
@@ -3790,7 +3790,7 @@ export interface MediaConcurrency {
|
|
|
3790
3790
|
* when they are currently working with a contact from a Voice channel.</p>
|
|
3791
3791
|
* @public
|
|
3792
3792
|
*/
|
|
3793
|
-
CrossChannelBehavior?: CrossChannelBehavior;
|
|
3793
|
+
CrossChannelBehavior?: CrossChannelBehavior | undefined;
|
|
3794
3794
|
}
|
|
3795
3795
|
/**
|
|
3796
3796
|
* @public
|
|
@@ -3826,7 +3826,7 @@ export interface CreateRoutingProfileRequest {
|
|
|
3826
3826
|
* quotas</a>. </p>
|
|
3827
3827
|
* @public
|
|
3828
3828
|
*/
|
|
3829
|
-
QueueConfigs?: RoutingProfileQueueConfig[];
|
|
3829
|
+
QueueConfigs?: RoutingProfileQueueConfig[] | undefined;
|
|
3830
3830
|
/**
|
|
3831
3831
|
* <p>The channels that agents can handle in the Contact Control Panel (CCP) for this routing
|
|
3832
3832
|
* profile.</p>
|
|
@@ -3837,14 +3837,14 @@ export interface CreateRoutingProfileRequest {
|
|
|
3837
3837
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
3838
3838
|
* @public
|
|
3839
3839
|
*/
|
|
3840
|
-
Tags?: Record<string, string
|
|
3840
|
+
Tags?: Record<string, string> | undefined;
|
|
3841
3841
|
/**
|
|
3842
3842
|
* <p>Whether agents with this routing profile will have their routing order calculated based on
|
|
3843
3843
|
* <i>longest idle time</i> or <i>time since their last inbound
|
|
3844
3844
|
* contact</i>. </p>
|
|
3845
3845
|
* @public
|
|
3846
3846
|
*/
|
|
3847
|
-
AgentAvailabilityTimer?: AgentAvailabilityTimer;
|
|
3847
|
+
AgentAvailabilityTimer?: AgentAvailabilityTimer | undefined;
|
|
3848
3848
|
}
|
|
3849
3849
|
/**
|
|
3850
3850
|
* @public
|
|
@@ -3854,12 +3854,12 @@ export interface CreateRoutingProfileResponse {
|
|
|
3854
3854
|
* <p>The Amazon Resource Name (ARN) of the routing profile.</p>
|
|
3855
3855
|
* @public
|
|
3856
3856
|
*/
|
|
3857
|
-
RoutingProfileArn?: string;
|
|
3857
|
+
RoutingProfileArn?: string | undefined;
|
|
3858
3858
|
/**
|
|
3859
3859
|
* <p>The identifier of the routing profile.</p>
|
|
3860
3860
|
* @public
|
|
3861
3861
|
*/
|
|
3862
|
-
RoutingProfileId?: string;
|
|
3862
|
+
RoutingProfileId?: string | undefined;
|
|
3863
3863
|
}
|
|
3864
3864
|
/**
|
|
3865
3865
|
* <p>This action must be set if <code>TriggerEventSource</code> is one of the following values:
|
|
@@ -3887,22 +3887,22 @@ export interface FieldValueUnion {
|
|
|
3887
3887
|
* <p>A Boolean number value type.</p>
|
|
3888
3888
|
* @public
|
|
3889
3889
|
*/
|
|
3890
|
-
BooleanValue?: boolean;
|
|
3890
|
+
BooleanValue?: boolean | undefined;
|
|
3891
3891
|
/**
|
|
3892
3892
|
* <p>A Double number value type.</p>
|
|
3893
3893
|
* @public
|
|
3894
3894
|
*/
|
|
3895
|
-
DoubleValue?: number;
|
|
3895
|
+
DoubleValue?: number | undefined;
|
|
3896
3896
|
/**
|
|
3897
3897
|
* <p>An empty value.</p>
|
|
3898
3898
|
* @public
|
|
3899
3899
|
*/
|
|
3900
|
-
EmptyValue?: EmptyFieldValue;
|
|
3900
|
+
EmptyValue?: EmptyFieldValue | undefined;
|
|
3901
3901
|
/**
|
|
3902
3902
|
* <p>String value type.</p>
|
|
3903
3903
|
* @public
|
|
3904
3904
|
*/
|
|
3905
|
-
StringValue?: string;
|
|
3905
|
+
StringValue?: string | undefined;
|
|
3906
3906
|
}
|
|
3907
3907
|
/**
|
|
3908
3908
|
* <p>Object for case field values.</p>
|
|
@@ -3984,12 +3984,12 @@ export interface NotificationRecipientType {
|
|
|
3984
3984
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}. Amazon Connect users with the specified tags will be notified.</p>
|
|
3985
3985
|
* @public
|
|
3986
3986
|
*/
|
|
3987
|
-
UserTags?: Record<string, string
|
|
3987
|
+
UserTags?: Record<string, string> | undefined;
|
|
3988
3988
|
/**
|
|
3989
3989
|
* <p>A list of user IDs.</p>
|
|
3990
3990
|
* @public
|
|
3991
3991
|
*/
|
|
3992
|
-
UserIds?: string[];
|
|
3992
|
+
UserIds?: string[] | undefined;
|
|
3993
3993
|
}
|
|
3994
3994
|
/**
|
|
3995
3995
|
* <p>Information about the send notification action.</p>
|
|
@@ -4008,7 +4008,7 @@ export interface SendNotificationActionDefinition {
|
|
|
4008
4008
|
* in the <i>Amazon Connect Administrators Guide</i>.</p>
|
|
4009
4009
|
* @public
|
|
4010
4010
|
*/
|
|
4011
|
-
Subject?: string;
|
|
4011
|
+
Subject?: string | undefined;
|
|
4012
4012
|
/**
|
|
4013
4013
|
* <p>Notification content. Supports variable injection. For more information, see
|
|
4014
4014
|
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-variable-injection.html">JSONPath reference</a>
|
|
@@ -4091,7 +4091,7 @@ export interface TaskActionDefinition {
|
|
|
4091
4091
|
* in the <i>Amazon Connect Administrators Guide</i>.</p>
|
|
4092
4092
|
* @public
|
|
4093
4093
|
*/
|
|
4094
|
-
Description?: string;
|
|
4094
|
+
Description?: string | undefined;
|
|
4095
4095
|
/**
|
|
4096
4096
|
* <p>The identifier of the flow.</p>
|
|
4097
4097
|
* @public
|
|
@@ -4102,7 +4102,7 @@ export interface TaskActionDefinition {
|
|
|
4102
4102
|
* Otherwise, null. (Supports variable injection in the <code>Value</code> field.)</p>
|
|
4103
4103
|
* @public
|
|
4104
4104
|
*/
|
|
4105
|
-
References?: Record<string, Reference
|
|
4105
|
+
References?: Record<string, Reference> | undefined;
|
|
4106
4106
|
}
|
|
4107
4107
|
/**
|
|
4108
4108
|
* <p>The <code>UpdateCase</code> action definition.</p>
|
|
@@ -4132,7 +4132,7 @@ export interface RuleAction {
|
|
|
4132
4132
|
* </p>
|
|
4133
4133
|
* @public
|
|
4134
4134
|
*/
|
|
4135
|
-
TaskAction?: TaskActionDefinition;
|
|
4135
|
+
TaskAction?: TaskActionDefinition | undefined;
|
|
4136
4136
|
/**
|
|
4137
4137
|
* <p>Information about the EventBridge action.</p>
|
|
4138
4138
|
* <p>Supported only for <code>TriggerEventSource</code> values:
|
|
@@ -4142,7 +4142,7 @@ export interface RuleAction {
|
|
|
4142
4142
|
* </p>
|
|
4143
4143
|
* @public
|
|
4144
4144
|
*/
|
|
4145
|
-
EventBridgeAction?: EventBridgeActionDefinition;
|
|
4145
|
+
EventBridgeAction?: EventBridgeActionDefinition | undefined;
|
|
4146
4146
|
/**
|
|
4147
4147
|
* <p>Information about the contact category action.</p>
|
|
4148
4148
|
* <p>Supported only for <code>TriggerEventSource</code> values:
|
|
@@ -4153,7 +4153,7 @@ export interface RuleAction {
|
|
|
4153
4153
|
* </p>
|
|
4154
4154
|
* @public
|
|
4155
4155
|
*/
|
|
4156
|
-
AssignContactCategoryAction?: AssignContactCategoryActionDefinition;
|
|
4156
|
+
AssignContactCategoryAction?: AssignContactCategoryActionDefinition | undefined;
|
|
4157
4157
|
/**
|
|
4158
4158
|
* <p>Information about the send notification action.</p>
|
|
4159
4159
|
* <p>Supported only for <code>TriggerEventSource</code> values:
|
|
@@ -4163,32 +4163,32 @@ export interface RuleAction {
|
|
|
4163
4163
|
* </p>
|
|
4164
4164
|
* @public
|
|
4165
4165
|
*/
|
|
4166
|
-
SendNotificationAction?: SendNotificationActionDefinition;
|
|
4166
|
+
SendNotificationAction?: SendNotificationActionDefinition | undefined;
|
|
4167
4167
|
/**
|
|
4168
4168
|
* <p>Information about the create case action.</p>
|
|
4169
4169
|
* <p>Supported only for <code>TriggerEventSource</code> values:
|
|
4170
4170
|
* <code>OnPostCallAnalysisAvailable</code> | <code>OnPostChatAnalysisAvailable</code>.</p>
|
|
4171
4171
|
* @public
|
|
4172
4172
|
*/
|
|
4173
|
-
CreateCaseAction?: CreateCaseActionDefinition;
|
|
4173
|
+
CreateCaseAction?: CreateCaseActionDefinition | undefined;
|
|
4174
4174
|
/**
|
|
4175
4175
|
* <p>Information about the update case action.</p>
|
|
4176
4176
|
* <p>Supported only for <code>TriggerEventSource</code> values: <code>OnCaseCreate</code> |
|
|
4177
4177
|
* <code>OnCaseUpdate</code>.</p>
|
|
4178
4178
|
* @public
|
|
4179
4179
|
*/
|
|
4180
|
-
UpdateCaseAction?: UpdateCaseActionDefinition;
|
|
4180
|
+
UpdateCaseAction?: UpdateCaseActionDefinition | undefined;
|
|
4181
4181
|
/**
|
|
4182
4182
|
* <p>Information about the end associated tasks action.</p>
|
|
4183
4183
|
* <p>Supported only for <code>TriggerEventSource</code> values: <code>OnCaseUpdate</code>.</p>
|
|
4184
4184
|
* @public
|
|
4185
4185
|
*/
|
|
4186
|
-
EndAssociatedTasksAction?: EndAssociatedTasksActionDefinition;
|
|
4186
|
+
EndAssociatedTasksAction?: EndAssociatedTasksActionDefinition | undefined;
|
|
4187
4187
|
/**
|
|
4188
4188
|
* <p>Information about the submit automated evaluation action.</p>
|
|
4189
4189
|
* @public
|
|
4190
4190
|
*/
|
|
4191
|
-
SubmitAutoEvaluationAction?: SubmitAutoEvaluationActionDefinition;
|
|
4191
|
+
SubmitAutoEvaluationAction?: SubmitAutoEvaluationActionDefinition | undefined;
|
|
4192
4192
|
}
|
|
4193
4193
|
/**
|
|
4194
4194
|
* @public
|
|
@@ -4240,7 +4240,7 @@ export interface RuleTriggerEventSource {
|
|
|
4240
4240
|
* <p>The identifier for the integration association.</p>
|
|
4241
4241
|
* @public
|
|
4242
4242
|
*/
|
|
4243
|
-
IntegrationAssociationId?: string;
|
|
4243
|
+
IntegrationAssociationId?: string | undefined;
|
|
4244
4244
|
}
|
|
4245
4245
|
/**
|
|
4246
4246
|
* @public
|
|
@@ -4283,7 +4283,7 @@ export interface CreateRuleRequest {
|
|
|
4283
4283
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
4284
4284
|
* @public
|
|
4285
4285
|
*/
|
|
4286
|
-
ClientToken?: string;
|
|
4286
|
+
ClientToken?: string | undefined;
|
|
4287
4287
|
}
|
|
4288
4288
|
/**
|
|
4289
4289
|
* @public
|
|
@@ -4310,13 +4310,13 @@ export interface Application {
|
|
|
4310
4310
|
* <p>Namespace of the application that you want to give access to.</p>
|
|
4311
4311
|
* @public
|
|
4312
4312
|
*/
|
|
4313
|
-
Namespace?: string;
|
|
4313
|
+
Namespace?: string | undefined;
|
|
4314
4314
|
/**
|
|
4315
4315
|
* <p>The permissions that the agent is granted on the application. Only the <code>ACCESS</code>
|
|
4316
4316
|
* permission is supported.</p>
|
|
4317
4317
|
* @public
|
|
4318
4318
|
*/
|
|
4319
|
-
ApplicationPermissions?: string[];
|
|
4319
|
+
ApplicationPermissions?: string[] | undefined;
|
|
4320
4320
|
}
|
|
4321
4321
|
/**
|
|
4322
4322
|
* @public
|
|
@@ -4331,13 +4331,13 @@ export interface CreateSecurityProfileRequest {
|
|
|
4331
4331
|
* <p>The description of the security profile.</p>
|
|
4332
4332
|
* @public
|
|
4333
4333
|
*/
|
|
4334
|
-
Description?: string;
|
|
4334
|
+
Description?: string | undefined;
|
|
4335
4335
|
/**
|
|
4336
4336
|
* <p>Permissions assigned to the security profile. For a list of valid permissions, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html">List of security
|
|
4337
4337
|
* profile permissions</a>. </p>
|
|
4338
4338
|
* @public
|
|
4339
4339
|
*/
|
|
4340
|
-
Permissions?: string[];
|
|
4340
|
+
Permissions?: string[] | undefined;
|
|
4341
4341
|
/**
|
|
4342
4342
|
* <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>
|
|
4343
4343
|
* @public
|
|
@@ -4347,35 +4347,35 @@ export interface CreateSecurityProfileRequest {
|
|
|
4347
4347
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
4348
4348
|
* @public
|
|
4349
4349
|
*/
|
|
4350
|
-
Tags?: Record<string, string
|
|
4350
|
+
Tags?: Record<string, string> | undefined;
|
|
4351
4351
|
/**
|
|
4352
4352
|
* <p>The list of tags that a security profile uses to restrict access to resources in Amazon Connect.</p>
|
|
4353
4353
|
* @public
|
|
4354
4354
|
*/
|
|
4355
|
-
AllowedAccessControlTags?: Record<string, string
|
|
4355
|
+
AllowedAccessControlTags?: Record<string, string> | undefined;
|
|
4356
4356
|
/**
|
|
4357
4357
|
* <p>The list of resources that a security profile applies tag restrictions to in Amazon Connect. Following are acceptable ResourceNames: <code>User</code> |
|
|
4358
4358
|
* <code>SecurityProfile</code> | <code>Queue</code> | <code>RoutingProfile</code>
|
|
4359
4359
|
* </p>
|
|
4360
4360
|
* @public
|
|
4361
4361
|
*/
|
|
4362
|
-
TagRestrictedResources?: string[];
|
|
4362
|
+
TagRestrictedResources?: string[] | undefined;
|
|
4363
4363
|
/**
|
|
4364
4364
|
* <p>A list of third-party applications that the security profile will give access to.</p>
|
|
4365
4365
|
* @public
|
|
4366
4366
|
*/
|
|
4367
|
-
Applications?: Application[];
|
|
4367
|
+
Applications?: Application[] | undefined;
|
|
4368
4368
|
/**
|
|
4369
4369
|
* <p>The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect. Following are acceptable ResourceNames: <code>User</code>.</p>
|
|
4370
4370
|
* @public
|
|
4371
4371
|
*/
|
|
4372
|
-
HierarchyRestrictedResources?: string[];
|
|
4372
|
+
HierarchyRestrictedResources?: string[] | undefined;
|
|
4373
4373
|
/**
|
|
4374
4374
|
* <p>The identifier of the hierarchy group that a security profile uses to restrict access to
|
|
4375
4375
|
* resources in Amazon Connect.</p>
|
|
4376
4376
|
* @public
|
|
4377
4377
|
*/
|
|
4378
|
-
AllowedAccessControlHierarchyGroupId?: string;
|
|
4378
|
+
AllowedAccessControlHierarchyGroupId?: string | undefined;
|
|
4379
4379
|
}
|
|
4380
4380
|
/**
|
|
4381
4381
|
* @public
|
|
@@ -4385,12 +4385,12 @@ export interface CreateSecurityProfileResponse {
|
|
|
4385
4385
|
* <p>The identifier for the security profle.</p>
|
|
4386
4386
|
* @public
|
|
4387
4387
|
*/
|
|
4388
|
-
SecurityProfileId?: string;
|
|
4388
|
+
SecurityProfileId?: string | undefined;
|
|
4389
4389
|
/**
|
|
4390
4390
|
* <p>The Amazon Resource Name (ARN) for the security profile.</p>
|
|
4391
4391
|
* @public
|
|
4392
4392
|
*/
|
|
4393
|
-
SecurityProfileArn?: string;
|
|
4393
|
+
SecurityProfileArn?: string | undefined;
|
|
4394
4394
|
}
|
|
4395
4395
|
/**
|
|
4396
4396
|
* <p>The identifier of the task template field.</p>
|
|
@@ -4401,7 +4401,7 @@ export interface TaskTemplateFieldIdentifier {
|
|
|
4401
4401
|
* <p>The name of the task template field.</p>
|
|
4402
4402
|
* @public
|
|
4403
4403
|
*/
|
|
4404
|
-
Name?: string;
|
|
4404
|
+
Name?: string | undefined;
|
|
4405
4405
|
}
|
|
4406
4406
|
/**
|
|
4407
4407
|
* <p>A field that is invisible to an agent.</p>
|
|
@@ -4412,7 +4412,7 @@ export interface InvisibleFieldInfo {
|
|
|
4412
4412
|
* <p>Identifier of the invisible field.</p>
|
|
4413
4413
|
* @public
|
|
4414
4414
|
*/
|
|
4415
|
-
Id?: TaskTemplateFieldIdentifier;
|
|
4415
|
+
Id?: TaskTemplateFieldIdentifier | undefined;
|
|
4416
4416
|
}
|
|
4417
4417
|
/**
|
|
4418
4418
|
* <p>Indicates a field that is read-only to an agent.</p>
|
|
@@ -4423,7 +4423,7 @@ export interface ReadOnlyFieldInfo {
|
|
|
4423
4423
|
* <p>Identifier of the read-only field.</p>
|
|
4424
4424
|
* @public
|
|
4425
4425
|
*/
|
|
4426
|
-
Id?: TaskTemplateFieldIdentifier;
|
|
4426
|
+
Id?: TaskTemplateFieldIdentifier | undefined;
|
|
4427
4427
|
}
|
|
4428
4428
|
/**
|
|
4429
4429
|
* <p>Information about a required field.</p>
|
|
@@ -4434,7 +4434,7 @@ export interface RequiredFieldInfo {
|
|
|
4434
4434
|
* <p>The unique identifier for the field.</p>
|
|
4435
4435
|
* @public
|
|
4436
4436
|
*/
|
|
4437
|
-
Id?: TaskTemplateFieldIdentifier;
|
|
4437
|
+
Id?: TaskTemplateFieldIdentifier | undefined;
|
|
4438
4438
|
}
|
|
4439
4439
|
/**
|
|
4440
4440
|
* <p>Describes constraints that apply to the template fields.</p>
|
|
@@ -4445,17 +4445,17 @@ export interface TaskTemplateConstraints {
|
|
|
4445
4445
|
* <p>Lists the fields that are required to be filled by agents.</p>
|
|
4446
4446
|
* @public
|
|
4447
4447
|
*/
|
|
4448
|
-
RequiredFields?: RequiredFieldInfo[];
|
|
4448
|
+
RequiredFields?: RequiredFieldInfo[] | undefined;
|
|
4449
4449
|
/**
|
|
4450
4450
|
* <p>Lists the fields that are read-only to agents, and cannot be edited.</p>
|
|
4451
4451
|
* @public
|
|
4452
4452
|
*/
|
|
4453
|
-
ReadOnlyFields?: ReadOnlyFieldInfo[];
|
|
4453
|
+
ReadOnlyFields?: ReadOnlyFieldInfo[] | undefined;
|
|
4454
4454
|
/**
|
|
4455
4455
|
* <p>Lists the fields that are invisible to agents.</p>
|
|
4456
4456
|
* @public
|
|
4457
4457
|
*/
|
|
4458
|
-
InvisibleFields?: InvisibleFieldInfo[];
|
|
4458
|
+
InvisibleFields?: InvisibleFieldInfo[] | undefined;
|
|
4459
4459
|
}
|
|
4460
4460
|
/**
|
|
4461
4461
|
* <p>Describes a default field and its corresponding value.</p>
|
|
@@ -4466,12 +4466,12 @@ export interface TaskTemplateDefaultFieldValue {
|
|
|
4466
4466
|
* <p>Identifier of a field. </p>
|
|
4467
4467
|
* @public
|
|
4468
4468
|
*/
|
|
4469
|
-
Id?: TaskTemplateFieldIdentifier;
|
|
4469
|
+
Id?: TaskTemplateFieldIdentifier | undefined;
|
|
4470
4470
|
/**
|
|
4471
4471
|
* <p>Default value for the field.</p>
|
|
4472
4472
|
* @public
|
|
4473
4473
|
*/
|
|
4474
|
-
DefaultValue?: string;
|
|
4474
|
+
DefaultValue?: string | undefined;
|
|
4475
4475
|
}
|
|
4476
4476
|
/**
|
|
4477
4477
|
* <p>Describes default values for fields on a template.</p>
|
|
@@ -4482,7 +4482,7 @@ export interface TaskTemplateDefaults {
|
|
|
4482
4482
|
* <p>Default value for the field.</p>
|
|
4483
4483
|
* @public
|
|
4484
4484
|
*/
|
|
4485
|
-
DefaultFieldValues?: TaskTemplateDefaultFieldValue[];
|
|
4485
|
+
DefaultFieldValues?: TaskTemplateDefaultFieldValue[] | undefined;
|
|
4486
4486
|
}
|
|
4487
4487
|
/**
|
|
4488
4488
|
* @public
|
|
@@ -4520,17 +4520,17 @@ export interface TaskTemplateField {
|
|
|
4520
4520
|
* <p>The description of the field.</p>
|
|
4521
4521
|
* @public
|
|
4522
4522
|
*/
|
|
4523
|
-
Description?: string;
|
|
4523
|
+
Description?: string | undefined;
|
|
4524
4524
|
/**
|
|
4525
4525
|
* <p>Indicates the type of field.</p>
|
|
4526
4526
|
* @public
|
|
4527
4527
|
*/
|
|
4528
|
-
Type?: TaskTemplateFieldType;
|
|
4528
|
+
Type?: TaskTemplateFieldType | undefined;
|
|
4529
4529
|
/**
|
|
4530
4530
|
* <p>A list of options for a single select field.</p>
|
|
4531
4531
|
* @public
|
|
4532
4532
|
*/
|
|
4533
|
-
SingleSelectOptions?: string[];
|
|
4533
|
+
SingleSelectOptions?: string[] | undefined;
|
|
4534
4534
|
}
|
|
4535
4535
|
/**
|
|
4536
4536
|
* @public
|
|
@@ -4562,29 +4562,29 @@ export interface CreateTaskTemplateRequest {
|
|
|
4562
4562
|
* <p>The description of the task template.</p>
|
|
4563
4563
|
* @public
|
|
4564
4564
|
*/
|
|
4565
|
-
Description?: string;
|
|
4565
|
+
Description?: string | undefined;
|
|
4566
4566
|
/**
|
|
4567
4567
|
* <p>The identifier of the flow that runs by default when a task is created by referencing this template.</p>
|
|
4568
4568
|
* @public
|
|
4569
4569
|
*/
|
|
4570
|
-
ContactFlowId?: string;
|
|
4570
|
+
ContactFlowId?: string | undefined;
|
|
4571
4571
|
/**
|
|
4572
4572
|
* <p>Constraints that are applicable to the fields listed.</p>
|
|
4573
4573
|
* @public
|
|
4574
4574
|
*/
|
|
4575
|
-
Constraints?: TaskTemplateConstraints;
|
|
4575
|
+
Constraints?: TaskTemplateConstraints | undefined;
|
|
4576
4576
|
/**
|
|
4577
4577
|
* <p>The default values for fields when a task is created by referencing this template.</p>
|
|
4578
4578
|
* @public
|
|
4579
4579
|
*/
|
|
4580
|
-
Defaults?: TaskTemplateDefaults;
|
|
4580
|
+
Defaults?: TaskTemplateDefaults | undefined;
|
|
4581
4581
|
/**
|
|
4582
4582
|
* <p>Marks a template as <code>ACTIVE</code> or <code>INACTIVE</code> for a task to refer to it.
|
|
4583
4583
|
* Tasks can only be created from <code>ACTIVE</code> templates.
|
|
4584
4584
|
* If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created. </p>
|
|
4585
4585
|
* @public
|
|
4586
4586
|
*/
|
|
4587
|
-
Status?: TaskTemplateStatus;
|
|
4587
|
+
Status?: TaskTemplateStatus | undefined;
|
|
4588
4588
|
/**
|
|
4589
4589
|
* <p>Fields that are part of the template.</p>
|
|
4590
4590
|
* @public
|
|
@@ -4597,7 +4597,7 @@ export interface CreateTaskTemplateRequest {
|
|
|
4597
4597
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
4598
4598
|
* @public
|
|
4599
4599
|
*/
|
|
4600
|
-
ClientToken?: string;
|
|
4600
|
+
ClientToken?: string | undefined;
|
|
4601
4601
|
}
|
|
4602
4602
|
/**
|
|
4603
4603
|
* @public
|
|
@@ -4659,7 +4659,7 @@ export declare class PropertyValidationException extends __BaseException {
|
|
|
4659
4659
|
readonly name: "PropertyValidationException";
|
|
4660
4660
|
readonly $fault: "client";
|
|
4661
4661
|
Message: string | undefined;
|
|
4662
|
-
PropertyList?: PropertyValidationExceptionProperty[];
|
|
4662
|
+
PropertyList?: PropertyValidationExceptionProperty[] | undefined;
|
|
4663
4663
|
/**
|
|
4664
4664
|
* @internal
|
|
4665
4665
|
*/
|
|
@@ -4678,7 +4678,7 @@ export interface CreateTrafficDistributionGroupRequest {
|
|
|
4678
4678
|
* <p>A description for the traffic distribution group.</p>
|
|
4679
4679
|
* @public
|
|
4680
4680
|
*/
|
|
4681
|
-
Description?: string;
|
|
4681
|
+
Description?: string | undefined;
|
|
4682
4682
|
/**
|
|
4683
4683
|
* <p>The identifier of the Amazon Connect instance that has been replicated. You can find the
|
|
4684
4684
|
* <code>instanceId</code> in the ARN of the instance.</p>
|
|
@@ -4692,12 +4692,12 @@ export interface CreateTrafficDistributionGroupRequest {
|
|
|
4692
4692
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
4693
4693
|
* @public
|
|
4694
4694
|
*/
|
|
4695
|
-
ClientToken?: string;
|
|
4695
|
+
ClientToken?: string | undefined;
|
|
4696
4696
|
/**
|
|
4697
4697
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
4698
4698
|
* @public
|
|
4699
4699
|
*/
|
|
4700
|
-
Tags?: Record<string, string
|
|
4700
|
+
Tags?: Record<string, string> | undefined;
|
|
4701
4701
|
}
|
|
4702
4702
|
/**
|
|
4703
4703
|
* @public
|
|
@@ -4708,12 +4708,12 @@ export interface CreateTrafficDistributionGroupResponse {
|
|
|
4708
4708
|
* This can be the ID or the ARN of the traffic distribution group.</p>
|
|
4709
4709
|
* @public
|
|
4710
4710
|
*/
|
|
4711
|
-
Id?: string;
|
|
4711
|
+
Id?: string | undefined;
|
|
4712
4712
|
/**
|
|
4713
4713
|
* <p>The Amazon Resource Name (ARN) of the traffic distribution group.</p>
|
|
4714
4714
|
* @public
|
|
4715
4715
|
*/
|
|
4716
|
-
Arn?: string;
|
|
4716
|
+
Arn?: string | undefined;
|
|
4717
4717
|
}
|
|
4718
4718
|
/**
|
|
4719
4719
|
* <p>The resource is not ready.</p>
|
|
@@ -4722,7 +4722,7 @@ export interface CreateTrafficDistributionGroupResponse {
|
|
|
4722
4722
|
export declare class ResourceNotReadyException extends __BaseException {
|
|
4723
4723
|
readonly name: "ResourceNotReadyException";
|
|
4724
4724
|
readonly $fault: "client";
|
|
4725
|
-
Message?: string;
|
|
4725
|
+
Message?: string | undefined;
|
|
4726
4726
|
/**
|
|
4727
4727
|
* @internal
|
|
4728
4728
|
*/
|
|
@@ -4764,7 +4764,7 @@ export interface CreateUseCaseRequest {
|
|
|
4764
4764
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
4765
4765
|
* @public
|
|
4766
4766
|
*/
|
|
4767
|
-
Tags?: Record<string, string
|
|
4767
|
+
Tags?: Record<string, string> | undefined;
|
|
4768
4768
|
}
|
|
4769
4769
|
/**
|
|
4770
4770
|
* @public
|
|
@@ -4774,12 +4774,12 @@ export interface CreateUseCaseResponse {
|
|
|
4774
4774
|
* <p>The identifier of the use case.</p>
|
|
4775
4775
|
* @public
|
|
4776
4776
|
*/
|
|
4777
|
-
UseCaseId?: string;
|
|
4777
|
+
UseCaseId?: string | undefined;
|
|
4778
4778
|
/**
|
|
4779
4779
|
* <p>The Amazon Resource Name (ARN) for the use case.</p>
|
|
4780
4780
|
* @public
|
|
4781
4781
|
*/
|
|
4782
|
-
UseCaseArn?: string;
|
|
4782
|
+
UseCaseArn?: string | undefined;
|
|
4783
4783
|
}
|
|
4784
4784
|
/**
|
|
4785
4785
|
* <p>Contains information about the identity of a user.</p>
|
|
@@ -4803,19 +4803,19 @@ export interface UserIdentityInfo {
|
|
|
4803
4803
|
* management.</p>
|
|
4804
4804
|
* @public
|
|
4805
4805
|
*/
|
|
4806
|
-
FirstName?: string;
|
|
4806
|
+
FirstName?: string | undefined;
|
|
4807
4807
|
/**
|
|
4808
4808
|
* <p>The last name. This is required if you are using Amazon Connect or SAML for identity
|
|
4809
4809
|
* management.</p>
|
|
4810
4810
|
* @public
|
|
4811
4811
|
*/
|
|
4812
|
-
LastName?: string;
|
|
4812
|
+
LastName?: string | undefined;
|
|
4813
4813
|
/**
|
|
4814
4814
|
* <p>The email address. If you are using SAML for identity management and include this parameter,
|
|
4815
4815
|
* an error is returned.</p>
|
|
4816
4816
|
* @public
|
|
4817
4817
|
*/
|
|
4818
|
-
Email?: string;
|
|
4818
|
+
Email?: string | undefined;
|
|
4819
4819
|
/**
|
|
4820
4820
|
* <p>The user's secondary email address. If you provide a secondary email, the user receives
|
|
4821
4821
|
* email notifications - other than password reset notifications - to this email address instead of
|
|
@@ -4824,12 +4824,12 @@ export interface UserIdentityInfo {
|
|
|
4824
4824
|
* </p>
|
|
4825
4825
|
* @public
|
|
4826
4826
|
*/
|
|
4827
|
-
SecondaryEmail?: string;
|
|
4827
|
+
SecondaryEmail?: string | undefined;
|
|
4828
4828
|
/**
|
|
4829
4829
|
* <p>The user's mobile number.</p>
|
|
4830
4830
|
* @public
|
|
4831
4831
|
*/
|
|
4832
|
-
Mobile?: string;
|
|
4832
|
+
Mobile?: string | undefined;
|
|
4833
4833
|
}
|
|
4834
4834
|
/**
|
|
4835
4835
|
* @public
|
|
@@ -4857,7 +4857,7 @@ export interface UserPhoneConfig {
|
|
|
4857
4857
|
* <p>The Auto accept setting.</p>
|
|
4858
4858
|
* @public
|
|
4859
4859
|
*/
|
|
4860
|
-
AutoAccept?: boolean;
|
|
4860
|
+
AutoAccept?: boolean | undefined;
|
|
4861
4861
|
/**
|
|
4862
4862
|
* <p>The After Call Work (ACW) timeout setting, in seconds. This parameter has a minimum value of
|
|
4863
4863
|
* 0 and a maximum value of 2,000,000 seconds (24 days). Enter 0 if you don't want to allocate a
|
|
@@ -4869,12 +4869,12 @@ export interface UserPhoneConfig {
|
|
|
4869
4869
|
* </note>
|
|
4870
4870
|
* @public
|
|
4871
4871
|
*/
|
|
4872
|
-
AfterContactWorkTimeLimit?: number;
|
|
4872
|
+
AfterContactWorkTimeLimit?: number | undefined;
|
|
4873
4873
|
/**
|
|
4874
4874
|
* <p>The phone number for the user's desk phone.</p>
|
|
4875
4875
|
* @public
|
|
4876
4876
|
*/
|
|
4877
|
-
DeskPhoneNumber?: string;
|
|
4877
|
+
DeskPhoneNumber?: string | undefined;
|
|
4878
4878
|
}
|
|
4879
4879
|
/**
|
|
4880
4880
|
* @public
|
|
@@ -4903,12 +4903,12 @@ export interface CreateUserRequest {
|
|
|
4903
4903
|
* <p>The password for the user account. A password is required if you are using Amazon Connect for identity management. Otherwise, it is an error to include a password.</p>
|
|
4904
4904
|
* @public
|
|
4905
4905
|
*/
|
|
4906
|
-
Password?: string;
|
|
4906
|
+
Password?: string | undefined;
|
|
4907
4907
|
/**
|
|
4908
4908
|
* <p>The information about the identity of the user.</p>
|
|
4909
4909
|
* @public
|
|
4910
4910
|
*/
|
|
4911
|
-
IdentityInfo?: UserIdentityInfo;
|
|
4911
|
+
IdentityInfo?: UserIdentityInfo | undefined;
|
|
4912
4912
|
/**
|
|
4913
4913
|
* <p>The phone settings for the user.</p>
|
|
4914
4914
|
* @public
|
|
@@ -4924,7 +4924,7 @@ export interface CreateUserRequest {
|
|
|
4924
4924
|
* returned.</p>
|
|
4925
4925
|
* @public
|
|
4926
4926
|
*/
|
|
4927
|
-
DirectoryUserId?: string;
|
|
4927
|
+
DirectoryUserId?: string | undefined;
|
|
4928
4928
|
/**
|
|
4929
4929
|
* <p>The identifier of the security profile for the user.</p>
|
|
4930
4930
|
* @public
|
|
@@ -4939,7 +4939,7 @@ export interface CreateUserRequest {
|
|
|
4939
4939
|
* <p>The identifier of the hierarchy group for the user.</p>
|
|
4940
4940
|
* @public
|
|
4941
4941
|
*/
|
|
4942
|
-
HierarchyGroupId?: string;
|
|
4942
|
+
HierarchyGroupId?: string | undefined;
|
|
4943
4943
|
/**
|
|
4944
4944
|
* <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>
|
|
4945
4945
|
* @public
|
|
@@ -4949,7 +4949,7 @@ export interface CreateUserRequest {
|
|
|
4949
4949
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
4950
4950
|
* @public
|
|
4951
4951
|
*/
|
|
4952
|
-
Tags?: Record<string, string
|
|
4952
|
+
Tags?: Record<string, string> | undefined;
|
|
4953
4953
|
}
|
|
4954
4954
|
/**
|
|
4955
4955
|
* @public
|
|
@@ -4959,12 +4959,12 @@ export interface CreateUserResponse {
|
|
|
4959
4959
|
* <p>The identifier of the user account.</p>
|
|
4960
4960
|
* @public
|
|
4961
4961
|
*/
|
|
4962
|
-
UserId?: string;
|
|
4962
|
+
UserId?: string | undefined;
|
|
4963
4963
|
/**
|
|
4964
4964
|
* <p>The Amazon Resource Name (ARN) of the user account.</p>
|
|
4965
4965
|
* @public
|
|
4966
4966
|
*/
|
|
4967
|
-
UserArn?: string;
|
|
4967
|
+
UserArn?: string | undefined;
|
|
4968
4968
|
}
|
|
4969
4969
|
/**
|
|
4970
4970
|
* @public
|
|
@@ -4980,7 +4980,7 @@ export interface CreateUserHierarchyGroupRequest {
|
|
|
4980
4980
|
* the parent group ID is null.</p>
|
|
4981
4981
|
* @public
|
|
4982
4982
|
*/
|
|
4983
|
-
ParentGroupId?: string;
|
|
4983
|
+
ParentGroupId?: string | undefined;
|
|
4984
4984
|
/**
|
|
4985
4985
|
* <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>
|
|
4986
4986
|
* @public
|
|
@@ -4990,7 +4990,7 @@ export interface CreateUserHierarchyGroupRequest {
|
|
|
4990
4990
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
4991
4991
|
* @public
|
|
4992
4992
|
*/
|
|
4993
|
-
Tags?: Record<string, string
|
|
4993
|
+
Tags?: Record<string, string> | undefined;
|
|
4994
4994
|
}
|
|
4995
4995
|
/**
|
|
4996
4996
|
* @public
|
|
@@ -5000,12 +5000,12 @@ export interface CreateUserHierarchyGroupResponse {
|
|
|
5000
5000
|
* <p>The identifier of the hierarchy group.</p>
|
|
5001
5001
|
* @public
|
|
5002
5002
|
*/
|
|
5003
|
-
HierarchyGroupId?: string;
|
|
5003
|
+
HierarchyGroupId?: string | undefined;
|
|
5004
5004
|
/**
|
|
5005
5005
|
* <p>The Amazon Resource Name (ARN) of the hierarchy group. </p>
|
|
5006
5006
|
* @public
|
|
5007
5007
|
*/
|
|
5008
|
-
HierarchyGroupArn?: string;
|
|
5008
|
+
HierarchyGroupArn?: string | undefined;
|
|
5009
5009
|
}
|
|
5010
5010
|
/**
|
|
5011
5011
|
* <p>View content containing all content necessary to render a view except for runtime input data
|
|
@@ -5017,12 +5017,12 @@ export interface ViewInputContent {
|
|
|
5017
5017
|
* <p>The view template representing the structure of the view.</p>
|
|
5018
5018
|
* @public
|
|
5019
5019
|
*/
|
|
5020
|
-
Template?: string;
|
|
5020
|
+
Template?: string | undefined;
|
|
5021
5021
|
/**
|
|
5022
5022
|
* <p>A list of possible actions from the view.</p>
|
|
5023
5023
|
* @public
|
|
5024
5024
|
*/
|
|
5025
|
-
Actions?: string[];
|
|
5025
|
+
Actions?: string[] | undefined;
|
|
5026
5026
|
}
|
|
5027
5027
|
/**
|
|
5028
5028
|
* @public
|
|
@@ -5051,7 +5051,7 @@ export interface CreateViewRequest {
|
|
|
5051
5051
|
* view is idempotent ClientToken is provided.</p>
|
|
5052
5052
|
* @public
|
|
5053
5053
|
*/
|
|
5054
|
-
ClientToken?: string;
|
|
5054
|
+
ClientToken?: string | undefined;
|
|
5055
5055
|
/**
|
|
5056
5056
|
* <p>Indicates the view status as either <code>SAVED</code> or <code>PUBLISHED</code>. The
|
|
5057
5057
|
* <code>PUBLISHED</code> status will initiate validation on the content.</p>
|
|
@@ -5069,7 +5069,7 @@ export interface CreateViewRequest {
|
|
|
5069
5069
|
* <p>The description of the view.</p>
|
|
5070
5070
|
* @public
|
|
5071
5071
|
*/
|
|
5072
|
-
Description?: string;
|
|
5072
|
+
Description?: string | undefined;
|
|
5073
5073
|
/**
|
|
5074
5074
|
* <p>The name of the view.</p>
|
|
5075
5075
|
* @public
|
|
@@ -5081,7 +5081,7 @@ export interface CreateViewRequest {
|
|
|
5081
5081
|
* \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
5082
5082
|
* @public
|
|
5083
5083
|
*/
|
|
5084
|
-
Tags?: Record<string, string
|
|
5084
|
+
Tags?: Record<string, string> | undefined;
|
|
5085
5085
|
}
|
|
5086
5086
|
/**
|
|
5087
5087
|
* <p>View content containing all content necessary to render a view except for runtime input
|
|
@@ -5093,17 +5093,17 @@ export interface ViewContent {
|
|
|
5093
5093
|
* <p>The data schema matching data that the view template must be provided to render.</p>
|
|
5094
5094
|
* @public
|
|
5095
5095
|
*/
|
|
5096
|
-
InputSchema?: string;
|
|
5096
|
+
InputSchema?: string | undefined;
|
|
5097
5097
|
/**
|
|
5098
5098
|
* <p>The view template representing the structure of the view.</p>
|
|
5099
5099
|
* @public
|
|
5100
5100
|
*/
|
|
5101
|
-
Template?: string;
|
|
5101
|
+
Template?: string | undefined;
|
|
5102
5102
|
/**
|
|
5103
5103
|
* <p>A list of possible actions from the view.</p>
|
|
5104
5104
|
* @public
|
|
5105
5105
|
*/
|
|
5106
|
-
Actions?: string[];
|
|
5106
|
+
Actions?: string[] | undefined;
|
|
5107
5107
|
}
|
|
5108
5108
|
/**
|
|
5109
5109
|
* @public
|
|
@@ -5126,70 +5126,70 @@ export interface View {
|
|
|
5126
5126
|
* <p>The identifier of the view.</p>
|
|
5127
5127
|
* @public
|
|
5128
5128
|
*/
|
|
5129
|
-
Id?: string;
|
|
5129
|
+
Id?: string | undefined;
|
|
5130
5130
|
/**
|
|
5131
5131
|
* <p>The Amazon Resource Name (ARN) of the view.</p>
|
|
5132
5132
|
* @public
|
|
5133
5133
|
*/
|
|
5134
|
-
Arn?: string;
|
|
5134
|
+
Arn?: string | undefined;
|
|
5135
5135
|
/**
|
|
5136
5136
|
* <p>The name of the view.</p>
|
|
5137
5137
|
* @public
|
|
5138
5138
|
*/
|
|
5139
|
-
Name?: string;
|
|
5139
|
+
Name?: string | undefined;
|
|
5140
5140
|
/**
|
|
5141
5141
|
* <p>Indicates the view status as either <code>SAVED</code> or <code>PUBLISHED</code>. The
|
|
5142
5142
|
* <code>PUBLISHED</code> status will initiate validation on the content.</p>
|
|
5143
5143
|
* @public
|
|
5144
5144
|
*/
|
|
5145
|
-
Status?: ViewStatus;
|
|
5145
|
+
Status?: ViewStatus | undefined;
|
|
5146
5146
|
/**
|
|
5147
5147
|
* <p>The type of the view - <code>CUSTOMER_MANAGED</code>.</p>
|
|
5148
5148
|
* @public
|
|
5149
5149
|
*/
|
|
5150
|
-
Type?: ViewType;
|
|
5150
|
+
Type?: ViewType | undefined;
|
|
5151
5151
|
/**
|
|
5152
5152
|
* <p>The description of the view.</p>
|
|
5153
5153
|
* @public
|
|
5154
5154
|
*/
|
|
5155
|
-
Description?: string;
|
|
5155
|
+
Description?: string | undefined;
|
|
5156
5156
|
/**
|
|
5157
5157
|
* <p>Current version of the view.</p>
|
|
5158
5158
|
* @public
|
|
5159
5159
|
*/
|
|
5160
|
-
Version?: number;
|
|
5160
|
+
Version?: number | undefined;
|
|
5161
5161
|
/**
|
|
5162
5162
|
* <p>The description of the version.</p>
|
|
5163
5163
|
* @public
|
|
5164
5164
|
*/
|
|
5165
|
-
VersionDescription?: string;
|
|
5165
|
+
VersionDescription?: string | undefined;
|
|
5166
5166
|
/**
|
|
5167
5167
|
* <p>View content containing all content necessary to render a view except for runtime input
|
|
5168
5168
|
* data.</p>
|
|
5169
5169
|
* @public
|
|
5170
5170
|
*/
|
|
5171
|
-
Content?: ViewContent;
|
|
5171
|
+
Content?: ViewContent | undefined;
|
|
5172
5172
|
/**
|
|
5173
5173
|
* <p>The tags associated with the view resource (not specific to view version).</p>
|
|
5174
5174
|
* @public
|
|
5175
5175
|
*/
|
|
5176
|
-
Tags?: Record<string, string
|
|
5176
|
+
Tags?: Record<string, string> | undefined;
|
|
5177
5177
|
/**
|
|
5178
5178
|
* <p>The timestamp of when the view was created.</p>
|
|
5179
5179
|
* @public
|
|
5180
5180
|
*/
|
|
5181
|
-
CreatedTime?: Date;
|
|
5181
|
+
CreatedTime?: Date | undefined;
|
|
5182
5182
|
/**
|
|
5183
5183
|
* <p>Latest timestamp of the <code>UpdateViewContent</code> or <code>CreateViewVersion</code>
|
|
5184
5184
|
* operations.</p>
|
|
5185
5185
|
* @public
|
|
5186
5186
|
*/
|
|
5187
|
-
LastModifiedTime?: Date;
|
|
5187
|
+
LastModifiedTime?: Date | undefined;
|
|
5188
5188
|
/**
|
|
5189
5189
|
* <p>Indicates the checksum value of the latest published view content.</p>
|
|
5190
5190
|
* @public
|
|
5191
5191
|
*/
|
|
5192
|
-
ViewContentSha256?: string;
|
|
5192
|
+
ViewContentSha256?: string | undefined;
|
|
5193
5193
|
}
|
|
5194
5194
|
/**
|
|
5195
5195
|
* @public
|
|
@@ -5199,7 +5199,7 @@ export interface CreateViewResponse {
|
|
|
5199
5199
|
* <p>A view resource object. Contains metadata and content necessary to render the view.</p>
|
|
5200
5200
|
* @public
|
|
5201
5201
|
*/
|
|
5202
|
-
View?: View;
|
|
5202
|
+
View?: View | undefined;
|
|
5203
5203
|
}
|
|
5204
5204
|
/**
|
|
5205
5205
|
* @public
|
|
@@ -5226,17 +5226,17 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
|
5226
5226
|
export declare class ResourceInUseException extends __BaseException {
|
|
5227
5227
|
readonly name: "ResourceInUseException";
|
|
5228
5228
|
readonly $fault: "client";
|
|
5229
|
-
Message?: string;
|
|
5229
|
+
Message?: string | undefined;
|
|
5230
5230
|
/**
|
|
5231
5231
|
* <p>The type of resource.</p>
|
|
5232
5232
|
* @public
|
|
5233
5233
|
*/
|
|
5234
|
-
ResourceType?: ResourceType;
|
|
5234
|
+
ResourceType?: ResourceType | undefined;
|
|
5235
5235
|
/**
|
|
5236
5236
|
* <p>The identifier for the resource.</p>
|
|
5237
5237
|
* @public
|
|
5238
5238
|
*/
|
|
5239
|
-
ResourceId?: string;
|
|
5239
|
+
ResourceId?: string | undefined;
|
|
5240
5240
|
/**
|
|
5241
5241
|
* @internal
|
|
5242
5242
|
*/
|
|
@@ -5249,7 +5249,7 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
5249
5249
|
export declare class TooManyRequestsException extends __BaseException {
|
|
5250
5250
|
readonly name: "TooManyRequestsException";
|
|
5251
5251
|
readonly $fault: "client";
|
|
5252
|
-
Message?: string;
|
|
5252
|
+
Message?: string | undefined;
|
|
5253
5253
|
/**
|
|
5254
5254
|
* @internal
|
|
5255
5255
|
*/
|
|
@@ -5275,12 +5275,12 @@ export interface CreateViewVersionRequest {
|
|
|
5275
5275
|
* <p>The description for the version being published.</p>
|
|
5276
5276
|
* @public
|
|
5277
5277
|
*/
|
|
5278
|
-
VersionDescription?: string;
|
|
5278
|
+
VersionDescription?: string | undefined;
|
|
5279
5279
|
/**
|
|
5280
5280
|
* <p>Indicates the checksum value of the latest published view content.</p>
|
|
5281
5281
|
* @public
|
|
5282
5282
|
*/
|
|
5283
|
-
ViewContentSha256?: string;
|
|
5283
|
+
ViewContentSha256?: string | undefined;
|
|
5284
5284
|
}
|
|
5285
5285
|
/**
|
|
5286
5286
|
* @public
|
|
@@ -5290,7 +5290,7 @@ export interface CreateViewVersionResponse {
|
|
|
5290
5290
|
* <p>All view data is contained within the View object.</p>
|
|
5291
5291
|
* @public
|
|
5292
5292
|
*/
|
|
5293
|
-
View?: View;
|
|
5293
|
+
View?: View | undefined;
|
|
5294
5294
|
}
|
|
5295
5295
|
/**
|
|
5296
5296
|
* @public
|
|
@@ -5304,7 +5304,7 @@ export interface CreateVocabularyRequest {
|
|
|
5304
5304
|
* subsequent requests return the previous response without creating a vocabulary again.</p>
|
|
5305
5305
|
* @public
|
|
5306
5306
|
*/
|
|
5307
|
-
ClientToken?: string;
|
|
5307
|
+
ClientToken?: string | undefined;
|
|
5308
5308
|
/**
|
|
5309
5309
|
* <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>
|
|
5310
5310
|
* @public
|
|
@@ -5335,7 +5335,7 @@ export interface CreateVocabularyRequest {
|
|
|
5335
5335
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
5336
5336
|
* @public
|
|
5337
5337
|
*/
|
|
5338
|
-
Tags?: Record<string, string
|
|
5338
|
+
Tags?: Record<string, string> | undefined;
|
|
5339
5339
|
}
|
|
5340
5340
|
/**
|
|
5341
5341
|
* @public
|
|
@@ -5516,7 +5516,7 @@ export interface DeleteEvaluationFormRequest {
|
|
|
5516
5516
|
* <p>The unique identifier for the evaluation form.</p>
|
|
5517
5517
|
* @public
|
|
5518
5518
|
*/
|
|
5519
|
-
EvaluationFormVersion?: number;
|
|
5519
|
+
EvaluationFormVersion?: number | undefined;
|
|
5520
5520
|
}
|
|
5521
5521
|
/**
|
|
5522
5522
|
* @public
|
|
@@ -5857,7 +5857,7 @@ export interface DescribeAgentStatusResponse {
|
|
|
5857
5857
|
* <p>The agent status.</p>
|
|
5858
5858
|
* @public
|
|
5859
5859
|
*/
|
|
5860
|
-
AgentStatus?: AgentStatus;
|
|
5860
|
+
AgentStatus?: AgentStatus | undefined;
|
|
5861
5861
|
}
|
|
5862
5862
|
/**
|
|
5863
5863
|
* @public
|
|
@@ -5889,22 +5889,22 @@ export interface AuthenticationProfile {
|
|
|
5889
5889
|
* <p>A unique identifier for the authentication profile. </p>
|
|
5890
5890
|
* @public
|
|
5891
5891
|
*/
|
|
5892
|
-
Id?: string;
|
|
5892
|
+
Id?: string | undefined;
|
|
5893
5893
|
/**
|
|
5894
5894
|
* <p>The Amazon Resource Name (ARN) for the authentication profile.</p>
|
|
5895
5895
|
* @public
|
|
5896
5896
|
*/
|
|
5897
|
-
Arn?: string;
|
|
5897
|
+
Arn?: string | undefined;
|
|
5898
5898
|
/**
|
|
5899
5899
|
* <p>The name for the authentication profile.</p>
|
|
5900
5900
|
* @public
|
|
5901
5901
|
*/
|
|
5902
|
-
Name?: string;
|
|
5902
|
+
Name?: string | undefined;
|
|
5903
5903
|
/**
|
|
5904
5904
|
* <p>The description for the authentication profile.</p>
|
|
5905
5905
|
* @public
|
|
5906
5906
|
*/
|
|
5907
|
-
Description?: string;
|
|
5907
|
+
Description?: string | undefined;
|
|
5908
5908
|
/**
|
|
5909
5909
|
* <p>A list of IP address range strings that are allowed to access the Amazon Connect
|
|
5910
5910
|
* instance. For more information about how to configure IP addresses, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-ip-based-ac">Configure IP
|
|
@@ -5912,7 +5912,7 @@ export interface AuthenticationProfile {
|
|
|
5912
5912
|
* Guide</i>.</p>
|
|
5913
5913
|
* @public
|
|
5914
5914
|
*/
|
|
5915
|
-
AllowedIps?: string[];
|
|
5915
|
+
AllowedIps?: string[] | undefined;
|
|
5916
5916
|
/**
|
|
5917
5917
|
* <p>A list of IP address range strings that are blocked from accessing the Amazon Connect
|
|
5918
5918
|
* instance. For more information about how to configure IP addresses, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-ip-based-ac">Configure IP
|
|
@@ -5920,29 +5920,29 @@ export interface AuthenticationProfile {
|
|
|
5920
5920
|
* Guide</i>.</p>
|
|
5921
5921
|
* @public
|
|
5922
5922
|
*/
|
|
5923
|
-
BlockedIps?: string[];
|
|
5923
|
+
BlockedIps?: string[] | undefined;
|
|
5924
5924
|
/**
|
|
5925
5925
|
* <p>Shows whether the authentication profile is the default authentication profile for the
|
|
5926
5926
|
* Amazon Connect instance. The default authentication profile applies to all agents in an
|
|
5927
5927
|
* Amazon Connect instance, unless overridden by another authentication profile.</p>
|
|
5928
5928
|
* @public
|
|
5929
5929
|
*/
|
|
5930
|
-
IsDefault?: boolean;
|
|
5930
|
+
IsDefault?: boolean | undefined;
|
|
5931
5931
|
/**
|
|
5932
5932
|
* <p>The timestamp when the authentication profile was created.</p>
|
|
5933
5933
|
* @public
|
|
5934
5934
|
*/
|
|
5935
|
-
CreatedTime?: Date;
|
|
5935
|
+
CreatedTime?: Date | undefined;
|
|
5936
5936
|
/**
|
|
5937
5937
|
* <p>The timestamp when the authentication profile was last modified.</p>
|
|
5938
5938
|
* @public
|
|
5939
5939
|
*/
|
|
5940
|
-
LastModifiedTime?: Date;
|
|
5940
|
+
LastModifiedTime?: Date | undefined;
|
|
5941
5941
|
/**
|
|
5942
5942
|
* <p>The Amazon Web Services Region where the authentication profile was last modified.</p>
|
|
5943
5943
|
* @public
|
|
5944
5944
|
*/
|
|
5945
|
-
LastModifiedRegion?: string;
|
|
5945
|
+
LastModifiedRegion?: string | undefined;
|
|
5946
5946
|
/**
|
|
5947
5947
|
* <p>The short lived session duration configuration for users logged in to Amazon Connect, in
|
|
5948
5948
|
* minutes. This value determines the maximum possible time before an agent is authenticated. For
|
|
@@ -5950,14 +5950,14 @@ export interface AuthenticationProfile {
|
|
|
5950
5950
|
* Guide</i>.</p>
|
|
5951
5951
|
* @public
|
|
5952
5952
|
*/
|
|
5953
|
-
PeriodicSessionDuration?: number;
|
|
5953
|
+
PeriodicSessionDuration?: number | undefined;
|
|
5954
5954
|
/**
|
|
5955
5955
|
* <p>The long lived session duration for users logged in to Amazon Connect, in minutes. After
|
|
5956
5956
|
* this time period, users must log in again. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-session-timeouts">Configure the session duration</a> in the <i>Amazon Connect Administrator
|
|
5957
5957
|
* Guide</i>.</p>
|
|
5958
5958
|
* @public
|
|
5959
5959
|
*/
|
|
5960
|
-
MaxSessionDuration?: number;
|
|
5960
|
+
MaxSessionDuration?: number | undefined;
|
|
5961
5961
|
}
|
|
5962
5962
|
/**
|
|
5963
5963
|
* @public
|
|
@@ -5967,7 +5967,7 @@ export interface DescribeAuthenticationProfileResponse {
|
|
|
5967
5967
|
* <p>The authentication profile object being described.</p>
|
|
5968
5968
|
* @public
|
|
5969
5969
|
*/
|
|
5970
|
-
AuthenticationProfile?: AuthenticationProfile;
|
|
5970
|
+
AuthenticationProfile?: AuthenticationProfile | undefined;
|
|
5971
5971
|
}
|
|
5972
5972
|
/**
|
|
5973
5973
|
* @public
|
|
@@ -6017,14 +6017,14 @@ export interface Customer {
|
|
|
6017
6017
|
* <p>Information regarding Customer’s device.</p>
|
|
6018
6018
|
* @public
|
|
6019
6019
|
*/
|
|
6020
|
-
DeviceInfo?: DeviceInfo;
|
|
6020
|
+
DeviceInfo?: DeviceInfo | undefined;
|
|
6021
6021
|
/**
|
|
6022
6022
|
* <p>The configuration for the allowed video and screen sharing capabilities for participants present over the
|
|
6023
6023
|
* call. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/inapp-calling.html">Set up in-app, web,
|
|
6024
6024
|
* video calling, and screen sharing capabilities</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
6025
6025
|
* @public
|
|
6026
6026
|
*/
|
|
6027
|
-
Capabilities?: ParticipantCapabilities;
|
|
6027
|
+
Capabilities?: ParticipantCapabilities | undefined;
|
|
6028
6028
|
}
|
|
6029
6029
|
/**
|
|
6030
6030
|
* <p>Information about customer’s voice activity.</p>
|
|
@@ -6036,12 +6036,12 @@ export interface CustomerVoiceActivity {
|
|
|
6036
6036
|
* call.</p>
|
|
6037
6037
|
* @public
|
|
6038
6038
|
*/
|
|
6039
|
-
GreetingStartTimestamp?: Date;
|
|
6039
|
+
GreetingStartTimestamp?: Date | undefined;
|
|
6040
6040
|
/**
|
|
6041
6041
|
* <p>Timestamp that measures the end of the customer greeting from an outbound voice call.</p>
|
|
6042
6042
|
* @public
|
|
6043
6043
|
*/
|
|
6044
|
-
GreetingEndTimestamp?: Date;
|
|
6044
|
+
GreetingEndTimestamp?: Date | undefined;
|
|
6045
6045
|
}
|
|
6046
6046
|
/**
|
|
6047
6047
|
* <p>Information about the call disconnect experience.</p>
|
|
@@ -6053,7 +6053,7 @@ export interface DisconnectDetails {
|
|
|
6053
6053
|
* service does not detect potential issues.</p>
|
|
6054
6054
|
* @public
|
|
6055
6055
|
*/
|
|
6056
|
-
PotentialDisconnectIssue?: string;
|
|
6056
|
+
PotentialDisconnectIssue?: string | undefined;
|
|
6057
6057
|
}
|
|
6058
6058
|
/**
|
|
6059
6059
|
* <p>Information about the quality of the Customer's media connection</p>
|
|
@@ -6064,7 +6064,7 @@ export interface CustomerQualityMetrics {
|
|
|
6064
6064
|
* <p>Information about the audio quality of the Customer</p>
|
|
6065
6065
|
* @public
|
|
6066
6066
|
*/
|
|
6067
|
-
Audio?: AudioQualityMetricsInfo;
|
|
6067
|
+
Audio?: AudioQualityMetricsInfo | undefined;
|
|
6068
6068
|
}
|
|
6069
6069
|
/**
|
|
6070
6070
|
* <p>Information about the quality of the participant's media connection.</p>
|
|
@@ -6075,12 +6075,12 @@ export interface QualityMetrics {
|
|
|
6075
6075
|
* <p>Information about the quality of Agent media connection.</p>
|
|
6076
6076
|
* @public
|
|
6077
6077
|
*/
|
|
6078
|
-
Agent?: AgentQualityMetrics;
|
|
6078
|
+
Agent?: AgentQualityMetrics | undefined;
|
|
6079
6079
|
/**
|
|
6080
6080
|
* <p>Information about the quality of Customer media connection.</p>
|
|
6081
6081
|
* @public
|
|
6082
6082
|
*/
|
|
6083
|
-
Customer?: CustomerQualityMetrics;
|
|
6083
|
+
Customer?: CustomerQualityMetrics | undefined;
|
|
6084
6084
|
}
|
|
6085
6085
|
/**
|
|
6086
6086
|
* <p>If this contact was queued, this contains information about the queue. </p>
|
|
@@ -6091,12 +6091,12 @@ export interface QueueInfo {
|
|
|
6091
6091
|
* <p>The unique identifier for the queue.</p>
|
|
6092
6092
|
* @public
|
|
6093
6093
|
*/
|
|
6094
|
-
Id?: string;
|
|
6094
|
+
Id?: string | undefined;
|
|
6095
6095
|
/**
|
|
6096
6096
|
* <p>The timestamp when the contact was added to the queue.</p>
|
|
6097
6097
|
* @public
|
|
6098
6098
|
*/
|
|
6099
|
-
EnqueueTimestamp?: Date;
|
|
6099
|
+
EnqueueTimestamp?: Date | undefined;
|
|
6100
6100
|
}
|
|
6101
6101
|
/**
|
|
6102
6102
|
* <p>An object to specify the expiration of a routing step.</p>
|
|
@@ -6107,12 +6107,12 @@ export interface Expiry {
|
|
|
6107
6107
|
* <p>The number of seconds to wait before expiring the routing step.</p>
|
|
6108
6108
|
* @public
|
|
6109
6109
|
*/
|
|
6110
|
-
DurationInSeconds?: number;
|
|
6110
|
+
DurationInSeconds?: number | undefined;
|
|
6111
6111
|
/**
|
|
6112
6112
|
* <p>The timestamp indicating when the routing step expires.</p>
|
|
6113
6113
|
* @public
|
|
6114
6114
|
*/
|
|
6115
|
-
ExpiryTimestamp?: Date;
|
|
6115
|
+
ExpiryTimestamp?: Date | undefined;
|
|
6116
6116
|
}
|
|
6117
6117
|
/**
|
|
6118
6118
|
* <p>An object to define AgentsCriteria.</p>
|
|
@@ -6123,7 +6123,7 @@ export interface MatchCriteria {
|
|
|
6123
6123
|
* <p>An object to define agentIds.</p>
|
|
6124
6124
|
* @public
|
|
6125
6125
|
*/
|
|
6126
|
-
AgentsCriteria?: AgentsCriteria;
|
|
6126
|
+
AgentsCriteria?: AgentsCriteria | undefined;
|
|
6127
6127
|
}
|
|
6128
6128
|
/**
|
|
6129
6129
|
* @internal
|