@aws-sdk/client-connect 3.583.0 → 3.586.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist-cjs/index.js +211 -98
  2. package/dist-es/commands/DescribeContactCommand.js +1 -1
  3. package/dist-es/commands/ListViewVersionsCommand.js +1 -1
  4. package/dist-es/commands/ListViewsCommand.js +1 -1
  5. package/dist-es/models/models_0.js +25 -41
  6. package/dist-es/models/models_1.js +29 -33
  7. package/dist-es/models/models_2.js +42 -0
  8. package/dist-es/protocols/Aws_restJson1.js +94 -3
  9. package/dist-types/commands/ClaimPhoneNumberCommand.d.ts +6 -6
  10. package/dist-types/commands/DescribeContactCommand.d.ts +112 -1
  11. package/dist-types/commands/DescribeContactFlowCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeContactFlowModuleCommand.d.ts +1 -1
  13. package/dist-types/commands/DescribeEvaluationFormCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeHoursOfOperationCommand.d.ts +1 -2
  15. package/dist-types/commands/ListViewVersionsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListViewsCommand.d.ts +2 -1
  17. package/dist-types/commands/MonitorContactCommand.d.ts +1 -1
  18. package/dist-types/commands/PauseContactCommand.d.ts +1 -1
  19. package/dist-types/commands/PutUserStatusCommand.d.ts +1 -1
  20. package/dist-types/commands/ReleasePhoneNumberCommand.d.ts +10 -10
  21. package/dist-types/commands/StopContactCommand.d.ts +6 -0
  22. package/dist-types/commands/UpdateContactRoutingDataCommand.d.ts +5 -2
  23. package/dist-types/models/models_0.d.ts +255 -384
  24. package/dist-types/models/models_1.d.ts +248 -289
  25. package/dist-types/models/models_2.d.ts +551 -14
  26. package/dist-types/ts3.4/commands/DescribeContactCommand.d.ts +2 -4
  27. package/dist-types/ts3.4/commands/DescribeContactFlowCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/DescribeContactFlowModuleCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/DescribeEvaluationFormCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/commands/DescribeHoursOfOperationCommand.d.ts +4 -2
  31. package/dist-types/ts3.4/commands/ListViewVersionsCommand.d.ts +1 -1
  32. package/dist-types/ts3.4/commands/ListViewsCommand.d.ts +2 -1
  33. package/dist-types/ts3.4/commands/MonitorContactCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/PauseContactCommand.d.ts +1 -1
  35. package/dist-types/ts3.4/commands/PutUserStatusCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/ReleasePhoneNumberCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/models/models_0.d.ts +89 -118
  38. package/dist-types/ts3.4/models/models_1.d.ts +79 -79
  39. package/dist-types/ts3.4/models/models_2.d.ts +150 -8
  40. package/package.json +1 -1
@@ -313,6 +313,17 @@ export interface AgentContactReference {
313
313
  */
314
314
  Queue?: QueueReference;
315
315
  }
316
+ /**
317
+ * <p>Information about an agent hierarchy group.</p>
318
+ * @public
319
+ */
320
+ export interface AgentHierarchyGroup {
321
+ /**
322
+ * <p>The Amazon Resource Name (ARN) of the group.</p>
323
+ * @public
324
+ */
325
+ Arn?: string;
326
+ }
316
327
  /**
317
328
  * <p>A structure that defines search criteria for contacts using agent hierarchy group levels.
318
329
  * For more information about agent hierarchies, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/agent-hierarchy.html">Set Up Agent Hierarchies</a> in the
@@ -346,6 +357,82 @@ export interface AgentHierarchyGroups {
346
357
  */
347
358
  L5Ids?: string[];
348
359
  }
360
+ /**
361
+ * @public
362
+ * @enum
363
+ */
364
+ export declare const VideoCapability: {
365
+ readonly SEND: "SEND";
366
+ };
367
+ /**
368
+ * @public
369
+ */
370
+ export type VideoCapability = (typeof VideoCapability)[keyof typeof VideoCapability];
371
+ /**
372
+ * <p>The configuration for the allowed capabilities for participants present over the
373
+ * call.</p>
374
+ * @public
375
+ */
376
+ export interface ParticipantCapabilities {
377
+ /**
378
+ * <p>The configuration having the video sharing capabilities for participants over the
379
+ * call.</p>
380
+ * @public
381
+ */
382
+ Video?: VideoCapability;
383
+ }
384
+ /**
385
+ * <p>Information regarding the device.</p>
386
+ * @public
387
+ */
388
+ export interface DeviceInfo {
389
+ /**
390
+ * <p>Name of the platform that the participant used for the call.</p>
391
+ * @public
392
+ */
393
+ PlatformName?: string;
394
+ /**
395
+ * <p>Version of the platform that the participant used for the call.</p>
396
+ * @public
397
+ */
398
+ PlatformVersion?: string;
399
+ /**
400
+ * <p>Operating system that the participant used for the call.</p>
401
+ * @public
402
+ */
403
+ OperatingSystem?: string;
404
+ }
405
+ /**
406
+ * <p>Information about the agent hierarchy. Hierarchies can be configured with up to five levels.</p>
407
+ * @public
408
+ */
409
+ export interface HierarchyGroups {
410
+ /**
411
+ * <p>The group at level one of the agent hierarchy.</p>
412
+ * @public
413
+ */
414
+ Level1?: AgentHierarchyGroup;
415
+ /**
416
+ * <p>The group at level two of the agent hierarchy.</p>
417
+ * @public
418
+ */
419
+ Level2?: AgentHierarchyGroup;
420
+ /**
421
+ * <p>The group at level three of the agent hierarchy.</p>
422
+ * @public
423
+ */
424
+ Level3?: AgentHierarchyGroup;
425
+ /**
426
+ * <p>The group at level four of the agent hierarchy.</p>
427
+ * @public
428
+ */
429
+ Level4?: AgentHierarchyGroup;
430
+ /**
431
+ * <p>The group at level five of the agent hierarchy.</p>
432
+ * @public
433
+ */
434
+ Level5?: AgentHierarchyGroup;
435
+ }
349
436
  /**
350
437
  * <p>Information about the agent who accepted the contact.</p>
351
438
  * @public
@@ -366,6 +453,51 @@ export interface AgentInfo {
366
453
  * @public
367
454
  */
368
455
  AgentPauseDurationInSeconds?: number;
456
+ /**
457
+ * <p>The agent hierarchy groups for the agent.</p>
458
+ * @public
459
+ */
460
+ HierarchyGroups?: HierarchyGroups;
461
+ /**
462
+ * <p>Information regarding Agent’s device.</p>
463
+ * @public
464
+ */
465
+ DeviceInfo?: DeviceInfo;
466
+ /**
467
+ * <p>The configuration for the allowed capabilities for participants present over the
468
+ * call.</p>
469
+ * @public
470
+ */
471
+ Capabilities?: ParticipantCapabilities;
472
+ }
473
+ /**
474
+ * <p>Contains information for score and potential quality issues for Audio</p>
475
+ * @public
476
+ */
477
+ export interface AudioQualityMetricsInfo {
478
+ /**
479
+ * <p>Number measuring the estimated quality of the media connection.</p>
480
+ * @public
481
+ */
482
+ QualityScore?: number;
483
+ /**
484
+ * <p>List of potential issues causing degradation of quality on a media connection. If the service did not detect any potential quality issues the list is empty.</p>
485
+ * <p>Valid values: <code>HighPacketLoss</code> | <code>HighRoundTripTime</code> | <code>HighJitterBuffer</code>
486
+ * </p>
487
+ * @public
488
+ */
489
+ PotentialQualityIssues?: string[];
490
+ }
491
+ /**
492
+ * <p>Information about the quality of the Agent's media connection</p>
493
+ * @public
494
+ */
495
+ export interface AgentQualityMetrics {
496
+ /**
497
+ * <p>Information about the audio quality of the Agent</p>
498
+ * @public
499
+ */
500
+ Audio?: AudioQualityMetricsInfo;
369
501
  }
370
502
  /**
371
503
  * @public
@@ -505,30 +637,6 @@ export interface AgentStatusSummary {
505
637
  */
506
638
  LastModifiedRegion?: string;
507
639
  }
508
- /**
509
- * @public
510
- * @enum
511
- */
512
- export declare const VideoCapability: {
513
- readonly SEND: "SEND";
514
- };
515
- /**
516
- * @public
517
- */
518
- export type VideoCapability = (typeof VideoCapability)[keyof typeof VideoCapability];
519
- /**
520
- * <p>The configuration for the allowed capabilities for participants present over the
521
- * call.</p>
522
- * @public
523
- */
524
- export interface ParticipantCapabilities {
525
- /**
526
- * <p>The configuration having the video sharing capabilities for participants over the
527
- * call.</p>
528
- * @public
529
- */
530
- Video?: VideoCapability;
531
- }
532
640
  /**
533
641
  * <p>Information about the capabilities enabled for participants of the contact.</p>
534
642
  * @public
@@ -2093,7 +2201,7 @@ export interface CreateContactFlowRequest {
2093
2201
  Content: string | undefined;
2094
2202
  /**
2095
2203
  * <p>Indicates the flow status as either <code>SAVED</code> or <code>PUBLISHED</code>. The
2096
- * <code>PUBLISHED</code> status will initiate validation on the content. the <code>SAVED</code>
2204
+ * <code>PUBLISHED</code> status will initiate validation on the content. the <code>SAVED</code>
2097
2205
  * status does not initiate validation of the content. <code>SAVED</code> |
2098
2206
  * <code>PUBLISHED</code>.</p>
2099
2207
  * @public
@@ -5599,176 +5707,194 @@ export interface DescribeContactRequest {
5599
5707
  ContactId: string | undefined;
5600
5708
  }
5601
5709
  /**
5602
- * <p>If this contact was queued, this contains information about the queue. </p>
5603
5710
  * @public
5711
+ * @enum
5604
5712
  */
5605
- export interface QueueInfo {
5606
- /**
5607
- * <p>The unique identifier for the queue.</p>
5608
- * @public
5609
- */
5610
- Id?: string;
5611
- /**
5612
- * <p>The timestamp when the contact was added to the queue.</p>
5613
- * @public
5614
- */
5615
- EnqueueTimestamp?: Date;
5616
- }
5713
+ export declare const AnsweringMachineDetectionStatus: {
5714
+ readonly AMD_ERROR: "AMD_ERROR";
5715
+ readonly AMD_NOT_APPLICABLE: "AMD_NOT_APPLICABLE";
5716
+ readonly AMD_UNANSWERED: "AMD_UNANSWERED";
5717
+ readonly AMD_UNRESOLVED: "AMD_UNRESOLVED";
5718
+ readonly ANSWERED: "ANSWERED";
5719
+ readonly ERROR: "ERROR";
5720
+ readonly FAX_MACHINE_DETECTED: "FAX_MACHINE_DETECTED";
5721
+ readonly HUMAN_ANSWERED: "HUMAN_ANSWERED";
5722
+ readonly SIT_TONE_BUSY: "SIT_TONE_BUSY";
5723
+ readonly SIT_TONE_DETECTED: "SIT_TONE_DETECTED";
5724
+ readonly SIT_TONE_INVALID_NUMBER: "SIT_TONE_INVALID_NUMBER";
5725
+ readonly UNDETECTED: "UNDETECTED";
5726
+ readonly VOICEMAIL_BEEP: "VOICEMAIL_BEEP";
5727
+ readonly VOICEMAIL_NO_BEEP: "VOICEMAIL_NO_BEEP";
5728
+ };
5617
5729
  /**
5618
- * <p>Information about Amazon Connect Wisdom.</p>
5619
5730
  * @public
5620
5731
  */
5621
- export interface WisdomInfo {
5622
- /**
5623
- * <p>The Amazon Resource Name (ARN) of the Wisdom session.</p>
5624
- * @public
5625
- */
5626
- SessionArn?: string;
5627
- }
5732
+ export type AnsweringMachineDetectionStatus = (typeof AnsweringMachineDetectionStatus)[keyof typeof AnsweringMachineDetectionStatus];
5628
5733
  /**
5629
- * <p>Contains information about a contact.</p>
5734
+ * <p>Information about the Customer on the contact.</p>
5630
5735
  * @public
5631
5736
  */
5632
- export interface Contact {
5633
- /**
5634
- * <p>The Amazon Resource Name (ARN) for the contact.</p>
5635
- * @public
5636
- */
5637
- Arn?: string;
5737
+ export interface Customer {
5638
5738
  /**
5639
- * <p>The identifier for the contact.</p>
5739
+ * <p>Information regarding Customer’s device.</p>
5640
5740
  * @public
5641
5741
  */
5642
- Id?: string;
5643
- /**
5644
- * <p>If this contact is related to other contacts, this is the ID of the initial contact.</p>
5645
- * @public
5646
- */
5647
- InitialContactId?: string;
5648
- /**
5649
- * <p>If this contact is not the first contact, this is the ID of the previous contact.</p>
5650
- * @public
5651
- */
5652
- PreviousContactId?: string;
5653
- /**
5654
- * <p>Indicates how the contact was initiated.</p>
5655
- * @public
5656
- */
5657
- InitiationMethod?: ContactInitiationMethod;
5658
- /**
5659
- * <p>The name of the contact.</p>
5660
- * @public
5661
- */
5662
- Name?: string;
5663
- /**
5664
- * <p>The description of the contact.</p>
5665
- * @public
5666
- */
5667
- Description?: string;
5742
+ DeviceInfo?: DeviceInfo;
5668
5743
  /**
5669
- * <p>How the contact reached your contact center.</p>
5744
+ * <p>The configuration for the allowed capabilities for participants present over the
5745
+ * call.</p>
5670
5746
  * @public
5671
5747
  */
5672
- Channel?: Channel;
5748
+ Capabilities?: ParticipantCapabilities;
5749
+ }
5750
+ /**
5751
+ * <p>Information about customer’s voice activity.</p>
5752
+ * @public
5753
+ */
5754
+ export interface CustomerVoiceActivity {
5673
5755
  /**
5674
- * <p>If this contact was queued, this contains information about the queue. </p>
5756
+ * <p>Timestamp that measures the beginning of the customer greeting from an outbound voice call.</p>
5675
5757
  * @public
5676
5758
  */
5677
- QueueInfo?: QueueInfo;
5759
+ GreetingStartTimestamp?: Date;
5678
5760
  /**
5679
- * <p>Information about the agent who accepted the contact.</p>
5761
+ * <p>Timestamp that measures the end of the customer greeting from an outbound voice call.</p>
5680
5762
  * @public
5681
5763
  */
5682
- AgentInfo?: AgentInfo;
5764
+ GreetingEndTimestamp?: Date;
5765
+ }
5766
+ /**
5767
+ * <p>Information about the call disconnect experience.</p>
5768
+ * @public
5769
+ */
5770
+ export interface DisconnectDetails {
5683
5771
  /**
5684
- * <p>The date and time this contact was initiated, in UTC time. For <code>INBOUND</code>, this is
5685
- * when the contact arrived. For <code>OUTBOUND</code>, this is when the agent began dialing. For
5686
- * <code>CALLBACK</code>, this is when the callback contact was created. For <code>TRANSFER</code>
5687
- * and <code>QUEUE_TRANSFER</code>, this is when the transfer was initiated. For <code>API</code>,
5688
- * this is when the request arrived. For <code>EXTERNAL_OUTBOUND</code>, this is when the agent
5689
- * started dialing the external participant. For <code>MONITOR</code>, this is when the supervisor
5690
- * started listening to a contact.</p>
5772
+ * <p>Indicates the potential disconnection issues for a call. This field is not populated if the service does not detect potential issues.</p>
5691
5773
  * @public
5692
5774
  */
5693
- InitiationTimestamp?: Date;
5775
+ PotentialDisconnectIssue?: string;
5776
+ }
5777
+ /**
5778
+ * <p>Information about the quality of the Customer's media connection</p>
5779
+ * @public
5780
+ */
5781
+ export interface CustomerQualityMetrics {
5694
5782
  /**
5695
- * <p>The timestamp when the customer endpoint disconnected from Amazon Connect.</p>
5783
+ * <p>Information about the audio quality of the Customer</p>
5696
5784
  * @public
5697
5785
  */
5698
- DisconnectTimestamp?: Date;
5786
+ Audio?: AudioQualityMetricsInfo;
5787
+ }
5788
+ /**
5789
+ * <p>Information about the quality of the participant's media connection.</p>
5790
+ * @public
5791
+ */
5792
+ export interface QualityMetrics {
5699
5793
  /**
5700
- * <p>The timestamp when contact was last updated.</p>
5794
+ * <p>Information about the quality of Agent media connection.</p>
5701
5795
  * @public
5702
5796
  */
5703
- LastUpdateTimestamp?: Date;
5797
+ Agent?: AgentQualityMetrics;
5704
5798
  /**
5705
- * <p>The timestamp when the contact was last paused.</p>
5799
+ * <p>Information about the quality of Customer media connection.</p>
5706
5800
  * @public
5707
5801
  */
5708
- LastPausedTimestamp?: Date;
5802
+ Customer?: CustomerQualityMetrics;
5803
+ }
5804
+ /**
5805
+ * <p>If this contact was queued, this contains information about the queue. </p>
5806
+ * @public
5807
+ */
5808
+ export interface QueueInfo {
5709
5809
  /**
5710
- * <p>The timestamp when the contact was last resumed.</p>
5810
+ * <p>The unique identifier for the queue.</p>
5711
5811
  * @public
5712
5812
  */
5713
- LastResumedTimestamp?: Date;
5813
+ Id?: string;
5714
5814
  /**
5715
- * <p>Total pause count for a contact.</p>
5815
+ * <p>The timestamp when the contact was added to the queue.</p>
5716
5816
  * @public
5717
5817
  */
5718
- TotalPauseCount?: number;
5818
+ EnqueueTimestamp?: Date;
5819
+ }
5820
+ /**
5821
+ * <p>An object to specify the expiration of a routing step.</p>
5822
+ * @public
5823
+ */
5824
+ export interface Expiry {
5719
5825
  /**
5720
- * <p>Total pause duration for a contact in seconds.</p>
5826
+ * <p>The number of seconds to wait before expiring the routing step.</p>
5721
5827
  * @public
5722
5828
  */
5723
- TotalPauseDurationInSeconds?: number;
5829
+ DurationInSeconds?: number;
5724
5830
  /**
5725
- * <p>The timestamp, in Unix epoch time format, at which to start running the inbound flow.
5726
- * </p>
5831
+ * <p>The timestamp indicating when the routing step expires.</p>
5727
5832
  * @public
5728
5833
  */
5729
- ScheduledTimestamp?: Date;
5834
+ ExpiryTimestamp?: Date;
5835
+ }
5836
+ /**
5837
+ * <p>An object to specify the predefined attribute condition.</p>
5838
+ * @public
5839
+ */
5840
+ export interface AttributeCondition {
5730
5841
  /**
5731
- * <p>The contactId that is <a href="https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html#relatedcontactid">related</a> to this
5732
- * contact.</p>
5842
+ * <p>The name of predefined attribute.</p>
5733
5843
  * @public
5734
5844
  */
5735
- RelatedContactId?: string;
5845
+ Name?: string;
5736
5846
  /**
5737
- * <p>Information about Amazon Connect Wisdom.</p>
5847
+ * <p>The value of predefined attribute.</p>
5738
5848
  * @public
5739
5849
  */
5740
- WisdomInfo?: WisdomInfo;
5850
+ Value?: string;
5741
5851
  /**
5742
- * <p>An integer that represents the queue time adjust to be applied to the contact, in seconds
5743
- * (longer / larger queue time are routed preferentially). Cannot be specified if the QueuePriority
5744
- * is specified. Must be statically defined and a valid integer value.</p>
5852
+ * <p>The proficiency level of the condition.</p>
5745
5853
  * @public
5746
5854
  */
5747
- QueueTimeAdjustmentSeconds?: number;
5855
+ ProficiencyLevel?: number;
5748
5856
  /**
5749
- * <p>An integer that represents the queue priority to be applied to the contact (lower priorities
5750
- * are routed preferentially). Cannot be specified if the QueueTimeAdjustmentSeconds is specified.
5751
- * Must be statically defined, must be larger than zero, and a valid integer value. Default Value is
5752
- * 5.</p>
5857
+ * <p>The operator of the condition.</p>
5753
5858
  * @public
5754
5859
  */
5755
- QueuePriority?: number;
5860
+ ComparisonOperator?: string;
5861
+ }
5862
+ /**
5863
+ * @public
5864
+ * @enum
5865
+ */
5866
+ export declare const RoutingCriteriaStepStatus: {
5867
+ readonly ACTIVE: "ACTIVE";
5868
+ readonly EXPIRED: "EXPIRED";
5869
+ readonly INACTIVE: "INACTIVE";
5870
+ readonly JOINED: "JOINED";
5871
+ };
5872
+ /**
5873
+ * @public
5874
+ */
5875
+ export type RoutingCriteriaStepStatus = (typeof RoutingCriteriaStepStatus)[keyof typeof RoutingCriteriaStepStatus];
5876
+ /**
5877
+ * <p>A value for a segment attribute. This is structured as a map where the key is
5878
+ * <code>valueString</code> and the value is a string.</p>
5879
+ * @public
5880
+ */
5881
+ export interface SegmentAttributeValue {
5756
5882
  /**
5757
- * <p>Tags associated with the contact. This contains both Amazon Web Services generated and
5758
- * user-defined tags.</p>
5883
+ * <p>The value of a segment attribute.</p>
5759
5884
  * @public
5760
5885
  */
5761
- Tags?: Record<string, string>;
5886
+ ValueString?: string;
5762
5887
  }
5763
5888
  /**
5889
+ * <p>Information about Amazon Connect Wisdom.</p>
5764
5890
  * @public
5765
5891
  */
5766
- export interface DescribeContactResponse {
5892
+ export interface WisdomInfo {
5767
5893
  /**
5768
- * <p>Information about the contact.</p>
5894
+ * <p>The Amazon Resource Name (ARN) of the Wisdom session.</p>
5769
5895
  * @public
5770
5896
  */
5771
- Contact?: Contact;
5897
+ SessionArn?: string;
5772
5898
  }
5773
5899
  /**
5774
5900
  * @public
@@ -5991,253 +6117,6 @@ export interface Evaluation {
5991
6117
  */
5992
6118
  Tags?: Record<string, string>;
5993
6119
  }
5994
- /**
5995
- * <p>The flow has not been published.</p>
5996
- * @public
5997
- */
5998
- export declare class ContactFlowNotPublishedException extends __BaseException {
5999
- readonly name: "ContactFlowNotPublishedException";
6000
- readonly $fault: "client";
6001
- Message?: string;
6002
- /**
6003
- * @internal
6004
- */
6005
- constructor(opts: __ExceptionOptionType<ContactFlowNotPublishedException, __BaseException>);
6006
- }
6007
- /**
6008
- * @public
6009
- */
6010
- export interface DescribeContactFlowRequest {
6011
- /**
6012
- * <p>The identifier of the Amazon Connect instance.</p>
6013
- * @public
6014
- */
6015
- InstanceId: string | undefined;
6016
- /**
6017
- * <p>The identifier of the flow.</p>
6018
- * @public
6019
- */
6020
- ContactFlowId: string | undefined;
6021
- }
6022
- /**
6023
- * @public
6024
- * @enum
6025
- */
6026
- export declare const ContactFlowState: {
6027
- readonly ACTIVE: "ACTIVE";
6028
- readonly ARCHIVED: "ARCHIVED";
6029
- };
6030
- /**
6031
- * @public
6032
- */
6033
- export type ContactFlowState = (typeof ContactFlowState)[keyof typeof ContactFlowState];
6034
- /**
6035
- * <p>Contains information about a flow.</p>
6036
- * @public
6037
- */
6038
- export interface ContactFlow {
6039
- /**
6040
- * <p>The Amazon Resource Name (ARN) of the flow.</p>
6041
- * @public
6042
- */
6043
- Arn?: string;
6044
- /**
6045
- * <p>The identifier of the flow.</p>
6046
- * @public
6047
- */
6048
- Id?: string;
6049
- /**
6050
- * <p>The name of the flow.</p>
6051
- * @public
6052
- */
6053
- Name?: string;
6054
- /**
6055
- * <p>The type of the flow. For descriptions of the available types, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/create-contact-flow.html#contact-flow-types">Choose a flow type</a> in the <i>Amazon Connect Administrator
6056
- * Guide</i>.</p>
6057
- * @public
6058
- */
6059
- Type?: ContactFlowType;
6060
- /**
6061
- * <p>The type of flow.</p>
6062
- * @public
6063
- */
6064
- State?: ContactFlowState;
6065
- /**
6066
- * <p>The status of the contact flow.</p>
6067
- * @public
6068
- */
6069
- Status?: ContactFlowStatus;
6070
- /**
6071
- * <p>The description of the flow.</p>
6072
- * @public
6073
- */
6074
- Description?: string;
6075
- /**
6076
- * <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
6077
- * flow in Amazon Connect Flow language</a>. </p>
6078
- * <p>Length Constraints: Minimum length of 1. Maximum length of 256000.</p>
6079
- * @public
6080
- */
6081
- Content?: string;
6082
- /**
6083
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
6084
- * @public
6085
- */
6086
- Tags?: Record<string, string>;
6087
- }
6088
- /**
6089
- * @public
6090
- */
6091
- export interface DescribeContactFlowResponse {
6092
- /**
6093
- * <p>Information about the flow.</p>
6094
- * @public
6095
- */
6096
- ContactFlow?: ContactFlow;
6097
- }
6098
- /**
6099
- * @public
6100
- */
6101
- export interface DescribeContactFlowModuleRequest {
6102
- /**
6103
- * <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>
6104
- * @public
6105
- */
6106
- InstanceId: string | undefined;
6107
- /**
6108
- * <p>The identifier of the flow module.</p>
6109
- * @public
6110
- */
6111
- ContactFlowModuleId: string | undefined;
6112
- }
6113
- /**
6114
- * @public
6115
- * @enum
6116
- */
6117
- export declare const ContactFlowModuleState: {
6118
- readonly ACTIVE: "ACTIVE";
6119
- readonly ARCHIVED: "ARCHIVED";
6120
- };
6121
- /**
6122
- * @public
6123
- */
6124
- export type ContactFlowModuleState = (typeof ContactFlowModuleState)[keyof typeof ContactFlowModuleState];
6125
- /**
6126
- * @public
6127
- * @enum
6128
- */
6129
- export declare const ContactFlowModuleStatus: {
6130
- readonly PUBLISHED: "PUBLISHED";
6131
- readonly SAVED: "SAVED";
6132
- };
6133
- /**
6134
- * @public
6135
- */
6136
- export type ContactFlowModuleStatus = (typeof ContactFlowModuleStatus)[keyof typeof ContactFlowModuleStatus];
6137
- /**
6138
- * <p>Contains information about a flow module.</p>
6139
- * @public
6140
- */
6141
- export interface ContactFlowModule {
6142
- /**
6143
- * <p>The Amazon Resource Name (ARN).</p>
6144
- * @public
6145
- */
6146
- Arn?: string;
6147
- /**
6148
- * <p>The identifier of the flow module.</p>
6149
- * @public
6150
- */
6151
- Id?: string;
6152
- /**
6153
- * <p>The name of the flow module.</p>
6154
- * @public
6155
- */
6156
- Name?: string;
6157
- /**
6158
- * <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
6159
- * flow in Amazon Connect Flow language</a>. </p>
6160
- * @public
6161
- */
6162
- Content?: string;
6163
- /**
6164
- * <p>The description of the flow module.</p>
6165
- * @public
6166
- */
6167
- Description?: string;
6168
- /**
6169
- * <p>The type of flow module.</p>
6170
- * @public
6171
- */
6172
- State?: ContactFlowModuleState;
6173
- /**
6174
- * <p>The status of the flow module.</p>
6175
- * @public
6176
- */
6177
- Status?: ContactFlowModuleStatus;
6178
- /**
6179
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
6180
- * @public
6181
- */
6182
- Tags?: Record<string, string>;
6183
- }
6184
- /**
6185
- * @public
6186
- */
6187
- export interface DescribeContactFlowModuleResponse {
6188
- /**
6189
- * <p>Information about the flow module.</p>
6190
- * @public
6191
- */
6192
- ContactFlowModule?: ContactFlowModule;
6193
- }
6194
- /**
6195
- * @public
6196
- */
6197
- export interface DescribeEvaluationFormRequest {
6198
- /**
6199
- * <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>
6200
- * @public
6201
- */
6202
- InstanceId: string | undefined;
6203
- /**
6204
- * <p>A unique identifier for the contact evaluation.</p>
6205
- * @public
6206
- */
6207
- EvaluationFormId: string | undefined;
6208
- /**
6209
- * <p>A version of the evaluation form.</p>
6210
- * @public
6211
- */
6212
- EvaluationFormVersion?: number;
6213
- }
6214
- /**
6215
- * @public
6216
- * @enum
6217
- */
6218
- export declare const EvaluationFormVersionStatus: {
6219
- readonly ACTIVE: "ACTIVE";
6220
- readonly DRAFT: "DRAFT";
6221
- };
6222
- /**
6223
- * @public
6224
- */
6225
- export type EvaluationFormVersionStatus = (typeof EvaluationFormVersionStatus)[keyof typeof EvaluationFormVersionStatus];
6226
- /**
6227
- * @public
6228
- */
6229
- export interface DescribeHoursOfOperationRequest {
6230
- /**
6231
- * <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>
6232
- * @public
6233
- */
6234
- InstanceId: string | undefined;
6235
- /**
6236
- * <p>The identifier for the hours of operation.</p>
6237
- * @public
6238
- */
6239
- HoursOfOperationId: string | undefined;
6240
- }
6241
6120
  /**
6242
6121
  * @internal
6243
6122
  */
@@ -6274,11 +6153,3 @@ export declare const CreateViewResponseFilterSensitiveLog: (obj: CreateViewRespo
6274
6153
  * @internal
6275
6154
  */
6276
6155
  export declare const CreateViewVersionResponseFilterSensitiveLog: (obj: CreateViewVersionResponse) => any;
6277
- /**
6278
- * @internal
6279
- */
6280
- export declare const ContactFilterSensitiveLog: (obj: Contact) => any;
6281
- /**
6282
- * @internal
6283
- */
6284
- export declare const DescribeContactResponseFilterSensitiveLog: (obj: DescribeContactResponse) => any;