@aws-sdk/client-connect 3.568.0 → 3.569.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/README.md +40 -0
- package/dist-cjs/index.js +391 -81
- package/dist-es/Connect.js +10 -0
- package/dist-es/commands/BatchGetAttachedFileMetadataCommand.js +24 -0
- package/dist-es/commands/CompleteAttachedFileUploadCommand.js +24 -0
- package/dist-es/commands/DeleteAttachedFileCommand.js +24 -0
- package/dist-es/commands/DescribeInstanceCommand.js +1 -1
- package/dist-es/commands/GetAttachedFileCommand.js +24 -0
- package/dist-es/commands/ReplicateInstanceCommand.js +1 -1
- package/dist-es/commands/StartAttachedFileUploadCommand.js +24 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +33 -26
- package/dist-es/models/models_1.js +26 -42
- package/dist-es/models/models_2.js +42 -1
- package/dist-es/protocols/Aws_restJson1.js +163 -0
- package/dist-types/Connect.d.ts +35 -0
- package/dist-types/ConnectClient.d.ts +7 -2
- package/dist-types/commands/BatchGetAttachedFileMetadataCommand.d.ts +105 -0
- package/dist-types/commands/CompleteAttachedFileUploadCommand.d.ts +75 -0
- package/dist-types/commands/DeleteAttachedFileCommand.d.ts +78 -0
- package/dist-types/commands/DescribeHoursOfOperationCommand.d.ts +2 -1
- package/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstanceStorageConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribePhoneNumberCommand.d.ts +1 -2
- package/dist-types/commands/GetAttachedFileCommand.d.ts +97 -0
- package/dist-types/commands/ReplicateInstanceCommand.d.ts +2 -1
- package/dist-types/commands/ResumeContactCommand.d.ts +1 -1
- package/dist-types/commands/ResumeContactRecordingCommand.d.ts +1 -1
- package/dist-types/commands/SearchAvailablePhoneNumbersCommand.d.ts +1 -1
- package/dist-types/commands/StartAttachedFileUploadCommand.d.ts +108 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +308 -239
- package/dist-types/models/models_1.d.ts +356 -344
- package/dist-types/models/models_2.d.ts +472 -2
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/Connect.d.ts +85 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/BatchGetAttachedFileMetadataCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CompleteAttachedFileUploadCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteAttachedFileCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeHoursOfOperationCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeInstanceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeInstanceStorageConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribePhoneNumberCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetAttachedFileCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ReplicateInstanceCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ResumeContactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResumeContactRecordingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchAvailablePhoneNumbersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAttachedFileUploadCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +109 -74
- package/dist-types/ts3.4/models/models_1.d.ts +101 -99
- package/dist-types/ts3.4/models/models_2.d.ts +127 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +4 -2
|
@@ -603,6 +603,49 @@ export interface AssociateAnalyticsDataSetResponse {
|
|
|
603
603
|
*/
|
|
604
604
|
ResourceShareArn?: string;
|
|
605
605
|
}
|
|
606
|
+
/**
|
|
607
|
+
* @public
|
|
608
|
+
* @enum
|
|
609
|
+
*/
|
|
610
|
+
export declare const AttachedFileInvalidRequestExceptionReason: {
|
|
611
|
+
readonly INVALID_FILE_NAME: "INVALID_FILE_NAME";
|
|
612
|
+
readonly INVALID_FILE_SIZE: "INVALID_FILE_SIZE";
|
|
613
|
+
readonly INVALID_FILE_TYPE: "INVALID_FILE_TYPE";
|
|
614
|
+
};
|
|
615
|
+
/**
|
|
616
|
+
* @public
|
|
617
|
+
*/
|
|
618
|
+
export type AttachedFileInvalidRequestExceptionReason = (typeof AttachedFileInvalidRequestExceptionReason)[keyof typeof AttachedFileInvalidRequestExceptionReason];
|
|
619
|
+
/**
|
|
620
|
+
* <p>Reason why the request was invalid.</p>
|
|
621
|
+
* @public
|
|
622
|
+
*/
|
|
623
|
+
export type InvalidRequestExceptionReason = InvalidRequestExceptionReason.AttachedFileInvalidRequestExceptionReasonMember | InvalidRequestExceptionReason.$UnknownMember;
|
|
624
|
+
/**
|
|
625
|
+
* @public
|
|
626
|
+
*/
|
|
627
|
+
export declare namespace InvalidRequestExceptionReason {
|
|
628
|
+
/**
|
|
629
|
+
* <p>Reason why the StartAttachedFiledUpload request was invalid.</p>
|
|
630
|
+
* @public
|
|
631
|
+
*/
|
|
632
|
+
interface AttachedFileInvalidRequestExceptionReasonMember {
|
|
633
|
+
AttachedFileInvalidRequestExceptionReason: AttachedFileInvalidRequestExceptionReason;
|
|
634
|
+
$unknown?: never;
|
|
635
|
+
}
|
|
636
|
+
/**
|
|
637
|
+
* @public
|
|
638
|
+
*/
|
|
639
|
+
interface $UnknownMember {
|
|
640
|
+
AttachedFileInvalidRequestExceptionReason?: never;
|
|
641
|
+
$unknown: [string, any];
|
|
642
|
+
}
|
|
643
|
+
interface Visitor<T> {
|
|
644
|
+
AttachedFileInvalidRequestExceptionReason: (value: AttachedFileInvalidRequestExceptionReason) => T;
|
|
645
|
+
_: (name: string, value: any) => T;
|
|
646
|
+
}
|
|
647
|
+
const visit: <T>(value: InvalidRequestExceptionReason, visitor: Visitor<T>) => T;
|
|
648
|
+
}
|
|
606
649
|
/**
|
|
607
650
|
* <p>The request is not valid.</p>
|
|
608
651
|
* @public
|
|
@@ -615,6 +658,11 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
615
658
|
* @public
|
|
616
659
|
*/
|
|
617
660
|
Message?: string;
|
|
661
|
+
/**
|
|
662
|
+
* <p>Reason why the request was invalid.</p>
|
|
663
|
+
* @public
|
|
664
|
+
*/
|
|
665
|
+
Reason?: InvalidRequestExceptionReason;
|
|
618
666
|
/**
|
|
619
667
|
* @internal
|
|
620
668
|
*/
|
|
@@ -1008,11 +1056,13 @@ export interface AssociateInstanceStorageConfigRequest {
|
|
|
1008
1056
|
* </ul>
|
|
1009
1057
|
* <note>
|
|
1010
1058
|
* <p>
|
|
1011
|
-
* <code>REAL_TIME_CONTACT_ANALYSIS_SEGMENTS</code> is deprecated, but it is still
|
|
1012
|
-
*
|
|
1013
|
-
*
|
|
1014
|
-
*
|
|
1015
|
-
*
|
|
1059
|
+
* <code>REAL_TIME_CONTACT_ANALYSIS_SEGMENTS</code> is deprecated, but it is still supported
|
|
1060
|
+
* and will apply only to VOICE channel contacts. Use
|
|
1061
|
+
* <code>REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS</code> for voice contacts moving
|
|
1062
|
+
* forward.</p>
|
|
1063
|
+
* <p>If you have previously associated a stream with
|
|
1064
|
+
* <code>REAL_TIME_CONTACT_ANALYSIS_SEGMENTS</code>, no action is needed to update the stream to
|
|
1065
|
+
* <code>REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS</code>.</p>
|
|
1016
1066
|
* </note>
|
|
1017
1067
|
* @public
|
|
1018
1068
|
*/
|
|
@@ -1384,6 +1434,197 @@ export interface BatchDisassociateAnalyticsDataSetResponse {
|
|
|
1384
1434
|
*/
|
|
1385
1435
|
Errors?: ErrorResult[];
|
|
1386
1436
|
}
|
|
1437
|
+
/**
|
|
1438
|
+
* @public
|
|
1439
|
+
*/
|
|
1440
|
+
export interface BatchGetAttachedFileMetadataRequest {
|
|
1441
|
+
/**
|
|
1442
|
+
* <p>The unique identifiers of the attached file resource.</p>
|
|
1443
|
+
* @public
|
|
1444
|
+
*/
|
|
1445
|
+
FileIds: string[] | undefined;
|
|
1446
|
+
/**
|
|
1447
|
+
* <p>The unique identifier of the Connect instance.</p>
|
|
1448
|
+
* @public
|
|
1449
|
+
*/
|
|
1450
|
+
InstanceId: string | undefined;
|
|
1451
|
+
/**
|
|
1452
|
+
* <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
|
|
1453
|
+
* current supported resource.</p>
|
|
1454
|
+
* <note>
|
|
1455
|
+
* <p>This value must be a valid ARN.</p>
|
|
1456
|
+
* </note>
|
|
1457
|
+
* @public
|
|
1458
|
+
*/
|
|
1459
|
+
AssociatedResourceArn: string | undefined;
|
|
1460
|
+
}
|
|
1461
|
+
/**
|
|
1462
|
+
* <p>Error describing a failure to retrieve attached file metadata through BatchGetAttachedFileMetadata action.</p>
|
|
1463
|
+
* @public
|
|
1464
|
+
*/
|
|
1465
|
+
export interface AttachedFileError {
|
|
1466
|
+
/**
|
|
1467
|
+
* <p> Status code describing the failure. </p>
|
|
1468
|
+
* @public
|
|
1469
|
+
*/
|
|
1470
|
+
ErrorCode?: string;
|
|
1471
|
+
/**
|
|
1472
|
+
* <p>Why the attached file couldn't be retrieved. </p>
|
|
1473
|
+
* @public
|
|
1474
|
+
*/
|
|
1475
|
+
ErrorMessage?: string;
|
|
1476
|
+
/**
|
|
1477
|
+
* <p>The unique identifier of the attached file resource.</p>
|
|
1478
|
+
* @public
|
|
1479
|
+
*/
|
|
1480
|
+
FileId?: string;
|
|
1481
|
+
}
|
|
1482
|
+
/**
|
|
1483
|
+
* <p>Information on the identity that created the file.</p>
|
|
1484
|
+
* @public
|
|
1485
|
+
*/
|
|
1486
|
+
export type CreatedByInfo = CreatedByInfo.AWSIdentityArnMember | CreatedByInfo.ConnectUserArnMember | CreatedByInfo.$UnknownMember;
|
|
1487
|
+
/**
|
|
1488
|
+
* @public
|
|
1489
|
+
*/
|
|
1490
|
+
export declare namespace CreatedByInfo {
|
|
1491
|
+
/**
|
|
1492
|
+
* <p>An agent ARN representing a <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonconnect.html#amazonconnect-resources-for-iam-policies">connect user</a>.</p>
|
|
1493
|
+
* @public
|
|
1494
|
+
*/
|
|
1495
|
+
interface ConnectUserArnMember {
|
|
1496
|
+
ConnectUserArn: string;
|
|
1497
|
+
AWSIdentityArn?: never;
|
|
1498
|
+
$unknown?: never;
|
|
1499
|
+
}
|
|
1500
|
+
/**
|
|
1501
|
+
* <p>STS or IAM ARN representing the identity of API Caller. SDK users cannot populate this and
|
|
1502
|
+
* this value is calculated automatically if <code>ConnectUserArn</code> is not provided.</p>
|
|
1503
|
+
* @public
|
|
1504
|
+
*/
|
|
1505
|
+
interface AWSIdentityArnMember {
|
|
1506
|
+
ConnectUserArn?: never;
|
|
1507
|
+
AWSIdentityArn: string;
|
|
1508
|
+
$unknown?: never;
|
|
1509
|
+
}
|
|
1510
|
+
/**
|
|
1511
|
+
* @public
|
|
1512
|
+
*/
|
|
1513
|
+
interface $UnknownMember {
|
|
1514
|
+
ConnectUserArn?: never;
|
|
1515
|
+
AWSIdentityArn?: never;
|
|
1516
|
+
$unknown: [string, any];
|
|
1517
|
+
}
|
|
1518
|
+
interface Visitor<T> {
|
|
1519
|
+
ConnectUserArn: (value: string) => T;
|
|
1520
|
+
AWSIdentityArn: (value: string) => T;
|
|
1521
|
+
_: (name: string, value: any) => T;
|
|
1522
|
+
}
|
|
1523
|
+
const visit: <T>(value: CreatedByInfo, visitor: Visitor<T>) => T;
|
|
1524
|
+
}
|
|
1525
|
+
/**
|
|
1526
|
+
* @public
|
|
1527
|
+
* @enum
|
|
1528
|
+
*/
|
|
1529
|
+
export declare const FileStatusType: {
|
|
1530
|
+
readonly APPROVED: "APPROVED";
|
|
1531
|
+
readonly FAILED: "FAILED";
|
|
1532
|
+
readonly PROCESSING: "PROCESSING";
|
|
1533
|
+
readonly REJECTED: "REJECTED";
|
|
1534
|
+
};
|
|
1535
|
+
/**
|
|
1536
|
+
* @public
|
|
1537
|
+
*/
|
|
1538
|
+
export type FileStatusType = (typeof FileStatusType)[keyof typeof FileStatusType];
|
|
1539
|
+
/**
|
|
1540
|
+
* @public
|
|
1541
|
+
* @enum
|
|
1542
|
+
*/
|
|
1543
|
+
export declare const FileUseCaseType: {
|
|
1544
|
+
readonly ATTACHMENT: "ATTACHMENT";
|
|
1545
|
+
};
|
|
1546
|
+
/**
|
|
1547
|
+
* @public
|
|
1548
|
+
*/
|
|
1549
|
+
export type FileUseCaseType = (typeof FileUseCaseType)[keyof typeof FileUseCaseType];
|
|
1550
|
+
/**
|
|
1551
|
+
* <p>Information about the attached file.</p>
|
|
1552
|
+
* @public
|
|
1553
|
+
*/
|
|
1554
|
+
export interface AttachedFile {
|
|
1555
|
+
/**
|
|
1556
|
+
* <p>The time of Creation of the file resource as an ISO timestamp. It's specified in ISO 8601
|
|
1557
|
+
* format: <code>yyyy-MM-ddThh:mm:ss.SSSZ</code>. For example,
|
|
1558
|
+
* <code>2024-05-03T02:41:28.172Z</code>.</p>
|
|
1559
|
+
* @public
|
|
1560
|
+
*/
|
|
1561
|
+
CreationTime: string | undefined;
|
|
1562
|
+
/**
|
|
1563
|
+
* <p>The unique identifier of the attached file resource (ARN).</p>
|
|
1564
|
+
* @public
|
|
1565
|
+
*/
|
|
1566
|
+
FileArn: string | undefined;
|
|
1567
|
+
/**
|
|
1568
|
+
* <p>The unique identifier of the attached file resource.</p>
|
|
1569
|
+
* @public
|
|
1570
|
+
*/
|
|
1571
|
+
FileId: string | undefined;
|
|
1572
|
+
/**
|
|
1573
|
+
* <p>A case-sensitive name of the attached file being uploaded.</p>
|
|
1574
|
+
* @public
|
|
1575
|
+
*/
|
|
1576
|
+
FileName: string | undefined;
|
|
1577
|
+
/**
|
|
1578
|
+
* <p>The size of the attached file in bytes.</p>
|
|
1579
|
+
* @public
|
|
1580
|
+
*/
|
|
1581
|
+
FileSizeInBytes: number | undefined;
|
|
1582
|
+
/**
|
|
1583
|
+
* <p>The current status of the attached file.</p>
|
|
1584
|
+
* @public
|
|
1585
|
+
*/
|
|
1586
|
+
FileStatus: FileStatusType | undefined;
|
|
1587
|
+
/**
|
|
1588
|
+
* <p>Represents the identity that created the file.</p>
|
|
1589
|
+
* @public
|
|
1590
|
+
*/
|
|
1591
|
+
CreatedBy?: CreatedByInfo;
|
|
1592
|
+
/**
|
|
1593
|
+
* <p>The use case for the file.</p>
|
|
1594
|
+
* @public
|
|
1595
|
+
*/
|
|
1596
|
+
FileUseCaseType?: FileUseCaseType;
|
|
1597
|
+
/**
|
|
1598
|
+
* <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
|
|
1599
|
+
* current supported resource.</p>
|
|
1600
|
+
* <note>
|
|
1601
|
+
* <p>This value must be a valid ARN.</p>
|
|
1602
|
+
* </note>
|
|
1603
|
+
* @public
|
|
1604
|
+
*/
|
|
1605
|
+
AssociatedResourceArn?: string;
|
|
1606
|
+
/**
|
|
1607
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, <code>\{
|
|
1608
|
+
* "Tags": \{"key1":"value1", "key2":"value2"\} \}</code>.</p>
|
|
1609
|
+
* @public
|
|
1610
|
+
*/
|
|
1611
|
+
Tags?: Record<string, string>;
|
|
1612
|
+
}
|
|
1613
|
+
/**
|
|
1614
|
+
* @public
|
|
1615
|
+
*/
|
|
1616
|
+
export interface BatchGetAttachedFileMetadataResponse {
|
|
1617
|
+
/**
|
|
1618
|
+
* <p>List of attached files that were successfully retrieved. </p>
|
|
1619
|
+
* @public
|
|
1620
|
+
*/
|
|
1621
|
+
Files?: AttachedFile[];
|
|
1622
|
+
/**
|
|
1623
|
+
* <p>List of errors of attached files that could not be retrieved. </p>
|
|
1624
|
+
* @public
|
|
1625
|
+
*/
|
|
1626
|
+
Errors?: AttachedFileError[];
|
|
1627
|
+
}
|
|
1387
1628
|
/**
|
|
1388
1629
|
* @public
|
|
1389
1630
|
* @enum
|
|
@@ -1692,6 +1933,37 @@ export interface ClaimPhoneNumberResponse {
|
|
|
1692
1933
|
*/
|
|
1693
1934
|
PhoneNumberArn?: string;
|
|
1694
1935
|
}
|
|
1936
|
+
/**
|
|
1937
|
+
* Request to CompleteAttachedFileUpload API
|
|
1938
|
+
* @public
|
|
1939
|
+
*/
|
|
1940
|
+
export interface CompleteAttachedFileUploadRequest {
|
|
1941
|
+
/**
|
|
1942
|
+
* <p>The unique identifier of the Connect instance.</p>
|
|
1943
|
+
* @public
|
|
1944
|
+
*/
|
|
1945
|
+
InstanceId: string | undefined;
|
|
1946
|
+
/**
|
|
1947
|
+
* <p>The unique identifier of the attached file resource.</p>
|
|
1948
|
+
* @public
|
|
1949
|
+
*/
|
|
1950
|
+
FileId: string | undefined;
|
|
1951
|
+
/**
|
|
1952
|
+
* <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
|
|
1953
|
+
* current supported resource.</p>
|
|
1954
|
+
* <note>
|
|
1955
|
+
* <p>This value must be a valid ARN.</p>
|
|
1956
|
+
* </note>
|
|
1957
|
+
* @public
|
|
1958
|
+
*/
|
|
1959
|
+
AssociatedResourceArn: string | undefined;
|
|
1960
|
+
}
|
|
1961
|
+
/**
|
|
1962
|
+
* Response from CompleteAttachedFileUpload API
|
|
1963
|
+
* @public
|
|
1964
|
+
*/
|
|
1965
|
+
export interface CompleteAttachedFileUploadResponse {
|
|
1966
|
+
}
|
|
1695
1967
|
/**
|
|
1696
1968
|
* @public
|
|
1697
1969
|
*/
|
|
@@ -4842,6 +5114,37 @@ export interface DeactivateEvaluationFormResponse {
|
|
|
4842
5114
|
*/
|
|
4843
5115
|
EvaluationFormVersion: number | undefined;
|
|
4844
5116
|
}
|
|
5117
|
+
/**
|
|
5118
|
+
* Request to DeleteAttachedFile API
|
|
5119
|
+
* @public
|
|
5120
|
+
*/
|
|
5121
|
+
export interface DeleteAttachedFileRequest {
|
|
5122
|
+
/**
|
|
5123
|
+
* <p>The unique identifier of the Connect instance.</p>
|
|
5124
|
+
* @public
|
|
5125
|
+
*/
|
|
5126
|
+
InstanceId: string | undefined;
|
|
5127
|
+
/**
|
|
5128
|
+
* <p>The unique identifier of the attached file resource.</p>
|
|
5129
|
+
* @public
|
|
5130
|
+
*/
|
|
5131
|
+
FileId: string | undefined;
|
|
5132
|
+
/**
|
|
5133
|
+
* <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
|
|
5134
|
+
* current supported resource.</p>
|
|
5135
|
+
* <note>
|
|
5136
|
+
* <p>This value must be a valid ARN.</p>
|
|
5137
|
+
* </note>
|
|
5138
|
+
* @public
|
|
5139
|
+
*/
|
|
5140
|
+
AssociatedResourceArn: string | undefined;
|
|
5141
|
+
}
|
|
5142
|
+
/**
|
|
5143
|
+
* Response from DeleteAttachedFile API
|
|
5144
|
+
* @public
|
|
5145
|
+
*/
|
|
5146
|
+
export interface DeleteAttachedFileResponse {
|
|
5147
|
+
}
|
|
4845
5148
|
/**
|
|
4846
5149
|
* @public
|
|
4847
5150
|
*/
|
|
@@ -5960,232 +6263,6 @@ export interface HoursOfOperation {
|
|
|
5960
6263
|
*/
|
|
5961
6264
|
LastModifiedRegion?: string;
|
|
5962
6265
|
}
|
|
5963
|
-
/**
|
|
5964
|
-
* @public
|
|
5965
|
-
*/
|
|
5966
|
-
export interface DescribeHoursOfOperationResponse {
|
|
5967
|
-
/**
|
|
5968
|
-
* <p>The hours of operation.</p>
|
|
5969
|
-
* @public
|
|
5970
|
-
*/
|
|
5971
|
-
HoursOfOperation?: HoursOfOperation;
|
|
5972
|
-
}
|
|
5973
|
-
/**
|
|
5974
|
-
* @public
|
|
5975
|
-
*/
|
|
5976
|
-
export interface DescribeInstanceRequest {
|
|
5977
|
-
/**
|
|
5978
|
-
* <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>
|
|
5979
|
-
* @public
|
|
5980
|
-
*/
|
|
5981
|
-
InstanceId: string | undefined;
|
|
5982
|
-
}
|
|
5983
|
-
/**
|
|
5984
|
-
* @public
|
|
5985
|
-
* @enum
|
|
5986
|
-
*/
|
|
5987
|
-
export declare const InstanceStatus: {
|
|
5988
|
-
readonly ACTIVE: "ACTIVE";
|
|
5989
|
-
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
5990
|
-
readonly CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS";
|
|
5991
|
-
};
|
|
5992
|
-
/**
|
|
5993
|
-
* @public
|
|
5994
|
-
*/
|
|
5995
|
-
export type InstanceStatus = (typeof InstanceStatus)[keyof typeof InstanceStatus];
|
|
5996
|
-
/**
|
|
5997
|
-
* <p>Relevant
|
|
5998
|
-
* details why the instance was not successfully created.</p>
|
|
5999
|
-
* @public
|
|
6000
|
-
*/
|
|
6001
|
-
export interface InstanceStatusReason {
|
|
6002
|
-
/**
|
|
6003
|
-
* <p>The message.</p>
|
|
6004
|
-
* @public
|
|
6005
|
-
*/
|
|
6006
|
-
Message?: string;
|
|
6007
|
-
}
|
|
6008
|
-
/**
|
|
6009
|
-
* <p>The Amazon Connect instance.</p>
|
|
6010
|
-
* @public
|
|
6011
|
-
*/
|
|
6012
|
-
export interface Instance {
|
|
6013
|
-
/**
|
|
6014
|
-
* <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>
|
|
6015
|
-
* @public
|
|
6016
|
-
*/
|
|
6017
|
-
Id?: string;
|
|
6018
|
-
/**
|
|
6019
|
-
* <p>The Amazon Resource Name (ARN) of the instance.</p>
|
|
6020
|
-
* @public
|
|
6021
|
-
*/
|
|
6022
|
-
Arn?: string;
|
|
6023
|
-
/**
|
|
6024
|
-
* <p>The identity management type.</p>
|
|
6025
|
-
* @public
|
|
6026
|
-
*/
|
|
6027
|
-
IdentityManagementType?: DirectoryType;
|
|
6028
|
-
/**
|
|
6029
|
-
* <p>The alias of instance.</p>
|
|
6030
|
-
* @public
|
|
6031
|
-
*/
|
|
6032
|
-
InstanceAlias?: string;
|
|
6033
|
-
/**
|
|
6034
|
-
* <p>When the instance was created.</p>
|
|
6035
|
-
* @public
|
|
6036
|
-
*/
|
|
6037
|
-
CreatedTime?: Date;
|
|
6038
|
-
/**
|
|
6039
|
-
* <p>The service role of the instance.</p>
|
|
6040
|
-
* @public
|
|
6041
|
-
*/
|
|
6042
|
-
ServiceRole?: string;
|
|
6043
|
-
/**
|
|
6044
|
-
* <p>The state of the instance.</p>
|
|
6045
|
-
* @public
|
|
6046
|
-
*/
|
|
6047
|
-
InstanceStatus?: InstanceStatus;
|
|
6048
|
-
/**
|
|
6049
|
-
* <p>Relevant
|
|
6050
|
-
* details why the instance was not successfully created. </p>
|
|
6051
|
-
* @public
|
|
6052
|
-
*/
|
|
6053
|
-
StatusReason?: InstanceStatusReason;
|
|
6054
|
-
/**
|
|
6055
|
-
* <p>Whether inbound calls are enabled.</p>
|
|
6056
|
-
* @public
|
|
6057
|
-
*/
|
|
6058
|
-
InboundCallsEnabled?: boolean;
|
|
6059
|
-
/**
|
|
6060
|
-
* <p>Whether outbound calls are enabled.</p>
|
|
6061
|
-
* @public
|
|
6062
|
-
*/
|
|
6063
|
-
OutboundCallsEnabled?: boolean;
|
|
6064
|
-
/**
|
|
6065
|
-
* <p>This URL allows contact center users to access the Amazon Connect admin website.</p>
|
|
6066
|
-
* @public
|
|
6067
|
-
*/
|
|
6068
|
-
InstanceAccessUrl?: string;
|
|
6069
|
-
/**
|
|
6070
|
-
* <p>The tags of an instance.</p>
|
|
6071
|
-
* @public
|
|
6072
|
-
*/
|
|
6073
|
-
Tags?: Record<string, string>;
|
|
6074
|
-
}
|
|
6075
|
-
/**
|
|
6076
|
-
* @public
|
|
6077
|
-
*/
|
|
6078
|
-
export interface DescribeInstanceResponse {
|
|
6079
|
-
/**
|
|
6080
|
-
* <p>The name of the instance.</p>
|
|
6081
|
-
* @public
|
|
6082
|
-
*/
|
|
6083
|
-
Instance?: Instance;
|
|
6084
|
-
}
|
|
6085
|
-
/**
|
|
6086
|
-
* @public
|
|
6087
|
-
* @enum
|
|
6088
|
-
*/
|
|
6089
|
-
export declare const InstanceAttributeType: {
|
|
6090
|
-
readonly AUTO_RESOLVE_BEST_VOICES: "AUTO_RESOLVE_BEST_VOICES";
|
|
6091
|
-
readonly CONTACTFLOW_LOGS: "CONTACTFLOW_LOGS";
|
|
6092
|
-
readonly CONTACT_LENS: "CONTACT_LENS";
|
|
6093
|
-
readonly EARLY_MEDIA: "EARLY_MEDIA";
|
|
6094
|
-
readonly ENHANCED_CHAT_MONITORING: "ENHANCED_CHAT_MONITORING";
|
|
6095
|
-
readonly ENHANCED_CONTACT_MONITORING: "ENHANCED_CONTACT_MONITORING";
|
|
6096
|
-
readonly HIGH_VOLUME_OUTBOUND: "HIGH_VOLUME_OUTBOUND";
|
|
6097
|
-
readonly INBOUND_CALLS: "INBOUND_CALLS";
|
|
6098
|
-
readonly MULTI_PARTY_CONFERENCE: "MULTI_PARTY_CONFERENCE";
|
|
6099
|
-
readonly OUTBOUND_CALLS: "OUTBOUND_CALLS";
|
|
6100
|
-
readonly USE_CUSTOM_TTS_VOICES: "USE_CUSTOM_TTS_VOICES";
|
|
6101
|
-
};
|
|
6102
|
-
/**
|
|
6103
|
-
* @public
|
|
6104
|
-
*/
|
|
6105
|
-
export type InstanceAttributeType = (typeof InstanceAttributeType)[keyof typeof InstanceAttributeType];
|
|
6106
|
-
/**
|
|
6107
|
-
* @public
|
|
6108
|
-
*/
|
|
6109
|
-
export interface DescribeInstanceAttributeRequest {
|
|
6110
|
-
/**
|
|
6111
|
-
* <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>
|
|
6112
|
-
* @public
|
|
6113
|
-
*/
|
|
6114
|
-
InstanceId: string | undefined;
|
|
6115
|
-
/**
|
|
6116
|
-
* <p>The type of attribute.</p>
|
|
6117
|
-
* @public
|
|
6118
|
-
*/
|
|
6119
|
-
AttributeType: InstanceAttributeType | undefined;
|
|
6120
|
-
}
|
|
6121
|
-
/**
|
|
6122
|
-
* <p>A toggle for an individual feature at the instance level.</p>
|
|
6123
|
-
* @public
|
|
6124
|
-
*/
|
|
6125
|
-
export interface Attribute {
|
|
6126
|
-
/**
|
|
6127
|
-
* <p>The type of attribute.</p>
|
|
6128
|
-
* @public
|
|
6129
|
-
*/
|
|
6130
|
-
AttributeType?: InstanceAttributeType;
|
|
6131
|
-
/**
|
|
6132
|
-
* <p>The value of the attribute.</p>
|
|
6133
|
-
* @public
|
|
6134
|
-
*/
|
|
6135
|
-
Value?: string;
|
|
6136
|
-
}
|
|
6137
|
-
/**
|
|
6138
|
-
* @public
|
|
6139
|
-
*/
|
|
6140
|
-
export interface DescribeInstanceAttributeResponse {
|
|
6141
|
-
/**
|
|
6142
|
-
* <p>The
|
|
6143
|
-
* type
|
|
6144
|
-
* of attribute.</p>
|
|
6145
|
-
* @public
|
|
6146
|
-
*/
|
|
6147
|
-
Attribute?: Attribute;
|
|
6148
|
-
}
|
|
6149
|
-
/**
|
|
6150
|
-
* @public
|
|
6151
|
-
*/
|
|
6152
|
-
export interface DescribeInstanceStorageConfigRequest {
|
|
6153
|
-
/**
|
|
6154
|
-
* <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>
|
|
6155
|
-
* @public
|
|
6156
|
-
*/
|
|
6157
|
-
InstanceId: string | undefined;
|
|
6158
|
-
/**
|
|
6159
|
-
* <p>The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.</p>
|
|
6160
|
-
* @public
|
|
6161
|
-
*/
|
|
6162
|
-
AssociationId: string | undefined;
|
|
6163
|
-
/**
|
|
6164
|
-
* <p>A valid resource type.</p>
|
|
6165
|
-
* @public
|
|
6166
|
-
*/
|
|
6167
|
-
ResourceType: InstanceStorageResourceType | undefined;
|
|
6168
|
-
}
|
|
6169
|
-
/**
|
|
6170
|
-
* @public
|
|
6171
|
-
*/
|
|
6172
|
-
export interface DescribeInstanceStorageConfigResponse {
|
|
6173
|
-
/**
|
|
6174
|
-
* <p>A valid storage type.</p>
|
|
6175
|
-
* @public
|
|
6176
|
-
*/
|
|
6177
|
-
StorageConfig?: InstanceStorageConfig;
|
|
6178
|
-
}
|
|
6179
|
-
/**
|
|
6180
|
-
* @public
|
|
6181
|
-
*/
|
|
6182
|
-
export interface DescribePhoneNumberRequest {
|
|
6183
|
-
/**
|
|
6184
|
-
* <p>A unique identifier for the phone number.</p>
|
|
6185
|
-
* @public
|
|
6186
|
-
*/
|
|
6187
|
-
PhoneNumberId: string | undefined;
|
|
6188
|
-
}
|
|
6189
6266
|
/**
|
|
6190
6267
|
* @internal
|
|
6191
6268
|
*/
|
|
@@ -6230,11 +6307,3 @@ export declare const ContactFilterSensitiveLog: (obj: Contact) => any;
|
|
|
6230
6307
|
* @internal
|
|
6231
6308
|
*/
|
|
6232
6309
|
export declare const DescribeContactResponseFilterSensitiveLog: (obj: DescribeContactResponse) => any;
|
|
6233
|
-
/**
|
|
6234
|
-
* @internal
|
|
6235
|
-
*/
|
|
6236
|
-
export declare const InstanceFilterSensitiveLog: (obj: Instance) => any;
|
|
6237
|
-
/**
|
|
6238
|
-
* @internal
|
|
6239
|
-
*/
|
|
6240
|
-
export declare const DescribeInstanceResponseFilterSensitiveLog: (obj: DescribeInstanceResponse) => any;
|