aws-sdk 2.1024.0 → 2.1028.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/CHANGELOG.md +24 -1
- package/README.md +1 -1
- package/apis/backup-2018-11-15.min.json +92 -59
- package/apis/batch-2016-08-10.examples.json +30 -6
- package/apis/batch-2016-08-10.min.json +267 -72
- package/apis/batch-2016-08-10.paginators.json +6 -0
- package/apis/connect-2017-08-08.min.json +258 -62
- package/apis/connect-2017-08-08.paginators.json +5 -0
- package/apis/devops-guru-2020-12-01.min.json +477 -144
- package/apis/devops-guru-2020-12-01.paginators.json +27 -7
- package/apis/ec2-2016-11-15.min.json +650 -645
- package/apis/ecs-2014-11-13.min.json +100 -78
- package/apis/greengrassv2-2020-11-30.min.json +2 -1
- package/apis/metadata.json +3 -0
- package/apis/resiliencehub-2020-04-30.examples.json +5 -0
- package/apis/resiliencehub-2020-04-30.min.json +1863 -0
- package/apis/resiliencehub-2020-04-30.paginators.json +74 -0
- package/apis/translate-2017-07-01.min.json +28 -13
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/backup.d.ts +13 -0
- package/clients/batch.d.ts +239 -23
- package/clients/connect.d.ts +265 -28
- package/clients/devopsguru.d.ts +420 -63
- package/clients/dynamodb.d.ts +61 -61
- package/clients/ec2.d.ts +5 -1
- package/clients/ecs.d.ts +380 -345
- package/clients/greengrassv2.d.ts +8 -4
- package/clients/health.d.ts +49 -49
- package/clients/mediaconvert.d.ts +16 -16
- package/clients/resiliencehub.d.ts +2101 -0
- package/clients/resiliencehub.js +18 -0
- package/clients/ssm.d.ts +4 -4
- package/clients/translate.d.ts +34 -5
- package/dist/aws-sdk-core-react-native.js +116 -101
- package/dist/aws-sdk-react-native.js +181 -171
- package/dist/aws-sdk.js +1326 -1025
- package/dist/aws-sdk.min.js +71 -71
- package/lib/config-base.d.ts +8 -0
- package/lib/config.js +14 -2
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/config_use_dualstack.d.ts +3 -0
- package/lib/core.js +1 -1
- package/lib/dynamodb/document_client.d.ts +39 -39
- package/lib/metadata_service/get_endpoint.js +8 -0
- package/lib/metadata_service/get_endpoint_config_options.js +12 -0
- package/lib/metadata_service/get_endpoint_mode.js +8 -0
- package/lib/metadata_service/get_endpoint_mode_config_options.js +14 -0
- package/lib/metadata_service/get_metadata_service_endpoint.js +4 -4
- package/lib/node_loader.js +63 -21
- package/lib/region/utils.js +21 -0
- package/lib/region_config.js +12 -55
- package/lib/region_config_data.json +102 -59
- package/lib/service.js +20 -1
- package/lib/services/s3util.js +2 -1
- package/package.json +1 -1
- package/scripts/region-checker/allowlist.js +5 -5
- package/lib/metadata_service/endpoint.js +0 -6
- package/lib/metadata_service/endpoint_config_options.js +0 -14
- package/lib/metadata_service/endpoint_mode.js +0 -6
- package/lib/metadata_service/endpoint_mode_config_options.js +0 -16
package/clients/connect.d.ts
CHANGED
|
@@ -108,11 +108,11 @@ declare class Connect extends Service {
|
|
|
108
108
|
*/
|
|
109
109
|
createInstance(callback?: (err: AWSError, data: Connect.Types.CreateInstanceResponse) => void): Request<Connect.Types.CreateInstanceResponse, AWSError>;
|
|
110
110
|
/**
|
|
111
|
-
* Creates an
|
|
111
|
+
* Creates an AWS resource association with an Amazon Connect instance.
|
|
112
112
|
*/
|
|
113
113
|
createIntegrationAssociation(params: Connect.Types.CreateIntegrationAssociationRequest, callback?: (err: AWSError, data: Connect.Types.CreateIntegrationAssociationResponse) => void): Request<Connect.Types.CreateIntegrationAssociationResponse, AWSError>;
|
|
114
114
|
/**
|
|
115
|
-
* Creates an
|
|
115
|
+
* Creates an AWS resource association with an Amazon Connect instance.
|
|
116
116
|
*/
|
|
117
117
|
createIntegrationAssociation(callback?: (err: AWSError, data: Connect.Types.CreateIntegrationAssociationResponse) => void): Request<Connect.Types.CreateIntegrationAssociationResponse, AWSError>;
|
|
118
118
|
/**
|
|
@@ -188,11 +188,11 @@ declare class Connect extends Service {
|
|
|
188
188
|
*/
|
|
189
189
|
deleteInstance(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
190
190
|
/**
|
|
191
|
-
* Deletes an
|
|
191
|
+
* Deletes an AWS resource association from an Amazon Connect instance. The association must not have any use cases associated with it.
|
|
192
192
|
*/
|
|
193
193
|
deleteIntegrationAssociation(params: Connect.Types.DeleteIntegrationAssociationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
194
194
|
/**
|
|
195
|
-
* Deletes an
|
|
195
|
+
* Deletes an AWS resource association from an Amazon Connect instance. The association must not have any use cases associated with it.
|
|
196
196
|
*/
|
|
197
197
|
deleteIntegrationAssociation(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
198
198
|
/**
|
|
@@ -243,6 +243,14 @@ declare class Connect extends Service {
|
|
|
243
243
|
* This API is in preview release for Amazon Connect and is subject to change. Describes an agent status.
|
|
244
244
|
*/
|
|
245
245
|
describeAgentStatus(callback?: (err: AWSError, data: Connect.Types.DescribeAgentStatusResponse) => void): Request<Connect.Types.DescribeAgentStatusResponse, AWSError>;
|
|
246
|
+
/**
|
|
247
|
+
* This API is in preview release for Amazon Connect and is subject to change. Describes the specified contact. Contact information is available in Amazon Connect for 24 months, and then it is deleted.
|
|
248
|
+
*/
|
|
249
|
+
describeContact(params: Connect.Types.DescribeContactRequest, callback?: (err: AWSError, data: Connect.Types.DescribeContactResponse) => void): Request<Connect.Types.DescribeContactResponse, AWSError>;
|
|
250
|
+
/**
|
|
251
|
+
* This API is in preview release for Amazon Connect and is subject to change. Describes the specified contact. Contact information is available in Amazon Connect for 24 months, and then it is deleted.
|
|
252
|
+
*/
|
|
253
|
+
describeContact(callback?: (err: AWSError, data: Connect.Types.DescribeContactResponse) => void): Request<Connect.Types.DescribeContactResponse, AWSError>;
|
|
246
254
|
/**
|
|
247
255
|
* Describes the specified contact flow. You can also create and update contact flows using the Amazon Connect Flow language.
|
|
248
256
|
*/
|
|
@@ -467,6 +475,14 @@ declare class Connect extends Service {
|
|
|
467
475
|
* Provides information about the contact flows for the specified Amazon Connect instance. You can also create and update contact flows using the Amazon Connect Flow language. For more information about contact flows, see Contact Flows in the Amazon Connect Administrator Guide.
|
|
468
476
|
*/
|
|
469
477
|
listContactFlows(callback?: (err: AWSError, data: Connect.Types.ListContactFlowsResponse) => void): Request<Connect.Types.ListContactFlowsResponse, AWSError>;
|
|
478
|
+
/**
|
|
479
|
+
* This API is in preview release for Amazon Connect and is subject to change. For the specified referenceTypes, returns a list of references associated with the contact.
|
|
480
|
+
*/
|
|
481
|
+
listContactReferences(params: Connect.Types.ListContactReferencesRequest, callback?: (err: AWSError, data: Connect.Types.ListContactReferencesResponse) => void): Request<Connect.Types.ListContactReferencesResponse, AWSError>;
|
|
482
|
+
/**
|
|
483
|
+
* This API is in preview release for Amazon Connect and is subject to change. For the specified referenceTypes, returns a list of references associated with the contact.
|
|
484
|
+
*/
|
|
485
|
+
listContactReferences(callback?: (err: AWSError, data: Connect.Types.ListContactReferencesResponse) => void): Request<Connect.Types.ListContactReferencesResponse, AWSError>;
|
|
470
486
|
/**
|
|
471
487
|
* Provides information about the hours of operation for the specified Amazon Connect instance. For more information about hours of operation, see Set the Hours of Operation for a Queue in the Amazon Connect Administrator Guide.
|
|
472
488
|
*/
|
|
@@ -500,11 +516,11 @@ declare class Connect extends Service {
|
|
|
500
516
|
*/
|
|
501
517
|
listInstances(callback?: (err: AWSError, data: Connect.Types.ListInstancesResponse) => void): Request<Connect.Types.ListInstancesResponse, AWSError>;
|
|
502
518
|
/**
|
|
503
|
-
* Provides summary information about the
|
|
519
|
+
* Provides summary information about the AWS resource associations for the specified Amazon Connect instance.
|
|
504
520
|
*/
|
|
505
521
|
listIntegrationAssociations(params: Connect.Types.ListIntegrationAssociationsRequest, callback?: (err: AWSError, data: Connect.Types.ListIntegrationAssociationsResponse) => void): Request<Connect.Types.ListIntegrationAssociationsResponse, AWSError>;
|
|
506
522
|
/**
|
|
507
|
-
* Provides summary information about the
|
|
523
|
+
* Provides summary information about the AWS resource associations for the specified Amazon Connect instance.
|
|
508
524
|
*/
|
|
509
525
|
listIntegrationAssociations(callback?: (err: AWSError, data: Connect.Types.ListIntegrationAssociationsResponse) => void): Request<Connect.Types.ListIntegrationAssociationsResponse, AWSError>;
|
|
510
526
|
/**
|
|
@@ -596,11 +612,11 @@ declare class Connect extends Service {
|
|
|
596
612
|
*/
|
|
597
613
|
listSecurityProfilePermissions(callback?: (err: AWSError, data: Connect.Types.ListSecurityProfilePermissionsResponse) => void): Request<Connect.Types.ListSecurityProfilePermissionsResponse, AWSError>;
|
|
598
614
|
/**
|
|
599
|
-
*
|
|
615
|
+
* Provides summary information about the security profiles for the specified Amazon Connect instance. For more information about security profiles, see Security Profiles in the Amazon Connect Administrator Guide.
|
|
600
616
|
*/
|
|
601
617
|
listSecurityProfiles(params: Connect.Types.ListSecurityProfilesRequest, callback?: (err: AWSError, data: Connect.Types.ListSecurityProfilesResponse) => void): Request<Connect.Types.ListSecurityProfilesResponse, AWSError>;
|
|
602
618
|
/**
|
|
603
|
-
*
|
|
619
|
+
* Provides summary information about the security profiles for the specified Amazon Connect instance. For more information about security profiles, see Security Profiles in the Amazon Connect Administrator Guide.
|
|
604
620
|
*/
|
|
605
621
|
listSecurityProfiles(callback?: (err: AWSError, data: Connect.Types.ListSecurityProfilesResponse) => void): Request<Connect.Types.ListSecurityProfilesResponse, AWSError>;
|
|
606
622
|
/**
|
|
@@ -676,11 +692,11 @@ declare class Connect extends Service {
|
|
|
676
692
|
*/
|
|
677
693
|
startOutboundVoiceContact(callback?: (err: AWSError, data: Connect.Types.StartOutboundVoiceContactResponse) => void): Request<Connect.Types.StartOutboundVoiceContactResponse, AWSError>;
|
|
678
694
|
/**
|
|
679
|
-
* Initiates a contact flow to start a new task.
|
|
695
|
+
* Initiates a contact flow to start a new task immediately or at a future date and time.
|
|
680
696
|
*/
|
|
681
697
|
startTaskContact(params: Connect.Types.StartTaskContactRequest, callback?: (err: AWSError, data: Connect.Types.StartTaskContactResponse) => void): Request<Connect.Types.StartTaskContactResponse, AWSError>;
|
|
682
698
|
/**
|
|
683
|
-
* Initiates a contact flow to start a new task.
|
|
699
|
+
* Initiates a contact flow to start a new task immediately or at a future date and time.
|
|
684
700
|
*/
|
|
685
701
|
startTaskContact(callback?: (err: AWSError, data: Connect.Types.StartTaskContactResponse) => void): Request<Connect.Types.StartTaskContactResponse, AWSError>;
|
|
686
702
|
/**
|
|
@@ -739,6 +755,14 @@ declare class Connect extends Service {
|
|
|
739
755
|
* This API is in preview release for Amazon Connect and is subject to change. Updates agent status.
|
|
740
756
|
*/
|
|
741
757
|
updateAgentStatus(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
758
|
+
/**
|
|
759
|
+
* This API is in preview release for Amazon Connect and is subject to change. Adds or updates user defined contact information associated with the specified contact. At least one field to be updated must be present in the request. You can add or update user-defined contact information for both ongoing and completed contacts.
|
|
760
|
+
*/
|
|
761
|
+
updateContact(params: Connect.Types.UpdateContactRequest, callback?: (err: AWSError, data: Connect.Types.UpdateContactResponse) => void): Request<Connect.Types.UpdateContactResponse, AWSError>;
|
|
762
|
+
/**
|
|
763
|
+
* This API is in preview release for Amazon Connect and is subject to change. Adds or updates user defined contact information associated with the specified contact. At least one field to be updated must be present in the request. You can add or update user-defined contact information for both ongoing and completed contacts.
|
|
764
|
+
*/
|
|
765
|
+
updateContact(callback?: (err: AWSError, data: Connect.Types.UpdateContactResponse) => void): Request<Connect.Types.UpdateContactResponse, AWSError>;
|
|
742
766
|
/**
|
|
743
767
|
* Creates or updates user-defined contact attributes associated with the specified contact. You can create or update user-defined attributes for both ongoing and completed contacts. For example, while the call is active, you can update the customer's name or the reason the customer called. You can add notes about steps that the agent took during the call that display to the next agent that takes the call. You can also update attributes for a contact using data from your CRM application and save the data with the contact in Amazon Connect. You could also flag calls for additional analysis, such as legal review or to identify abusive callers. Contact attributes are available in Amazon Connect for 24 months, and are then deleted. For information about CTR retention and the maximum size of the CTR attributes section, see Feature specifications in the Amazon Connect Administrator Guide. Important: You cannot use the operation to update attributes for contacts that occurred prior to the release of the API, which was September 12, 2018. You can update attributes only for contacts that started after the release of the API. If you attempt to update attributes for a contact that occurred prior to the release of the API, a 400 error is returned. This applies also to queued callbacks that were initiated prior to the release of the API but are still active in your instance.
|
|
744
768
|
*/
|
|
@@ -763,6 +787,14 @@ declare class Connect extends Service {
|
|
|
763
787
|
* The name of the contact flow. You can also create and update contact flows using the Amazon Connect Flow language.
|
|
764
788
|
*/
|
|
765
789
|
updateContactFlowName(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
790
|
+
/**
|
|
791
|
+
* Updates the scheduled time of a task contact that is already scheduled.
|
|
792
|
+
*/
|
|
793
|
+
updateContactSchedule(params: Connect.Types.UpdateContactScheduleRequest, callback?: (err: AWSError, data: Connect.Types.UpdateContactScheduleResponse) => void): Request<Connect.Types.UpdateContactScheduleResponse, AWSError>;
|
|
794
|
+
/**
|
|
795
|
+
* Updates the scheduled time of a task contact that is already scheduled.
|
|
796
|
+
*/
|
|
797
|
+
updateContactSchedule(callback?: (err: AWSError, data: Connect.Types.UpdateContactScheduleResponse) => void): Request<Connect.Types.UpdateContactScheduleResponse, AWSError>;
|
|
766
798
|
/**
|
|
767
799
|
* Updates the hours of operation.
|
|
768
800
|
*/
|
|
@@ -944,7 +976,18 @@ declare namespace Connect {
|
|
|
944
976
|
export type ARN = string;
|
|
945
977
|
export type AfterContactWorkTimeLimit = number;
|
|
946
978
|
export type AgentFirstName = string;
|
|
979
|
+
export interface AgentInfo {
|
|
980
|
+
/**
|
|
981
|
+
* The identifier of the agent who accepted the contact.
|
|
982
|
+
*/
|
|
983
|
+
Id?: AgentResourceId;
|
|
984
|
+
/**
|
|
985
|
+
* The timestamp when the contact was connected to the agent.
|
|
986
|
+
*/
|
|
987
|
+
ConnectedToAgentTimestamp?: timestamp;
|
|
988
|
+
}
|
|
947
989
|
export type AgentLastName = string;
|
|
990
|
+
export type AgentResourceId = string;
|
|
948
991
|
export interface AgentStatus {
|
|
949
992
|
/**
|
|
950
993
|
* The Amazon Resource Name (ARN) of the agent status.
|
|
@@ -975,7 +1018,7 @@ declare namespace Connect {
|
|
|
975
1018
|
*/
|
|
976
1019
|
State?: AgentStatusState;
|
|
977
1020
|
/**
|
|
978
|
-
*
|
|
1021
|
+
* One or more tags.
|
|
979
1022
|
*/
|
|
980
1023
|
Tags?: TagMap;
|
|
981
1024
|
}
|
|
@@ -1123,6 +1166,20 @@ declare namespace Connect {
|
|
|
1123
1166
|
AssociationId?: AssociationId;
|
|
1124
1167
|
}
|
|
1125
1168
|
export type AssociationId = string;
|
|
1169
|
+
export interface AttachmentReference {
|
|
1170
|
+
/**
|
|
1171
|
+
* Identifier of the attachment reference.
|
|
1172
|
+
*/
|
|
1173
|
+
Name?: ReferenceKey;
|
|
1174
|
+
/**
|
|
1175
|
+
* Contains the location path of the attachment reference.
|
|
1176
|
+
*/
|
|
1177
|
+
Value?: ReferenceValue;
|
|
1178
|
+
/**
|
|
1179
|
+
* Status of an attachment reference type.
|
|
1180
|
+
*/
|
|
1181
|
+
Status?: ReferenceStatus;
|
|
1182
|
+
}
|
|
1126
1183
|
export interface Attribute {
|
|
1127
1184
|
/**
|
|
1128
1185
|
* The type of attribute.
|
|
@@ -1167,6 +1224,64 @@ declare namespace Connect {
|
|
|
1167
1224
|
export type CommonNameLength127 = string;
|
|
1168
1225
|
export type Comparison = "LT"|string;
|
|
1169
1226
|
export type Concurrency = number;
|
|
1227
|
+
export interface Contact {
|
|
1228
|
+
/**
|
|
1229
|
+
* The Amazon Resource Name (ARN) for the contact.
|
|
1230
|
+
*/
|
|
1231
|
+
Arn?: ARN;
|
|
1232
|
+
/**
|
|
1233
|
+
* The identifier for the contact.
|
|
1234
|
+
*/
|
|
1235
|
+
Id?: ContactId;
|
|
1236
|
+
/**
|
|
1237
|
+
* If this contact is related to other contacts, this is the ID of the initial contact.
|
|
1238
|
+
*/
|
|
1239
|
+
InitialContactId?: ContactId;
|
|
1240
|
+
/**
|
|
1241
|
+
* If this contact is not the first contact, this is the ID of the previous contact.
|
|
1242
|
+
*/
|
|
1243
|
+
PreviousContactId?: ContactId;
|
|
1244
|
+
/**
|
|
1245
|
+
* Indicates how the contact was initiated.
|
|
1246
|
+
*/
|
|
1247
|
+
InitiationMethod?: ContactInitiationMethod;
|
|
1248
|
+
/**
|
|
1249
|
+
* The name of the contact.
|
|
1250
|
+
*/
|
|
1251
|
+
Name?: Name;
|
|
1252
|
+
/**
|
|
1253
|
+
* The description of the contact.
|
|
1254
|
+
*/
|
|
1255
|
+
Description?: Description;
|
|
1256
|
+
/**
|
|
1257
|
+
* How the contact reached your contact center.
|
|
1258
|
+
*/
|
|
1259
|
+
Channel?: Channel;
|
|
1260
|
+
/**
|
|
1261
|
+
* If this contact was queued, this contains information about the queue.
|
|
1262
|
+
*/
|
|
1263
|
+
QueueInfo?: QueueInfo;
|
|
1264
|
+
/**
|
|
1265
|
+
* Information about the agent who accepted the contact.
|
|
1266
|
+
*/
|
|
1267
|
+
AgentInfo?: AgentInfo;
|
|
1268
|
+
/**
|
|
1269
|
+
* The date and time this contact was initiated, in UTC time. For INBOUND, this is when the contact arrived. For OUTBOUND, this is when the agent began dialing. For CALLBACK, this is when the callback contact was created. For TRANSFER and QUEUE_TRANSFER, this is when the transfer was initiated. For API, this is when the request arrived.
|
|
1270
|
+
*/
|
|
1271
|
+
InitiationTimestamp?: timestamp;
|
|
1272
|
+
/**
|
|
1273
|
+
* The timestamp when the customer endpoint disconnected from Amazon Connect.
|
|
1274
|
+
*/
|
|
1275
|
+
DisconnectTimestamp?: timestamp;
|
|
1276
|
+
/**
|
|
1277
|
+
* The timestamp when contact was last updated.
|
|
1278
|
+
*/
|
|
1279
|
+
LastUpdateTimestamp?: timestamp;
|
|
1280
|
+
/**
|
|
1281
|
+
* The timestamp, in Unix epoch time format, at which to start running the inbound flow.
|
|
1282
|
+
*/
|
|
1283
|
+
ScheduledTimestamp?: timestamp;
|
|
1284
|
+
}
|
|
1170
1285
|
export interface ContactFlow {
|
|
1171
1286
|
/**
|
|
1172
1287
|
* The Amazon Resource Name (ARN) of the contact flow.
|
|
@@ -1223,6 +1338,7 @@ declare namespace Connect {
|
|
|
1223
1338
|
export type ContactFlowType = "CONTACT_FLOW"|"CUSTOMER_QUEUE"|"CUSTOMER_HOLD"|"CUSTOMER_WHISPER"|"AGENT_HOLD"|"AGENT_WHISPER"|"OUTBOUND_WHISPER"|"AGENT_TRANSFER"|"QUEUE_TRANSFER"|string;
|
|
1224
1339
|
export type ContactFlowTypes = ContactFlowType[];
|
|
1225
1340
|
export type ContactId = string;
|
|
1341
|
+
export type ContactInitiationMethod = "INBOUND"|"OUTBOUND"|"TRANSFER"|"QUEUE_TRANSFER"|"CALLBACK"|"API"|string;
|
|
1226
1342
|
export type ContactReferences = {[key: string]: Reference};
|
|
1227
1343
|
export interface CreateAgentStatusRequest {
|
|
1228
1344
|
/**
|
|
@@ -1246,7 +1362,7 @@ declare namespace Connect {
|
|
|
1246
1362
|
*/
|
|
1247
1363
|
DisplayOrder?: AgentStatusOrderNumber;
|
|
1248
1364
|
/**
|
|
1249
|
-
*
|
|
1365
|
+
* One or more tags.
|
|
1250
1366
|
*/
|
|
1251
1367
|
Tags?: TagMap;
|
|
1252
1368
|
}
|
|
@@ -1318,7 +1434,7 @@ declare namespace Connect {
|
|
|
1318
1434
|
*/
|
|
1319
1435
|
Config: HoursOfOperationConfigList;
|
|
1320
1436
|
/**
|
|
1321
|
-
*
|
|
1437
|
+
* One or more tags.
|
|
1322
1438
|
*/
|
|
1323
1439
|
Tags?: TagMap;
|
|
1324
1440
|
}
|
|
@@ -1394,7 +1510,7 @@ declare namespace Connect {
|
|
|
1394
1510
|
*/
|
|
1395
1511
|
SourceType?: SourceType;
|
|
1396
1512
|
/**
|
|
1397
|
-
*
|
|
1513
|
+
* One or more tags.
|
|
1398
1514
|
*/
|
|
1399
1515
|
Tags?: TagMap;
|
|
1400
1516
|
}
|
|
@@ -1438,7 +1554,7 @@ declare namespace Connect {
|
|
|
1438
1554
|
*/
|
|
1439
1555
|
QuickConnectIds?: QuickConnectsList;
|
|
1440
1556
|
/**
|
|
1441
|
-
*
|
|
1557
|
+
* One or more tags.
|
|
1442
1558
|
*/
|
|
1443
1559
|
Tags?: TagMap;
|
|
1444
1560
|
}
|
|
@@ -1470,7 +1586,7 @@ declare namespace Connect {
|
|
|
1470
1586
|
*/
|
|
1471
1587
|
QuickConnectConfig: QuickConnectConfig;
|
|
1472
1588
|
/**
|
|
1473
|
-
*
|
|
1589
|
+
* One or more tags.
|
|
1474
1590
|
*/
|
|
1475
1591
|
Tags?: TagMap;
|
|
1476
1592
|
}
|
|
@@ -1542,7 +1658,7 @@ declare namespace Connect {
|
|
|
1542
1658
|
*/
|
|
1543
1659
|
InstanceId: InstanceId;
|
|
1544
1660
|
/**
|
|
1545
|
-
*
|
|
1661
|
+
* One or more tags.
|
|
1546
1662
|
*/
|
|
1547
1663
|
Tags?: TagMap;
|
|
1548
1664
|
}
|
|
@@ -1570,7 +1686,7 @@ declare namespace Connect {
|
|
|
1570
1686
|
*/
|
|
1571
1687
|
UseCaseType: UseCaseType;
|
|
1572
1688
|
/**
|
|
1573
|
-
*
|
|
1689
|
+
* One or more tags.
|
|
1574
1690
|
*/
|
|
1575
1691
|
Tags?: TagMap;
|
|
1576
1692
|
}
|
|
@@ -1825,6 +1941,22 @@ declare namespace Connect {
|
|
|
1825
1941
|
*/
|
|
1826
1942
|
ContactFlow?: ContactFlow;
|
|
1827
1943
|
}
|
|
1944
|
+
export interface DescribeContactRequest {
|
|
1945
|
+
/**
|
|
1946
|
+
* The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
|
|
1947
|
+
*/
|
|
1948
|
+
InstanceId: InstanceId;
|
|
1949
|
+
/**
|
|
1950
|
+
* The identifier of the initial contact.
|
|
1951
|
+
*/
|
|
1952
|
+
ContactId: ContactId;
|
|
1953
|
+
}
|
|
1954
|
+
export interface DescribeContactResponse {
|
|
1955
|
+
/**
|
|
1956
|
+
* Information about the contact.
|
|
1957
|
+
*/
|
|
1958
|
+
Contact?: Contact;
|
|
1959
|
+
}
|
|
1828
1960
|
export interface DescribeHoursOfOperationRequest {
|
|
1829
1961
|
/**
|
|
1830
1962
|
* The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
|
|
@@ -2445,7 +2577,7 @@ declare namespace Connect {
|
|
|
2445
2577
|
*/
|
|
2446
2578
|
Config?: HoursOfOperationConfigList;
|
|
2447
2579
|
/**
|
|
2448
|
-
*
|
|
2580
|
+
* One or more tags.
|
|
2449
2581
|
*/
|
|
2450
2582
|
Tags?: TagMap;
|
|
2451
2583
|
}
|
|
@@ -2812,6 +2944,34 @@ declare namespace Connect {
|
|
|
2812
2944
|
*/
|
|
2813
2945
|
NextToken?: NextToken;
|
|
2814
2946
|
}
|
|
2947
|
+
export interface ListContactReferencesRequest {
|
|
2948
|
+
/**
|
|
2949
|
+
* The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
|
|
2950
|
+
*/
|
|
2951
|
+
InstanceId: InstanceId;
|
|
2952
|
+
/**
|
|
2953
|
+
* The identifier of the initial contact.
|
|
2954
|
+
*/
|
|
2955
|
+
ContactId: ContactId;
|
|
2956
|
+
/**
|
|
2957
|
+
* The type of reference.
|
|
2958
|
+
*/
|
|
2959
|
+
ReferenceTypes: ReferenceTypes;
|
|
2960
|
+
/**
|
|
2961
|
+
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results. This is not expected to be set since the value returned in the previous response is always null.
|
|
2962
|
+
*/
|
|
2963
|
+
NextToken?: NextToken;
|
|
2964
|
+
}
|
|
2965
|
+
export interface ListContactReferencesResponse {
|
|
2966
|
+
/**
|
|
2967
|
+
* Information about the contact flows.
|
|
2968
|
+
*/
|
|
2969
|
+
ReferenceSummaryList?: ReferenceSummaryList;
|
|
2970
|
+
/**
|
|
2971
|
+
* If there are additional results, this is the token for the next set of results. This is always returned as null in the response.
|
|
2972
|
+
*/
|
|
2973
|
+
NextToken?: NextToken;
|
|
2974
|
+
}
|
|
2815
2975
|
export interface ListHoursOfOperationsRequest {
|
|
2816
2976
|
/**
|
|
2817
2977
|
* The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
|
|
@@ -2914,7 +3074,7 @@ declare namespace Connect {
|
|
|
2914
3074
|
*/
|
|
2915
3075
|
InstanceId: InstanceId;
|
|
2916
3076
|
/**
|
|
2917
|
-
*
|
|
3077
|
+
*
|
|
2918
3078
|
*/
|
|
2919
3079
|
IntegrationType?: IntegrationType;
|
|
2920
3080
|
/**
|
|
@@ -2952,7 +3112,7 @@ declare namespace Connect {
|
|
|
2952
3112
|
}
|
|
2953
3113
|
export interface ListLambdaFunctionsResponse {
|
|
2954
3114
|
/**
|
|
2955
|
-
* The
|
|
3115
|
+
* The Lambdafunction ARNs associated with the specified instance.
|
|
2956
3116
|
*/
|
|
2957
3117
|
LambdaFunctions?: FunctionArnsList;
|
|
2958
3118
|
/**
|
|
@@ -3478,12 +3638,22 @@ declare namespace Connect {
|
|
|
3478
3638
|
*/
|
|
3479
3639
|
Status?: QueueStatus;
|
|
3480
3640
|
/**
|
|
3481
|
-
*
|
|
3641
|
+
* One or more tags.
|
|
3482
3642
|
*/
|
|
3483
3643
|
Tags?: TagMap;
|
|
3484
3644
|
}
|
|
3485
3645
|
export type QueueDescription = string;
|
|
3486
3646
|
export type QueueId = string;
|
|
3647
|
+
export interface QueueInfo {
|
|
3648
|
+
/**
|
|
3649
|
+
* The identifier of the agent who accepted the contact.
|
|
3650
|
+
*/
|
|
3651
|
+
Id?: QueueId;
|
|
3652
|
+
/**
|
|
3653
|
+
* The timestamp when the contact was added to the queue.
|
|
3654
|
+
*/
|
|
3655
|
+
EnqueueTimestamp?: timestamp;
|
|
3656
|
+
}
|
|
3487
3657
|
export type QueueMaxContacts = number;
|
|
3488
3658
|
export type QueueName = string;
|
|
3489
3659
|
export interface QueueQuickConnectConfig {
|
|
@@ -3551,7 +3721,7 @@ declare namespace Connect {
|
|
|
3551
3721
|
*/
|
|
3552
3722
|
QuickConnectConfig?: QuickConnectConfig;
|
|
3553
3723
|
/**
|
|
3554
|
-
*
|
|
3724
|
+
* One or more tags.
|
|
3555
3725
|
*/
|
|
3556
3726
|
Tags?: TagMap;
|
|
3557
3727
|
}
|
|
@@ -3600,16 +3770,29 @@ declare namespace Connect {
|
|
|
3600
3770
|
export type QuickConnectsList = QuickConnectId[];
|
|
3601
3771
|
export interface Reference {
|
|
3602
3772
|
/**
|
|
3603
|
-
* A formatted URL that
|
|
3773
|
+
* A valid value for the reference. For example, for a URL reference, a formatted URL that is displayed to an agent in the Contact Control Panel (CCP).
|
|
3604
3774
|
*/
|
|
3605
3775
|
Value: ReferenceValue;
|
|
3606
3776
|
/**
|
|
3607
|
-
*
|
|
3777
|
+
* The type of the reference. Only URL type can be added or updated on a contact.
|
|
3608
3778
|
*/
|
|
3609
3779
|
Type: ReferenceType;
|
|
3610
3780
|
}
|
|
3611
3781
|
export type ReferenceKey = string;
|
|
3612
|
-
export type
|
|
3782
|
+
export type ReferenceStatus = "APPROVED"|"REJECTED"|string;
|
|
3783
|
+
export interface ReferenceSummary {
|
|
3784
|
+
/**
|
|
3785
|
+
* Information about Url reference if the referenceType is URL. Otherwise, null.
|
|
3786
|
+
*/
|
|
3787
|
+
Url?: UrlReference;
|
|
3788
|
+
/**
|
|
3789
|
+
* Information about the attachment reference if the referenceType is ATTACHMENT. Otherwise, null.
|
|
3790
|
+
*/
|
|
3791
|
+
Attachment?: AttachmentReference;
|
|
3792
|
+
}
|
|
3793
|
+
export type ReferenceSummaryList = ReferenceSummary[];
|
|
3794
|
+
export type ReferenceType = "URL"|"ATTACHMENT"|string;
|
|
3795
|
+
export type ReferenceTypes = ReferenceType[];
|
|
3613
3796
|
export type ReferenceValue = string;
|
|
3614
3797
|
export interface ResumeContactRecordingRequest {
|
|
3615
3798
|
/**
|
|
@@ -3783,7 +3966,7 @@ declare namespace Connect {
|
|
|
3783
3966
|
*/
|
|
3784
3967
|
Description?: SecurityProfileDescription;
|
|
3785
3968
|
/**
|
|
3786
|
-
*
|
|
3969
|
+
* One or more tags.
|
|
3787
3970
|
*/
|
|
3788
3971
|
Tags?: TagMap;
|
|
3789
3972
|
}
|
|
@@ -3975,6 +4158,10 @@ declare namespace Connect {
|
|
|
3975
4158
|
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
|
3976
4159
|
*/
|
|
3977
4160
|
ClientToken?: ClientToken;
|
|
4161
|
+
/**
|
|
4162
|
+
* The timestamp, in Unix Epoch seconds format, at which to start running the inbound contact flow. The scheduled time cannot be in the past. It must be within up to 6 days in future.
|
|
4163
|
+
*/
|
|
4164
|
+
ScheduledTime?: Timestamp;
|
|
3978
4165
|
}
|
|
3979
4166
|
export interface StartTaskContactResponse {
|
|
3980
4167
|
/**
|
|
@@ -4165,6 +4352,46 @@ declare namespace Connect {
|
|
|
4165
4352
|
*/
|
|
4166
4353
|
Description?: ContactFlowDescription;
|
|
4167
4354
|
}
|
|
4355
|
+
export interface UpdateContactRequest {
|
|
4356
|
+
/**
|
|
4357
|
+
* The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
|
|
4358
|
+
*/
|
|
4359
|
+
InstanceId: InstanceId;
|
|
4360
|
+
/**
|
|
4361
|
+
* The identifier of the contact. This is the identifier of the contact associated with the first interaction with your contact center.
|
|
4362
|
+
*/
|
|
4363
|
+
ContactId: ContactId;
|
|
4364
|
+
/**
|
|
4365
|
+
* The name of the contact.
|
|
4366
|
+
*/
|
|
4367
|
+
Name?: Name;
|
|
4368
|
+
/**
|
|
4369
|
+
* The description of the contact.
|
|
4370
|
+
*/
|
|
4371
|
+
Description?: Description;
|
|
4372
|
+
/**
|
|
4373
|
+
* A formatted URL that is shown to an agent in the Contact Control Panel (CCP).
|
|
4374
|
+
*/
|
|
4375
|
+
References?: ContactReferences;
|
|
4376
|
+
}
|
|
4377
|
+
export interface UpdateContactResponse {
|
|
4378
|
+
}
|
|
4379
|
+
export interface UpdateContactScheduleRequest {
|
|
4380
|
+
/**
|
|
4381
|
+
* The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
|
|
4382
|
+
*/
|
|
4383
|
+
InstanceId: InstanceId;
|
|
4384
|
+
/**
|
|
4385
|
+
* The identifier of the contact.
|
|
4386
|
+
*/
|
|
4387
|
+
ContactId: ContactId;
|
|
4388
|
+
/**
|
|
4389
|
+
* The timestamp, in Unix Epoch seconds format, at which to start running the inbound contact flow. The scheduled time cannot be in the past. It must be within up to 6 days in future.
|
|
4390
|
+
*/
|
|
4391
|
+
ScheduledTime: Timestamp;
|
|
4392
|
+
}
|
|
4393
|
+
export interface UpdateContactScheduleResponse {
|
|
4394
|
+
}
|
|
4168
4395
|
export type UpdateHoursOfOperationDescription = string;
|
|
4169
4396
|
export interface UpdateHoursOfOperationRequest {
|
|
4170
4397
|
/**
|
|
@@ -4198,7 +4425,7 @@ declare namespace Connect {
|
|
|
4198
4425
|
*/
|
|
4199
4426
|
InstanceId: InstanceId;
|
|
4200
4427
|
/**
|
|
4201
|
-
* The type of attribute. Only allowlisted customers can consume USE_CUSTOM_TTS_VOICES. To access this feature, contact
|
|
4428
|
+
* The type of attribute. Only allowlisted customers can consume USE_CUSTOM_TTS_VOICES. To access this feature, contact AWS Support for allowlisting.
|
|
4202
4429
|
*/
|
|
4203
4430
|
AttributeType: InstanceAttributeType;
|
|
4204
4431
|
/**
|
|
@@ -4500,6 +4727,16 @@ declare namespace Connect {
|
|
|
4500
4727
|
*/
|
|
4501
4728
|
InstanceId: InstanceId;
|
|
4502
4729
|
}
|
|
4730
|
+
export interface UrlReference {
|
|
4731
|
+
/**
|
|
4732
|
+
* Identifier of the URL reference.
|
|
4733
|
+
*/
|
|
4734
|
+
Name?: ReferenceKey;
|
|
4735
|
+
/**
|
|
4736
|
+
* A valid URL.
|
|
4737
|
+
*/
|
|
4738
|
+
Value?: ReferenceValue;
|
|
4739
|
+
}
|
|
4503
4740
|
export interface UseCase {
|
|
4504
4741
|
/**
|
|
4505
4742
|
* The identifier for the use case.
|