aws-sdk 2.1364.0 → 2.1365.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 +8 -1
- package/README.md +1 -1
- package/apis/chime-sdk-messaging-2021-05-15.min.json +4 -9
- package/apis/connect-2017-08-08.min.json +1279 -275
- package/apis/connect-2017-08-08.paginators.json +17 -0
- package/apis/datasync-2018-11-09.min.json +782 -113
- package/apis/datasync-2018-11-09.paginators.json +23 -0
- package/apis/ds-2015-04-16.min.json +8 -7
- package/apis/pinpoint-2016-12-01.examples.json +98 -0
- package/apis/pinpoint-2016-12-01.min.json +233 -23
- package/clients/chimesdkmessaging.d.ts +0 -12
- package/clients/connect.d.ts +1119 -89
- package/clients/datasync.d.ts +857 -10
- package/clients/directoryservice.d.ts +7 -2
- package/clients/pinpoint.d.ts +208 -23
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +8 -8
- package/dist/aws-sdk.js +1299 -278
- package/dist/aws-sdk.min.js +79 -79
- package/lib/core.js +1 -1
- package/package.json +1 -1
    
        package/clients/connect.d.ts
    CHANGED
    
    | @@ -11,6 +11,14 @@ declare class Connect extends Service { | |
| 11 11 | 
             
               */
         | 
| 12 12 | 
             
              constructor(options?: Connect.Types.ClientConfiguration)
         | 
| 13 13 | 
             
              config: Config & Connect.Types.ClientConfiguration;
         | 
| 14 | 
            +
              /**
         | 
| 15 | 
            +
               * Activates an evaluation form in the specified Amazon Connect instance. After the evaluation form is activated, it is available to start new evaluations based on the form. 
         | 
| 16 | 
            +
               */
         | 
| 17 | 
            +
              activateEvaluationForm(params: Connect.Types.ActivateEvaluationFormRequest, callback?: (err: AWSError, data: Connect.Types.ActivateEvaluationFormResponse) => void): Request<Connect.Types.ActivateEvaluationFormResponse, AWSError>;
         | 
| 18 | 
            +
              /**
         | 
| 19 | 
            +
               * Activates an evaluation form in the specified Amazon Connect instance. After the evaluation form is activated, it is available to start new evaluations based on the form. 
         | 
| 20 | 
            +
               */
         | 
| 21 | 
            +
              activateEvaluationForm(callback?: (err: AWSError, data: Connect.Types.ActivateEvaluationFormResponse) => void): Request<Connect.Types.ActivateEvaluationFormResponse, AWSError>;
         | 
| 14 22 | 
             
              /**
         | 
| 15 23 | 
             
               * This API is in preview release for Amazon Connect and is subject to change. Associates an approved origin to an Amazon Connect instance.
         | 
| 16 24 | 
             
               */
         | 
| @@ -123,6 +131,14 @@ declare class Connect extends Service { | |
| 123 131 | 
             
               * Creates a flow module for the specified Amazon Connect instance. 
         | 
| 124 132 | 
             
               */
         | 
| 125 133 | 
             
              createContactFlowModule(callback?: (err: AWSError, data: Connect.Types.CreateContactFlowModuleResponse) => void): Request<Connect.Types.CreateContactFlowModuleResponse, AWSError>;
         | 
| 134 | 
            +
              /**
         | 
| 135 | 
            +
               * Creates an evaluation form in the specified Amazon Connect instance. The form can be used to define questions related to agent performance, and create sections to organize such questions. An evaluation form must have a unique title within an instance. Question and section identifiers cannot be duplicated within the same evaluation form.
         | 
| 136 | 
            +
               */
         | 
| 137 | 
            +
              createEvaluationForm(params: Connect.Types.CreateEvaluationFormRequest, callback?: (err: AWSError, data: Connect.Types.CreateEvaluationFormResponse) => void): Request<Connect.Types.CreateEvaluationFormResponse, AWSError>;
         | 
| 138 | 
            +
              /**
         | 
| 139 | 
            +
               * Creates an evaluation form in the specified Amazon Connect instance. The form can be used to define questions related to agent performance, and create sections to organize such questions. An evaluation form must have a unique title within an instance. Question and section identifiers cannot be duplicated within the same evaluation form.
         | 
| 140 | 
            +
               */
         | 
| 141 | 
            +
              createEvaluationForm(callback?: (err: AWSError, data: Connect.Types.CreateEvaluationFormResponse) => void): Request<Connect.Types.CreateEvaluationFormResponse, AWSError>;
         | 
| 126 142 | 
             
              /**
         | 
| 127 143 | 
             
               * This API is in preview release for Amazon Connect and is subject to change. Creates hours of operation. 
         | 
| 128 144 | 
             
               */
         | 
| @@ -243,6 +259,22 @@ declare class Connect extends Service { | |
| 243 259 | 
             
               * Creates a custom vocabulary associated with your Amazon Connect instance. You can set a custom vocabulary to be your default vocabulary for a given language. Contact Lens for Amazon Connect uses the default vocabulary in post-call and real-time contact analysis sessions for that language.
         | 
| 244 260 | 
             
               */
         | 
| 245 261 | 
             
              createVocabulary(callback?: (err: AWSError, data: Connect.Types.CreateVocabularyResponse) => void): Request<Connect.Types.CreateVocabularyResponse, AWSError>;
         | 
| 262 | 
            +
              /**
         | 
| 263 | 
            +
               * Deactivates an evaluation form in the specified Amazon Connect instance. After a form is deactivated, it is no longer available for users to start new evaluations based on the form. 
         | 
| 264 | 
            +
               */
         | 
| 265 | 
            +
              deactivateEvaluationForm(params: Connect.Types.DeactivateEvaluationFormRequest, callback?: (err: AWSError, data: Connect.Types.DeactivateEvaluationFormResponse) => void): Request<Connect.Types.DeactivateEvaluationFormResponse, AWSError>;
         | 
| 266 | 
            +
              /**
         | 
| 267 | 
            +
               * Deactivates an evaluation form in the specified Amazon Connect instance. After a form is deactivated, it is no longer available for users to start new evaluations based on the form. 
         | 
| 268 | 
            +
               */
         | 
| 269 | 
            +
              deactivateEvaluationForm(callback?: (err: AWSError, data: Connect.Types.DeactivateEvaluationFormResponse) => void): Request<Connect.Types.DeactivateEvaluationFormResponse, AWSError>;
         | 
| 270 | 
            +
              /**
         | 
| 271 | 
            +
               * Deletes a contact evaluation in the specified Amazon Connect instance.
         | 
| 272 | 
            +
               */
         | 
| 273 | 
            +
              deleteContactEvaluation(params: Connect.Types.DeleteContactEvaluationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
         | 
| 274 | 
            +
              /**
         | 
| 275 | 
            +
               * Deletes a contact evaluation in the specified Amazon Connect instance.
         | 
| 276 | 
            +
               */
         | 
| 277 | 
            +
              deleteContactEvaluation(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
         | 
| 246 278 | 
             
              /**
         | 
| 247 279 | 
             
               * Deletes a flow for the specified Amazon Connect instance.
         | 
| 248 280 | 
             
               */
         | 
| @@ -259,6 +291,14 @@ declare class Connect extends Service { | |
| 259 291 | 
             
               * Deletes the specified flow module.
         | 
| 260 292 | 
             
               */
         | 
| 261 293 | 
             
              deleteContactFlowModule(callback?: (err: AWSError, data: Connect.Types.DeleteContactFlowModuleResponse) => void): Request<Connect.Types.DeleteContactFlowModuleResponse, AWSError>;
         | 
| 294 | 
            +
              /**
         | 
| 295 | 
            +
               * Deletes an evaluation form in the specified Amazon Connect instance.    If the version property is provided, only the specified version of the evaluation form is deleted.   If no version is provided, then the full form (all versions) is deleted.  
         | 
| 296 | 
            +
               */
         | 
| 297 | 
            +
              deleteEvaluationForm(params: Connect.Types.DeleteEvaluationFormRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
         | 
| 298 | 
            +
              /**
         | 
| 299 | 
            +
               * Deletes an evaluation form in the specified Amazon Connect instance.    If the version property is provided, only the specified version of the evaluation form is deleted.   If no version is provided, then the full form (all versions) is deleted.  
         | 
| 300 | 
            +
               */
         | 
| 301 | 
            +
              deleteEvaluationForm(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
         | 
| 262 302 | 
             
              /**
         | 
| 263 303 | 
             
               * This API is in preview release for Amazon Connect and is subject to change. Deletes an hours of operation.
         | 
| 264 304 | 
             
               */
         | 
| @@ -371,6 +411,14 @@ declare class Connect extends Service { | |
| 371 411 | 
             
               * This API is in preview release for Amazon Connect and is subject to change. Describes the specified contact.   Contact information remains available in Amazon Connect for 24 months, and then it is deleted. Only data from November 12, 2021, and later is returned by this API. 
         | 
| 372 412 | 
             
               */
         | 
| 373 413 | 
             
              describeContact(callback?: (err: AWSError, data: Connect.Types.DescribeContactResponse) => void): Request<Connect.Types.DescribeContactResponse, AWSError>;
         | 
| 414 | 
            +
              /**
         | 
| 415 | 
            +
               * Describes a contact evaluation in the specified Amazon Connect instance.
         | 
| 416 | 
            +
               */
         | 
| 417 | 
            +
              describeContactEvaluation(params: Connect.Types.DescribeContactEvaluationRequest, callback?: (err: AWSError, data: Connect.Types.DescribeContactEvaluationResponse) => void): Request<Connect.Types.DescribeContactEvaluationResponse, AWSError>;
         | 
| 418 | 
            +
              /**
         | 
| 419 | 
            +
               * Describes a contact evaluation in the specified Amazon Connect instance.
         | 
| 420 | 
            +
               */
         | 
| 421 | 
            +
              describeContactEvaluation(callback?: (err: AWSError, data: Connect.Types.DescribeContactEvaluationResponse) => void): Request<Connect.Types.DescribeContactEvaluationResponse, AWSError>;
         | 
| 374 422 | 
             
              /**
         | 
| 375 423 | 
             
               * Describes the specified flow. You can also create and update flows using the Amazon Connect Flow language.
         | 
| 376 424 | 
             
               */
         | 
| @@ -387,6 +435,14 @@ declare class Connect extends Service { | |
| 387 435 | 
             
               * Describes the specified flow module.
         | 
| 388 436 | 
             
               */
         | 
| 389 437 | 
             
              describeContactFlowModule(callback?: (err: AWSError, data: Connect.Types.DescribeContactFlowModuleResponse) => void): Request<Connect.Types.DescribeContactFlowModuleResponse, AWSError>;
         | 
| 438 | 
            +
              /**
         | 
| 439 | 
            +
               * Describes an evaluation form in the specified Amazon Connect instance. If the version property is not provided, the latest version of the evaluation form is described.
         | 
| 440 | 
            +
               */
         | 
| 441 | 
            +
              describeEvaluationForm(params: Connect.Types.DescribeEvaluationFormRequest, callback?: (err: AWSError, data: Connect.Types.DescribeEvaluationFormResponse) => void): Request<Connect.Types.DescribeEvaluationFormResponse, AWSError>;
         | 
| 442 | 
            +
              /**
         | 
| 443 | 
            +
               * Describes an evaluation form in the specified Amazon Connect instance. If the version property is not provided, the latest version of the evaluation form is described.
         | 
| 444 | 
            +
               */
         | 
| 445 | 
            +
              describeEvaluationForm(callback?: (err: AWSError, data: Connect.Types.DescribeEvaluationFormResponse) => void): Request<Connect.Types.DescribeEvaluationFormResponse, AWSError>;
         | 
| 390 446 | 
             
              /**
         | 
| 391 447 | 
             
               * This API is in preview release for Amazon Connect and is subject to change. Describes the hours of operation.
         | 
| 392 448 | 
             
               */
         | 
| @@ -675,6 +731,14 @@ declare class Connect extends Service { | |
| 675 731 | 
             
               * This API is in preview release for Amazon Connect and is subject to change. For the specified version of Amazon Lex, returns a paginated list of all the Amazon Lex bots currently associated with the instance. Use this API to returns both Amazon Lex V1 and V2 bots.
         | 
| 676 732 | 
             
               */
         | 
| 677 733 | 
             
              listBots(callback?: (err: AWSError, data: Connect.Types.ListBotsResponse) => void): Request<Connect.Types.ListBotsResponse, AWSError>;
         | 
| 734 | 
            +
              /**
         | 
| 735 | 
            +
               * Lists contact evaluations in the specified Amazon Connect instance.
         | 
| 736 | 
            +
               */
         | 
| 737 | 
            +
              listContactEvaluations(params: Connect.Types.ListContactEvaluationsRequest, callback?: (err: AWSError, data: Connect.Types.ListContactEvaluationsResponse) => void): Request<Connect.Types.ListContactEvaluationsResponse, AWSError>;
         | 
| 738 | 
            +
              /**
         | 
| 739 | 
            +
               * Lists contact evaluations in the specified Amazon Connect instance.
         | 
| 740 | 
            +
               */
         | 
| 741 | 
            +
              listContactEvaluations(callback?: (err: AWSError, data: Connect.Types.ListContactEvaluationsResponse) => void): Request<Connect.Types.ListContactEvaluationsResponse, AWSError>;
         | 
| 678 742 | 
             
              /**
         | 
| 679 743 | 
             
               * Provides information about the flow modules for the specified Amazon Connect instance.
         | 
| 680 744 | 
             
               */
         | 
| @@ -707,6 +771,22 @@ declare class Connect extends Service { | |
| 707 771 | 
             
               * Lists the default vocabularies for the specified Amazon Connect instance.
         | 
| 708 772 | 
             
               */
         | 
| 709 773 | 
             
              listDefaultVocabularies(callback?: (err: AWSError, data: Connect.Types.ListDefaultVocabulariesResponse) => void): Request<Connect.Types.ListDefaultVocabulariesResponse, AWSError>;
         | 
| 774 | 
            +
              /**
         | 
| 775 | 
            +
               * Lists versions of an evaluation form in the specified Amazon Connect instance.
         | 
| 776 | 
            +
               */
         | 
| 777 | 
            +
              listEvaluationFormVersions(params: Connect.Types.ListEvaluationFormVersionsRequest, callback?: (err: AWSError, data: Connect.Types.ListEvaluationFormVersionsResponse) => void): Request<Connect.Types.ListEvaluationFormVersionsResponse, AWSError>;
         | 
| 778 | 
            +
              /**
         | 
| 779 | 
            +
               * Lists versions of an evaluation form in the specified Amazon Connect instance.
         | 
| 780 | 
            +
               */
         | 
| 781 | 
            +
              listEvaluationFormVersions(callback?: (err: AWSError, data: Connect.Types.ListEvaluationFormVersionsResponse) => void): Request<Connect.Types.ListEvaluationFormVersionsResponse, AWSError>;
         | 
| 782 | 
            +
              /**
         | 
| 783 | 
            +
               * Lists evaluation forms in the specified Amazon Connect instance.
         | 
| 784 | 
            +
               */
         | 
| 785 | 
            +
              listEvaluationForms(params: Connect.Types.ListEvaluationFormsRequest, callback?: (err: AWSError, data: Connect.Types.ListEvaluationFormsResponse) => void): Request<Connect.Types.ListEvaluationFormsResponse, AWSError>;
         | 
| 786 | 
            +
              /**
         | 
| 787 | 
            +
               * Lists evaluation forms in the specified Amazon Connect instance.
         | 
| 788 | 
            +
               */
         | 
| 789 | 
            +
              listEvaluationForms(callback?: (err: AWSError, data: Connect.Types.ListEvaluationFormsResponse) => void): Request<Connect.Types.ListEvaluationFormsResponse, AWSError>;
         | 
| 710 790 | 
             
              /**
         | 
| 711 791 | 
             
               * 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.
         | 
| 712 792 | 
             
               */
         | 
| @@ -1003,6 +1083,14 @@ declare class Connect extends Service { | |
| 1003 1083 | 
             
               * Initiates a flow to start a new chat for the customer. Response of this API provides a token required to obtain credentials from the CreateParticipantConnection API in the Amazon Connect Participant Service. When a new chat contact is successfully created, clients must subscribe to the participant’s connection for the created chat within 5 minutes. This is achieved by invoking CreateParticipantConnection with WEBSOCKET and CONNECTION_CREDENTIALS.  A 429 error occurs in the following situations:   API rate limit is exceeded. API TPS throttling returns a TooManyRequests exception.   The quota for concurrent active chats is exceeded. Active chat throttling returns a LimitExceededException.   If you use the ChatDurationInMinutes parameter and receive a 400 error, your account may not support the ability to configure custom chat durations. For more information, contact Amazon Web Services Support.  For more information about chat, see Chat in the Amazon Connect Administrator Guide.
         | 
| 1004 1084 | 
             
               */
         | 
| 1005 1085 | 
             
              startChatContact(callback?: (err: AWSError, data: Connect.Types.StartChatContactResponse) => void): Request<Connect.Types.StartChatContactResponse, AWSError>;
         | 
| 1086 | 
            +
              /**
         | 
| 1087 | 
            +
               * Starts an empty evaluation in the specified Amazon Connect instance, using the given evaluation form for the particular contact. The evaluation form version used for the contact evaluation corresponds to the currently activated version. If no version is activated for the evaluation form, the contact evaluation cannot be started.   Evaluations created through the public API do not contain answer values suggested from automation. 
         | 
| 1088 | 
            +
               */
         | 
| 1089 | 
            +
              startContactEvaluation(params: Connect.Types.StartContactEvaluationRequest, callback?: (err: AWSError, data: Connect.Types.StartContactEvaluationResponse) => void): Request<Connect.Types.StartContactEvaluationResponse, AWSError>;
         | 
| 1090 | 
            +
              /**
         | 
| 1091 | 
            +
               * Starts an empty evaluation in the specified Amazon Connect instance, using the given evaluation form for the particular contact. The evaluation form version used for the contact evaluation corresponds to the currently activated version. If no version is activated for the evaluation form, the contact evaluation cannot be started.   Evaluations created through the public API do not contain answer values suggested from automation. 
         | 
| 1092 | 
            +
               */
         | 
| 1093 | 
            +
              startContactEvaluation(callback?: (err: AWSError, data: Connect.Types.StartContactEvaluationResponse) => void): Request<Connect.Types.StartContactEvaluationResponse, AWSError>;
         | 
| 1006 1094 | 
             
              /**
         | 
| 1007 1095 | 
             
               * Starts recording the contact:    If the API is called before the agent joins the call, recording starts when the agent joins the call.   If the API is called after the agent joins the call, recording starts at the time of the API call.   StartContactRecording is a one-time action. For example, if you use StopContactRecording to stop recording an ongoing call, you can't use StartContactRecording to restart it. For scenarios where the recording has started and you want to suspend and resume it, such as when collecting sensitive information (for example, a credit card number), use SuspendContactRecording and ResumeContactRecording. You can use this API to override the recording behavior configured in the Set recording behavior block. Only voice recordings are supported at this time.
         | 
| 1008 1096 | 
             
               */
         | 
| @@ -1059,6 +1147,14 @@ declare class Connect extends Service { | |
| 1059 1147 | 
             
               *  Ends message streaming on a specified contact. To restart message streaming on that contact, call the StartContactStreaming API. 
         | 
| 1060 1148 | 
             
               */
         | 
| 1061 1149 | 
             
              stopContactStreaming(callback?: (err: AWSError, data: Connect.Types.StopContactStreamingResponse) => void): Request<Connect.Types.StopContactStreamingResponse, AWSError>;
         | 
| 1150 | 
            +
              /**
         | 
| 1151 | 
            +
               * Submits a contact evaluation in the specified Amazon Connect instance. Answers included in the request are merged with existing answers for the given evaluation. If no answers or notes are passed, the evaluation is submitted with the existing answers and notes. You can delete an answer or note by passing an empty object ({}) to the question identifier.  If a contact evaluation is already in submitted state, this operation will trigger a resubmission.
         | 
| 1152 | 
            +
               */
         | 
| 1153 | 
            +
              submitContactEvaluation(params: Connect.Types.SubmitContactEvaluationRequest, callback?: (err: AWSError, data: Connect.Types.SubmitContactEvaluationResponse) => void): Request<Connect.Types.SubmitContactEvaluationResponse, AWSError>;
         | 
| 1154 | 
            +
              /**
         | 
| 1155 | 
            +
               * Submits a contact evaluation in the specified Amazon Connect instance. Answers included in the request are merged with existing answers for the given evaluation. If no answers or notes are passed, the evaluation is submitted with the existing answers and notes. You can delete an answer or note by passing an empty object ({}) to the question identifier.  If a contact evaluation is already in submitted state, this operation will trigger a resubmission.
         | 
| 1156 | 
            +
               */
         | 
| 1157 | 
            +
              submitContactEvaluation(callback?: (err: AWSError, data: Connect.Types.SubmitContactEvaluationResponse) => void): Request<Connect.Types.SubmitContactEvaluationResponse, AWSError>;
         | 
| 1062 1158 | 
             
              /**
         | 
| 1063 1159 | 
             
               * When a contact is being recorded, this API suspends recording the call. For example, you might suspend the call recording while collecting sensitive information, such as a credit card number. Then use ResumeContactRecording to restart recording.  The period of time that the recording is suspended is filled with silence in the final recording.  Only voice recordings are supported at this time.
         | 
| 1064 1160 | 
             
               */
         | 
| @@ -1115,6 +1211,14 @@ declare class Connect extends Service { | |
| 1115 1211 | 
             
               * 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 contact record retention and the maximum size of the contact record attributes section, see Feature specifications in the Amazon Connect Administrator Guide. 
         | 
| 1116 1212 | 
             
               */
         | 
| 1117 1213 | 
             
              updateContactAttributes(callback?: (err: AWSError, data: Connect.Types.UpdateContactAttributesResponse) => void): Request<Connect.Types.UpdateContactAttributesResponse, AWSError>;
         | 
| 1214 | 
            +
              /**
         | 
| 1215 | 
            +
               * Updates details about a contact evaluation in the specified Amazon Connect instance. A contact evaluation must be in draft state. Answers included in the request are merged with existing answers for the given evaluation. An answer or note can be deleted by passing an empty object ({}) to the question identifier. 
         | 
| 1216 | 
            +
               */
         | 
| 1217 | 
            +
              updateContactEvaluation(params: Connect.Types.UpdateContactEvaluationRequest, callback?: (err: AWSError, data: Connect.Types.UpdateContactEvaluationResponse) => void): Request<Connect.Types.UpdateContactEvaluationResponse, AWSError>;
         | 
| 1218 | 
            +
              /**
         | 
| 1219 | 
            +
               * Updates details about a contact evaluation in the specified Amazon Connect instance. A contact evaluation must be in draft state. Answers included in the request are merged with existing answers for the given evaluation. An answer or note can be deleted by passing an empty object ({}) to the question identifier. 
         | 
| 1220 | 
            +
               */
         | 
| 1221 | 
            +
              updateContactEvaluation(callback?: (err: AWSError, data: Connect.Types.UpdateContactEvaluationResponse) => void): Request<Connect.Types.UpdateContactEvaluationResponse, AWSError>;
         | 
| 1118 1222 | 
             
              /**
         | 
| 1119 1223 | 
             
               * Updates the specified flow. You can also create and update flows using the Amazon Connect Flow language.
         | 
| 1120 1224 | 
             
               */
         | 
| @@ -1163,6 +1267,14 @@ declare class Connect extends Service { | |
| 1163 1267 | 
             
               * Updates the scheduled time of a task contact that is already scheduled.
         | 
| 1164 1268 | 
             
               */
         | 
| 1165 1269 | 
             
              updateContactSchedule(callback?: (err: AWSError, data: Connect.Types.UpdateContactScheduleResponse) => void): Request<Connect.Types.UpdateContactScheduleResponse, AWSError>;
         | 
| 1270 | 
            +
              /**
         | 
| 1271 | 
            +
               * Updates details about a specific evaluation form version in the specified Amazon Connect instance. An evaluation form must have a unique title within an instance. Question and section identifiers cannot be duplicated within the same evaluation form. This operation does not support partial updates. Instead it does a full update of evaluation form content.
         | 
| 1272 | 
            +
               */
         | 
| 1273 | 
            +
              updateEvaluationForm(params: Connect.Types.UpdateEvaluationFormRequest, callback?: (err: AWSError, data: Connect.Types.UpdateEvaluationFormResponse) => void): Request<Connect.Types.UpdateEvaluationFormResponse, AWSError>;
         | 
| 1274 | 
            +
              /**
         | 
| 1275 | 
            +
               * Updates details about a specific evaluation form version in the specified Amazon Connect instance. An evaluation form must have a unique title within an instance. Question and section identifiers cannot be duplicated within the same evaluation form. This operation does not support partial updates. Instead it does a full update of evaluation form content.
         | 
| 1276 | 
            +
               */
         | 
| 1277 | 
            +
              updateEvaluationForm(callback?: (err: AWSError, data: Connect.Types.UpdateEvaluationFormResponse) => void): Request<Connect.Types.UpdateEvaluationFormResponse, AWSError>;
         | 
| 1166 1278 | 
             
              /**
         | 
| 1167 1279 | 
             
               * This API is in preview release for Amazon Connect and is subject to change. Updates the hours of operation.
         | 
| 1168 1280 | 
             
               */
         | 
| @@ -1390,6 +1502,34 @@ declare namespace Connect { | |
| 1390 1502 | 
             
                ActionType: ActionType;
         | 
| 1391 1503 | 
             
              }
         | 
| 1392 1504 | 
             
              export type ActionType = "CREATE_TASK"|"ASSIGN_CONTACT_CATEGORY"|"GENERATE_EVENTBRIDGE_EVENT"|"SEND_NOTIFICATION"|string;
         | 
| 1505 | 
            +
              export interface ActivateEvaluationFormRequest {
         | 
| 1506 | 
            +
                /**
         | 
| 1507 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 1508 | 
            +
                 */
         | 
| 1509 | 
            +
                InstanceId: InstanceId;
         | 
| 1510 | 
            +
                /**
         | 
| 1511 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 1512 | 
            +
                 */
         | 
| 1513 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 1514 | 
            +
                /**
         | 
| 1515 | 
            +
                 * The version of the evaluation form to activate. If the version property is not provided, the latest version of the evaluation form is activated.
         | 
| 1516 | 
            +
                 */
         | 
| 1517 | 
            +
                EvaluationFormVersion: VersionNumber;
         | 
| 1518 | 
            +
              }
         | 
| 1519 | 
            +
              export interface ActivateEvaluationFormResponse {
         | 
| 1520 | 
            +
                /**
         | 
| 1521 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 1522 | 
            +
                 */
         | 
| 1523 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 1524 | 
            +
                /**
         | 
| 1525 | 
            +
                 * The Amazon Resource Name (ARN) for the evaluation form resource.
         | 
| 1526 | 
            +
                 */
         | 
| 1527 | 
            +
                EvaluationFormArn: ARN;
         | 
| 1528 | 
            +
                /**
         | 
| 1529 | 
            +
                 * A version of the evaluation form.
         | 
| 1530 | 
            +
                 */
         | 
| 1531 | 
            +
                EvaluationFormVersion: VersionNumber;
         | 
| 1532 | 
            +
              }
         | 
| 1393 1533 | 
             
              export type AfterContactWorkTimeLimit = number;
         | 
| 1394 1534 | 
             
              export interface AgentContactReference {
         | 
| 1395 1535 | 
             
                /**
         | 
| @@ -1708,6 +1848,7 @@ declare namespace Connect { | |
| 1708 1848 | 
             
              export type BehaviorType = "ROUTE_CURRENT_CHANNEL_ONLY"|"ROUTE_ANY_CHANNEL"|string;
         | 
| 1709 1849 | 
             
              export type Boolean = boolean;
         | 
| 1710 1850 | 
             
              export type BotName = string;
         | 
| 1851 | 
            +
              export type BoxedBoolean = boolean;
         | 
| 1711 1852 | 
             
              export type BucketName = string;
         | 
| 1712 1853 | 
             
              export type CampaignId = string;
         | 
| 1713 1854 | 
             
              export type Channel = "VOICE"|"CHAT"|"TASK"|string;
         | 
| @@ -2136,6 +2277,42 @@ declare namespace Connect { | |
| 2136 2277 | 
             
                 */
         | 
| 2137 2278 | 
             
                ContactFlowArn?: ARN;
         | 
| 2138 2279 | 
             
              }
         | 
| 2280 | 
            +
              export interface CreateEvaluationFormRequest {
         | 
| 2281 | 
            +
                /**
         | 
| 2282 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 2283 | 
            +
                 */
         | 
| 2284 | 
            +
                InstanceId: InstanceId;
         | 
| 2285 | 
            +
                /**
         | 
| 2286 | 
            +
                 * A unique title of the evaluation form.
         | 
| 2287 | 
            +
                 */
         | 
| 2288 | 
            +
                Title: EvaluationFormTitle;
         | 
| 2289 | 
            +
                /**
         | 
| 2290 | 
            +
                 * The description of the evaluation form.
         | 
| 2291 | 
            +
                 */
         | 
| 2292 | 
            +
                Description?: EvaluationFormDescription;
         | 
| 2293 | 
            +
                /**
         | 
| 2294 | 
            +
                 * Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.
         | 
| 2295 | 
            +
                 */
         | 
| 2296 | 
            +
                Items: EvaluationFormItemsList;
         | 
| 2297 | 
            +
                /**
         | 
| 2298 | 
            +
                 * A scoring strategy of the evaluation form.
         | 
| 2299 | 
            +
                 */
         | 
| 2300 | 
            +
                ScoringStrategy?: EvaluationFormScoringStrategy;
         | 
| 2301 | 
            +
                /**
         | 
| 2302 | 
            +
                 * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
         | 
| 2303 | 
            +
                 */
         | 
| 2304 | 
            +
                ClientToken?: ClientToken;
         | 
| 2305 | 
            +
              }
         | 
| 2306 | 
            +
              export interface CreateEvaluationFormResponse {
         | 
| 2307 | 
            +
                /**
         | 
| 2308 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 2309 | 
            +
                 */
         | 
| 2310 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 2311 | 
            +
                /**
         | 
| 2312 | 
            +
                 * The Amazon Resource Name (ARN) for the evaluation form resource.
         | 
| 2313 | 
            +
                 */
         | 
| 2314 | 
            +
                EvaluationFormArn: ARN;
         | 
| 2315 | 
            +
              }
         | 
| 2139 2316 | 
             
              export interface CreateHoursOfOperationRequest {
         | 
| 2140 2317 | 
             
                /**
         | 
| 2141 2318 | 
             
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| @@ -2777,6 +2954,34 @@ declare namespace Connect { | |
| 2777 2954 | 
             
                 */
         | 
| 2778 2955 | 
             
                Value?: ReferenceValue;
         | 
| 2779 2956 | 
             
              }
         | 
| 2957 | 
            +
              export interface DeactivateEvaluationFormRequest {
         | 
| 2958 | 
            +
                /**
         | 
| 2959 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 2960 | 
            +
                 */
         | 
| 2961 | 
            +
                InstanceId: InstanceId;
         | 
| 2962 | 
            +
                /**
         | 
| 2963 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 2964 | 
            +
                 */
         | 
| 2965 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 2966 | 
            +
                /**
         | 
| 2967 | 
            +
                 * A version of the evaluation form. If the version property is not provided, the latest version of the evaluation form is deactivated.
         | 
| 2968 | 
            +
                 */
         | 
| 2969 | 
            +
                EvaluationFormVersion: VersionNumber;
         | 
| 2970 | 
            +
              }
         | 
| 2971 | 
            +
              export interface DeactivateEvaluationFormResponse {
         | 
| 2972 | 
            +
                /**
         | 
| 2973 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 2974 | 
            +
                 */
         | 
| 2975 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 2976 | 
            +
                /**
         | 
| 2977 | 
            +
                 * The Amazon Resource Name (ARN) for the evaluation form resource.
         | 
| 2978 | 
            +
                 */
         | 
| 2979 | 
            +
                EvaluationFormArn: ARN;
         | 
| 2980 | 
            +
                /**
         | 
| 2981 | 
            +
                 * The version of the deactivated evaluation form resource.
         | 
| 2982 | 
            +
                 */
         | 
| 2983 | 
            +
                EvaluationFormVersion: VersionNumber;
         | 
| 2984 | 
            +
              }
         | 
| 2780 2985 | 
             
              export interface DefaultVocabulary {
         | 
| 2781 2986 | 
             
                /**
         | 
| 2782 2987 | 
             
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| @@ -2797,6 +3002,16 @@ declare namespace Connect { | |
| 2797 3002 | 
             
              }
         | 
| 2798 3003 | 
             
              export type DefaultVocabularyList = DefaultVocabulary[];
         | 
| 2799 3004 | 
             
              export type Delay = number;
         | 
| 3005 | 
            +
              export interface DeleteContactEvaluationRequest {
         | 
| 3006 | 
            +
                /**
         | 
| 3007 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 3008 | 
            +
                 */
         | 
| 3009 | 
            +
                InstanceId: InstanceId;
         | 
| 3010 | 
            +
                /**
         | 
| 3011 | 
            +
                 * A unique identifier for the contact evaluation.
         | 
| 3012 | 
            +
                 */
         | 
| 3013 | 
            +
                EvaluationId: ResourceId;
         | 
| 3014 | 
            +
              }
         | 
| 2800 3015 | 
             
              export interface DeleteContactFlowModuleRequest {
         | 
| 2801 3016 | 
             
                /**
         | 
| 2802 3017 | 
             
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| @@ -2821,6 +3036,20 @@ declare namespace Connect { | |
| 2821 3036 | 
             
              }
         | 
| 2822 3037 | 
             
              export interface DeleteContactFlowResponse {
         | 
| 2823 3038 | 
             
              }
         | 
| 3039 | 
            +
              export interface DeleteEvaluationFormRequest {
         | 
| 3040 | 
            +
                /**
         | 
| 3041 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 3042 | 
            +
                 */
         | 
| 3043 | 
            +
                InstanceId: InstanceId;
         | 
| 3044 | 
            +
                /**
         | 
| 3045 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 3046 | 
            +
                 */
         | 
| 3047 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 3048 | 
            +
                /**
         | 
| 3049 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 3050 | 
            +
                 */
         | 
| 3051 | 
            +
                EvaluationFormVersion?: VersionNumber;
         | 
| 3052 | 
            +
              }
         | 
| 2824 3053 | 
             
              export interface DeleteHoursOfOperationRequest {
         | 
| 2825 3054 | 
             
                /**
         | 
| 2826 3055 | 
             
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| @@ -2971,6 +3200,26 @@ declare namespace Connect { | |
| 2971 3200 | 
             
                 */
         | 
| 2972 3201 | 
             
                AgentStatus?: AgentStatus;
         | 
| 2973 3202 | 
             
              }
         | 
| 3203 | 
            +
              export interface DescribeContactEvaluationRequest {
         | 
| 3204 | 
            +
                /**
         | 
| 3205 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 3206 | 
            +
                 */
         | 
| 3207 | 
            +
                InstanceId: InstanceId;
         | 
| 3208 | 
            +
                /**
         | 
| 3209 | 
            +
                 * A unique identifier for the contact evaluation.
         | 
| 3210 | 
            +
                 */
         | 
| 3211 | 
            +
                EvaluationId: ResourceId;
         | 
| 3212 | 
            +
              }
         | 
| 3213 | 
            +
              export interface DescribeContactEvaluationResponse {
         | 
| 3214 | 
            +
                /**
         | 
| 3215 | 
            +
                 * Information about the evaluation form completed for a specific contact.
         | 
| 3216 | 
            +
                 */
         | 
| 3217 | 
            +
                Evaluation: Evaluation;
         | 
| 3218 | 
            +
                /**
         | 
| 3219 | 
            +
                 * Information about the evaluation form.
         | 
| 3220 | 
            +
                 */
         | 
| 3221 | 
            +
                EvaluationForm: EvaluationFormContent;
         | 
| 3222 | 
            +
              }
         | 
| 2974 3223 | 
             
              export interface DescribeContactFlowModuleRequest {
         | 
| 2975 3224 | 
             
                /**
         | 
| 2976 3225 | 
             
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| @@ -3019,6 +3268,26 @@ declare namespace Connect { | |
| 3019 3268 | 
             
                 */
         | 
| 3020 3269 | 
             
                Contact?: Contact;
         | 
| 3021 3270 | 
             
              }
         | 
| 3271 | 
            +
              export interface DescribeEvaluationFormRequest {
         | 
| 3272 | 
            +
                /**
         | 
| 3273 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 3274 | 
            +
                 */
         | 
| 3275 | 
            +
                InstanceId: InstanceId;
         | 
| 3276 | 
            +
                /**
         | 
| 3277 | 
            +
                 * A unique identifier for the contact evaluation.
         | 
| 3278 | 
            +
                 */
         | 
| 3279 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 3280 | 
            +
                /**
         | 
| 3281 | 
            +
                 * A version of the evaluation form.
         | 
| 3282 | 
            +
                 */
         | 
| 3283 | 
            +
                EvaluationFormVersion?: VersionNumber;
         | 
| 3284 | 
            +
              }
         | 
| 3285 | 
            +
              export interface DescribeEvaluationFormResponse {
         | 
| 3286 | 
            +
                /**
         | 
| 3287 | 
            +
                 * Information about the evaluation form.
         | 
| 3288 | 
            +
                 */
         | 
| 3289 | 
            +
                EvaluationForm: EvaluationForm;
         | 
| 3290 | 
            +
              }
         | 
| 3022 3291 | 
             
              export interface DescribeHoursOfOperationRequest {
         | 
| 3023 3292 | 
             
                /**
         | 
| 3024 3293 | 
             
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| @@ -3269,161 +3538,683 @@ declare namespace Connect { | |
| 3269 3538 | 
             
              export type DirectoryUserId = string;
         | 
| 3270 3539 | 
             
              export interface DisassociateApprovedOriginRequest {
         | 
| 3271 3540 | 
             
                /**
         | 
| 3272 | 
            -
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 3541 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 3542 | 
            +
                 */
         | 
| 3543 | 
            +
                InstanceId: InstanceId;
         | 
| 3544 | 
            +
                /**
         | 
| 3545 | 
            +
                 * The domain URL of the integrated application.
         | 
| 3546 | 
            +
                 */
         | 
| 3547 | 
            +
                Origin: Origin;
         | 
| 3548 | 
            +
              }
         | 
| 3549 | 
            +
              export interface DisassociateBotRequest {
         | 
| 3550 | 
            +
                /**
         | 
| 3551 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 3552 | 
            +
                 */
         | 
| 3553 | 
            +
                InstanceId: InstanceId;
         | 
| 3554 | 
            +
                LexBot?: LexBot;
         | 
| 3555 | 
            +
                /**
         | 
| 3556 | 
            +
                 * The Amazon Lex V2 bot to disassociate from the instance.
         | 
| 3557 | 
            +
                 */
         | 
| 3558 | 
            +
                LexV2Bot?: LexV2Bot;
         | 
| 3559 | 
            +
              }
         | 
| 3560 | 
            +
              export interface DisassociateInstanceStorageConfigRequest {
         | 
| 3561 | 
            +
                /**
         | 
| 3562 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 3563 | 
            +
                 */
         | 
| 3564 | 
            +
                InstanceId: InstanceId;
         | 
| 3565 | 
            +
                /**
         | 
| 3566 | 
            +
                 * The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.
         | 
| 3567 | 
            +
                 */
         | 
| 3568 | 
            +
                AssociationId: AssociationId;
         | 
| 3569 | 
            +
                /**
         | 
| 3570 | 
            +
                 * A valid resource type.
         | 
| 3571 | 
            +
                 */
         | 
| 3572 | 
            +
                ResourceType: InstanceStorageResourceType;
         | 
| 3573 | 
            +
              }
         | 
| 3574 | 
            +
              export interface DisassociateLambdaFunctionRequest {
         | 
| 3575 | 
            +
                /**
         | 
| 3576 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance..
         | 
| 3577 | 
            +
                 */
         | 
| 3578 | 
            +
                InstanceId: InstanceId;
         | 
| 3579 | 
            +
                /**
         | 
| 3580 | 
            +
                 * The Amazon Resource Name (ARN) of the Lambda function being disassociated.
         | 
| 3581 | 
            +
                 */
         | 
| 3582 | 
            +
                FunctionArn: FunctionArn;
         | 
| 3583 | 
            +
              }
         | 
| 3584 | 
            +
              export interface DisassociateLexBotRequest {
         | 
| 3585 | 
            +
                /**
         | 
| 3586 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 3587 | 
            +
                 */
         | 
| 3588 | 
            +
                InstanceId: InstanceId;
         | 
| 3589 | 
            +
                /**
         | 
| 3590 | 
            +
                 * The name of the Amazon Lex bot. Maximum character limit of 50.
         | 
| 3591 | 
            +
                 */
         | 
| 3592 | 
            +
                BotName: BotName;
         | 
| 3593 | 
            +
                /**
         | 
| 3594 | 
            +
                 * The Amazon Web Services Region in which the Amazon Lex bot has been created.
         | 
| 3595 | 
            +
                 */
         | 
| 3596 | 
            +
                LexRegion: LexRegion;
         | 
| 3597 | 
            +
              }
         | 
| 3598 | 
            +
              export interface DisassociatePhoneNumberContactFlowRequest {
         | 
| 3599 | 
            +
                /**
         | 
| 3600 | 
            +
                 * A unique identifier for the phone number.
         | 
| 3601 | 
            +
                 */
         | 
| 3602 | 
            +
                PhoneNumberId: PhoneNumberId;
         | 
| 3603 | 
            +
                /**
         | 
| 3604 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 3605 | 
            +
                 */
         | 
| 3606 | 
            +
                InstanceId: InstanceId;
         | 
| 3607 | 
            +
              }
         | 
| 3608 | 
            +
              export interface DisassociateQueueQuickConnectsRequest {
         | 
| 3609 | 
            +
                /**
         | 
| 3610 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 3611 | 
            +
                 */
         | 
| 3612 | 
            +
                InstanceId: InstanceId;
         | 
| 3613 | 
            +
                /**
         | 
| 3614 | 
            +
                 * The identifier for the queue.
         | 
| 3615 | 
            +
                 */
         | 
| 3616 | 
            +
                QueueId: QueueId;
         | 
| 3617 | 
            +
                /**
         | 
| 3618 | 
            +
                 * The quick connects to disassociate from the queue.
         | 
| 3619 | 
            +
                 */
         | 
| 3620 | 
            +
                QuickConnectIds: QuickConnectsList;
         | 
| 3621 | 
            +
              }
         | 
| 3622 | 
            +
              export interface DisassociateRoutingProfileQueuesRequest {
         | 
| 3623 | 
            +
                /**
         | 
| 3624 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 3625 | 
            +
                 */
         | 
| 3626 | 
            +
                InstanceId: InstanceId;
         | 
| 3627 | 
            +
                /**
         | 
| 3628 | 
            +
                 * The identifier of the routing profile.
         | 
| 3629 | 
            +
                 */
         | 
| 3630 | 
            +
                RoutingProfileId: RoutingProfileId;
         | 
| 3631 | 
            +
                /**
         | 
| 3632 | 
            +
                 * The queues to disassociate from this routing profile.
         | 
| 3633 | 
            +
                 */
         | 
| 3634 | 
            +
                QueueReferences: RoutingProfileQueueReferenceList;
         | 
| 3635 | 
            +
              }
         | 
| 3636 | 
            +
              export interface DisassociateSecurityKeyRequest {
         | 
| 3637 | 
            +
                /**
         | 
| 3638 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 3639 | 
            +
                 */
         | 
| 3640 | 
            +
                InstanceId: InstanceId;
         | 
| 3641 | 
            +
                /**
         | 
| 3642 | 
            +
                 * The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.
         | 
| 3643 | 
            +
                 */
         | 
| 3644 | 
            +
                AssociationId: AssociationId;
         | 
| 3645 | 
            +
              }
         | 
| 3646 | 
            +
              export interface DismissUserContactRequest {
         | 
| 3647 | 
            +
                /**
         | 
| 3648 | 
            +
                 * The identifier of the user account.
         | 
| 3649 | 
            +
                 */
         | 
| 3650 | 
            +
                UserId: UserId;
         | 
| 3651 | 
            +
                /**
         | 
| 3652 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
         | 
| 3653 | 
            +
                 */
         | 
| 3654 | 
            +
                InstanceId: InstanceId;
         | 
| 3655 | 
            +
                /**
         | 
| 3656 | 
            +
                 * The identifier of the contact.
         | 
| 3657 | 
            +
                 */
         | 
| 3658 | 
            +
                ContactId: ContactId;
         | 
| 3659 | 
            +
              }
         | 
| 3660 | 
            +
              export interface DismissUserContactResponse {
         | 
| 3661 | 
            +
              }
         | 
| 3662 | 
            +
              export type DisplayName = string;
         | 
| 3663 | 
            +
              export interface Distribution {
         | 
| 3664 | 
            +
                /**
         | 
| 3665 | 
            +
                 * The Amazon Web Services Region where the traffic is distributed.
         | 
| 3666 | 
            +
                 */
         | 
| 3667 | 
            +
                Region: AwsRegion;
         | 
| 3668 | 
            +
                /**
         | 
| 3669 | 
            +
                 * The percentage of the traffic that is distributed, in increments of 10.
         | 
| 3670 | 
            +
                 */
         | 
| 3671 | 
            +
                Percentage: Percentage;
         | 
| 3672 | 
            +
              }
         | 
| 3673 | 
            +
              export type DistributionList = Distribution[];
         | 
| 3674 | 
            +
              export type Email = string;
         | 
| 3675 | 
            +
              export interface EmailReference {
         | 
| 3676 | 
            +
                /**
         | 
| 3677 | 
            +
                 * Identifier of the email reference.
         | 
| 3678 | 
            +
                 */
         | 
| 3679 | 
            +
                Name?: ReferenceKey;
         | 
| 3680 | 
            +
                /**
         | 
| 3681 | 
            +
                 * A valid email address.
         | 
| 3682 | 
            +
                 */
         | 
| 3683 | 
            +
                Value?: ReferenceValue;
         | 
| 3684 | 
            +
              }
         | 
| 3685 | 
            +
              export interface EncryptionConfig {
         | 
| 3686 | 
            +
                /**
         | 
| 3687 | 
            +
                 * The type of encryption.
         | 
| 3688 | 
            +
                 */
         | 
| 3689 | 
            +
                EncryptionType: EncryptionType;
         | 
| 3690 | 
            +
                /**
         | 
| 3691 | 
            +
                 * The full ARN of the encryption key.   Be sure to provide the full ARN of the encryption key, not just the ID. Amazon Connect supports only KMS keys with the default key spec of  SYMMETRIC_DEFAULT .  
         | 
| 3692 | 
            +
                 */
         | 
| 3693 | 
            +
                KeyId: KeyId;
         | 
| 3694 | 
            +
              }
         | 
| 3695 | 
            +
              export type EncryptionType = "KMS"|string;
         | 
| 3696 | 
            +
              export interface Evaluation {
         | 
| 3697 | 
            +
                /**
         | 
| 3698 | 
            +
                 * A unique identifier for the contact evaluation.
         | 
| 3699 | 
            +
                 */
         | 
| 3700 | 
            +
                EvaluationId: ResourceId;
         | 
| 3701 | 
            +
                /**
         | 
| 3702 | 
            +
                 * The Amazon Resource Name (ARN) for the contact evaluation resource.
         | 
| 3703 | 
            +
                 */
         | 
| 3704 | 
            +
                EvaluationArn: ARN;
         | 
| 3705 | 
            +
                /**
         | 
| 3706 | 
            +
                 * Metadata about the contact evaluation.
         | 
| 3707 | 
            +
                 */
         | 
| 3708 | 
            +
                Metadata: EvaluationMetadata;
         | 
| 3709 | 
            +
                /**
         | 
| 3710 | 
            +
                 * A map of question identifiers to answer value.
         | 
| 3711 | 
            +
                 */
         | 
| 3712 | 
            +
                Answers: EvaluationAnswersOutputMap;
         | 
| 3713 | 
            +
                /**
         | 
| 3714 | 
            +
                 * A map of question identifiers to note value.
         | 
| 3715 | 
            +
                 */
         | 
| 3716 | 
            +
                Notes: EvaluationNotesMap;
         | 
| 3717 | 
            +
                /**
         | 
| 3718 | 
            +
                 * The status of the contact evaluation.
         | 
| 3719 | 
            +
                 */
         | 
| 3720 | 
            +
                Status: EvaluationStatus;
         | 
| 3721 | 
            +
                /**
         | 
| 3722 | 
            +
                 * A map of item (section or question) identifiers to score value.
         | 
| 3723 | 
            +
                 */
         | 
| 3724 | 
            +
                Scores?: EvaluationScoresMap;
         | 
| 3725 | 
            +
                /**
         | 
| 3726 | 
            +
                 * The timestamp for when the evaluation was created.
         | 
| 3727 | 
            +
                 */
         | 
| 3728 | 
            +
                CreatedTime: Timestamp;
         | 
| 3729 | 
            +
                /**
         | 
| 3730 | 
            +
                 * The timestamp for when the evaluation was last updated.
         | 
| 3731 | 
            +
                 */
         | 
| 3732 | 
            +
                LastModifiedTime: Timestamp;
         | 
| 3733 | 
            +
                /**
         | 
| 3734 | 
            +
                 * The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
         | 
| 3735 | 
            +
                 */
         | 
| 3736 | 
            +
                Tags?: TagMap;
         | 
| 3737 | 
            +
              }
         | 
| 3738 | 
            +
              export interface EvaluationAnswerData {
         | 
| 3739 | 
            +
                /**
         | 
| 3740 | 
            +
                 * The string value for an answer in a contact evaluation.
         | 
| 3741 | 
            +
                 */
         | 
| 3742 | 
            +
                StringValue?: EvaluationAnswerDataStringValue;
         | 
| 3743 | 
            +
                /**
         | 
| 3744 | 
            +
                 * The numeric value for an answer in a contact evaluation.
         | 
| 3745 | 
            +
                 */
         | 
| 3746 | 
            +
                NumericValue?: EvaluationAnswerDataNumericValue;
         | 
| 3747 | 
            +
                /**
         | 
| 3748 | 
            +
                 * The flag to mark the question as not applicable.
         | 
| 3749 | 
            +
                 */
         | 
| 3750 | 
            +
                NotApplicable?: Boolean;
         | 
| 3751 | 
            +
              }
         | 
| 3752 | 
            +
              export type EvaluationAnswerDataNumericValue = number;
         | 
| 3753 | 
            +
              export type EvaluationAnswerDataStringValue = string;
         | 
| 3754 | 
            +
              export interface EvaluationAnswerInput {
         | 
| 3755 | 
            +
                /**
         | 
| 3756 | 
            +
                 * The value for an answer in a contact evaluation.
         | 
| 3757 | 
            +
                 */
         | 
| 3758 | 
            +
                Value?: EvaluationAnswerData;
         | 
| 3759 | 
            +
              }
         | 
| 3760 | 
            +
              export interface EvaluationAnswerOutput {
         | 
| 3761 | 
            +
                /**
         | 
| 3762 | 
            +
                 * The value for an answer in a contact evaluation.
         | 
| 3763 | 
            +
                 */
         | 
| 3764 | 
            +
                Value?: EvaluationAnswerData;
         | 
| 3765 | 
            +
                /**
         | 
| 3766 | 
            +
                 * The system suggested value for an answer in a contact evaluation.
         | 
| 3767 | 
            +
                 */
         | 
| 3768 | 
            +
                SystemSuggestedValue?: EvaluationAnswerData;
         | 
| 3769 | 
            +
              }
         | 
| 3770 | 
            +
              export type EvaluationAnswersInputMap = {[key: string]: EvaluationAnswerInput};
         | 
| 3771 | 
            +
              export type EvaluationAnswersOutputMap = {[key: string]: EvaluationAnswerOutput};
         | 
| 3772 | 
            +
              export interface EvaluationForm {
         | 
| 3773 | 
            +
                /**
         | 
| 3774 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 3775 | 
            +
                 */
         | 
| 3776 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 3777 | 
            +
                /**
         | 
| 3778 | 
            +
                 * A version of the evaluation form.
         | 
| 3779 | 
            +
                 */
         | 
| 3780 | 
            +
                EvaluationFormVersion: VersionNumber;
         | 
| 3781 | 
            +
                /**
         | 
| 3782 | 
            +
                 * The flag indicating whether the evaluation form is locked for changes.
         | 
| 3783 | 
            +
                 */
         | 
| 3784 | 
            +
                Locked: EvaluationFormVersionIsLocked;
         | 
| 3785 | 
            +
                /**
         | 
| 3786 | 
            +
                 * The Amazon Resource Name (ARN) for the evaluation form resource.
         | 
| 3787 | 
            +
                 */
         | 
| 3788 | 
            +
                EvaluationFormArn: ARN;
         | 
| 3789 | 
            +
                /**
         | 
| 3790 | 
            +
                 * A unique title of the evaluation form.
         | 
| 3791 | 
            +
                 */
         | 
| 3792 | 
            +
                Title: EvaluationFormTitle;
         | 
| 3793 | 
            +
                /**
         | 
| 3794 | 
            +
                 * The description of the evaluation form.
         | 
| 3795 | 
            +
                 */
         | 
| 3796 | 
            +
                Description?: EvaluationFormDescription;
         | 
| 3797 | 
            +
                /**
         | 
| 3798 | 
            +
                 * The status of the evaluation form.
         | 
| 3799 | 
            +
                 */
         | 
| 3800 | 
            +
                Status: EvaluationFormVersionStatus;
         | 
| 3801 | 
            +
                /**
         | 
| 3802 | 
            +
                 * Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.
         | 
| 3803 | 
            +
                 */
         | 
| 3804 | 
            +
                Items: EvaluationFormItemsList;
         | 
| 3805 | 
            +
                /**
         | 
| 3806 | 
            +
                 * A scoring strategy of the evaluation form.
         | 
| 3807 | 
            +
                 */
         | 
| 3808 | 
            +
                ScoringStrategy?: EvaluationFormScoringStrategy;
         | 
| 3809 | 
            +
                /**
         | 
| 3810 | 
            +
                 * The timestamp for when the evaluation form was created.
         | 
| 3811 | 
            +
                 */
         | 
| 3812 | 
            +
                CreatedTime: Timestamp;
         | 
| 3813 | 
            +
                /**
         | 
| 3814 | 
            +
                 * The Amazon Resource Name (ARN) of the user who created the evaluation form.
         | 
| 3815 | 
            +
                 */
         | 
| 3816 | 
            +
                CreatedBy: ARN;
         | 
| 3817 | 
            +
                /**
         | 
| 3818 | 
            +
                 * The timestamp for when the evaluation form was last updated.
         | 
| 3819 | 
            +
                 */
         | 
| 3820 | 
            +
                LastModifiedTime: Timestamp;
         | 
| 3821 | 
            +
                /**
         | 
| 3822 | 
            +
                 * The Amazon Resource Name (ARN) of the user who last updated the evaluation form.
         | 
| 3823 | 
            +
                 */
         | 
| 3824 | 
            +
                LastModifiedBy: ARN;
         | 
| 3825 | 
            +
                /**
         | 
| 3826 | 
            +
                 * The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
         | 
| 3827 | 
            +
                 */
         | 
| 3828 | 
            +
                Tags?: TagMap;
         | 
| 3829 | 
            +
              }
         | 
| 3830 | 
            +
              export interface EvaluationFormContent {
         | 
| 3831 | 
            +
                /**
         | 
| 3832 | 
            +
                 * A version of the evaluation form.
         | 
| 3833 | 
            +
                 */
         | 
| 3834 | 
            +
                EvaluationFormVersion: VersionNumber;
         | 
| 3835 | 
            +
                /**
         | 
| 3836 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 3837 | 
            +
                 */
         | 
| 3838 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 3839 | 
            +
                /**
         | 
| 3840 | 
            +
                 * The Amazon Resource Name (ARN) for the evaluation form resource.
         | 
| 3841 | 
            +
                 */
         | 
| 3842 | 
            +
                EvaluationFormArn: ARN;
         | 
| 3843 | 
            +
                /**
         | 
| 3844 | 
            +
                 * A unique title of the evaluation form.
         | 
| 3845 | 
            +
                 */
         | 
| 3846 | 
            +
                Title: EvaluationFormTitle;
         | 
| 3847 | 
            +
                /**
         | 
| 3848 | 
            +
                 * The description of the evaluation form.
         | 
| 3849 | 
            +
                 */
         | 
| 3850 | 
            +
                Description?: EvaluationFormDescription;
         | 
| 3851 | 
            +
                /**
         | 
| 3852 | 
            +
                 * Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.
         | 
| 3853 | 
            +
                 */
         | 
| 3854 | 
            +
                Items: EvaluationFormItemsList;
         | 
| 3855 | 
            +
                /**
         | 
| 3856 | 
            +
                 * A scoring strategy of the evaluation form.
         | 
| 3857 | 
            +
                 */
         | 
| 3858 | 
            +
                ScoringStrategy?: EvaluationFormScoringStrategy;
         | 
| 3859 | 
            +
              }
         | 
| 3860 | 
            +
              export type EvaluationFormDescription = string;
         | 
| 3861 | 
            +
              export interface EvaluationFormItem {
         | 
| 3862 | 
            +
                /**
         | 
| 3863 | 
            +
                 * The information of the section.
         | 
| 3864 | 
            +
                 */
         | 
| 3865 | 
            +
                Section?: EvaluationFormSection;
         | 
| 3866 | 
            +
                /**
         | 
| 3867 | 
            +
                 * The information of the question.
         | 
| 3868 | 
            +
                 */
         | 
| 3869 | 
            +
                Question?: EvaluationFormQuestion;
         | 
| 3870 | 
            +
              }
         | 
| 3871 | 
            +
              export type EvaluationFormItemWeight = number;
         | 
| 3872 | 
            +
              export type EvaluationFormItemsList = EvaluationFormItem[];
         | 
| 3873 | 
            +
              export interface EvaluationFormNumericQuestionAutomation {
         | 
| 3874 | 
            +
                /**
         | 
| 3875 | 
            +
                 * The property value of the automation.
         | 
| 3876 | 
            +
                 */
         | 
| 3877 | 
            +
                PropertyValue?: NumericQuestionPropertyValueAutomation;
         | 
| 3878 | 
            +
              }
         | 
| 3879 | 
            +
              export interface EvaluationFormNumericQuestionOption {
         | 
| 3880 | 
            +
                /**
         | 
| 3881 | 
            +
                 * The minimum answer value of the range option.
         | 
| 3882 | 
            +
                 */
         | 
| 3883 | 
            +
                MinValue: Integer;
         | 
| 3884 | 
            +
                /**
         | 
| 3885 | 
            +
                 * The maximum answer value of the range option.
         | 
| 3886 | 
            +
                 */
         | 
| 3887 | 
            +
                MaxValue: Integer;
         | 
| 3888 | 
            +
                /**
         | 
| 3889 | 
            +
                 * The score assigned to answer values within the range option.
         | 
| 3890 | 
            +
                 */
         | 
| 3891 | 
            +
                Score?: EvaluationFormQuestionAnswerScore;
         | 
| 3892 | 
            +
                /**
         | 
| 3893 | 
            +
                 * The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.
         | 
| 3894 | 
            +
                 */
         | 
| 3895 | 
            +
                AutomaticFail?: Boolean;
         | 
| 3896 | 
            +
              }
         | 
| 3897 | 
            +
              export type EvaluationFormNumericQuestionOptionList = EvaluationFormNumericQuestionOption[];
         | 
| 3898 | 
            +
              export interface EvaluationFormNumericQuestionProperties {
         | 
| 3899 | 
            +
                /**
         | 
| 3900 | 
            +
                 * The minimum answer value.
         | 
| 3901 | 
            +
                 */
         | 
| 3902 | 
            +
                MinValue: Integer;
         | 
| 3903 | 
            +
                /**
         | 
| 3904 | 
            +
                 * The maximum answer value.
         | 
| 3905 | 
            +
                 */
         | 
| 3906 | 
            +
                MaxValue: Integer;
         | 
| 3907 | 
            +
                /**
         | 
| 3908 | 
            +
                 * The scoring options of the numeric question.
         | 
| 3909 | 
            +
                 */
         | 
| 3910 | 
            +
                Options?: EvaluationFormNumericQuestionOptionList;
         | 
| 3911 | 
            +
                /**
         | 
| 3912 | 
            +
                 * The automation properties of the numeric question.
         | 
| 3913 | 
            +
                 */
         | 
| 3914 | 
            +
                Automation?: EvaluationFormNumericQuestionAutomation;
         | 
| 3915 | 
            +
              }
         | 
| 3916 | 
            +
              export interface EvaluationFormQuestion {
         | 
| 3917 | 
            +
                /**
         | 
| 3918 | 
            +
                 * The title of the question.
         | 
| 3919 | 
            +
                 */
         | 
| 3920 | 
            +
                Title: EvaluationFormQuestionTitle;
         | 
| 3921 | 
            +
                /**
         | 
| 3922 | 
            +
                 * The instructions of the section.
         | 
| 3923 | 
            +
                 */
         | 
| 3924 | 
            +
                Instructions?: EvaluationFormQuestionInstructions;
         | 
| 3925 | 
            +
                /**
         | 
| 3926 | 
            +
                 * The identifier of the question. An identifier must be unique within the evaluation form.
         | 
| 3927 | 
            +
                 */
         | 
| 3928 | 
            +
                RefId: ReferenceId;
         | 
| 3929 | 
            +
                /**
         | 
| 3930 | 
            +
                 * The flag to enable not applicable answers to the question.
         | 
| 3931 | 
            +
                 */
         | 
| 3932 | 
            +
                NotApplicableEnabled?: Boolean;
         | 
| 3933 | 
            +
                /**
         | 
| 3934 | 
            +
                 * The type of the question.
         | 
| 3935 | 
            +
                 */
         | 
| 3936 | 
            +
                QuestionType: EvaluationFormQuestionType;
         | 
| 3937 | 
            +
                /**
         | 
| 3938 | 
            +
                 * The properties of the type of question. Text questions do not have to define question type properties.
         | 
| 3939 | 
            +
                 */
         | 
| 3940 | 
            +
                QuestionTypeProperties?: EvaluationFormQuestionTypeProperties;
         | 
| 3941 | 
            +
                /**
         | 
| 3942 | 
            +
                 * The scoring weight of the section.
         | 
| 3943 | 
            +
                 */
         | 
| 3944 | 
            +
                Weight?: EvaluationFormItemWeight;
         | 
| 3945 | 
            +
              }
         | 
| 3946 | 
            +
              export type EvaluationFormQuestionAnswerScore = number;
         | 
| 3947 | 
            +
              export type EvaluationFormQuestionInstructions = string;
         | 
| 3948 | 
            +
              export type EvaluationFormQuestionTitle = string;
         | 
| 3949 | 
            +
              export type EvaluationFormQuestionType = "TEXT"|"SINGLESELECT"|"NUMERIC"|string;
         | 
| 3950 | 
            +
              export interface EvaluationFormQuestionTypeProperties {
         | 
| 3951 | 
            +
                /**
         | 
| 3952 | 
            +
                 * The properties of the numeric question.
         | 
| 3953 | 
            +
                 */
         | 
| 3954 | 
            +
                Numeric?: EvaluationFormNumericQuestionProperties;
         | 
| 3955 | 
            +
                /**
         | 
| 3956 | 
            +
                 * The properties of the numeric question.
         | 
| 3957 | 
            +
                 */
         | 
| 3958 | 
            +
                SingleSelect?: EvaluationFormSingleSelectQuestionProperties;
         | 
| 3959 | 
            +
              }
         | 
| 3960 | 
            +
              export type EvaluationFormScoringMode = "QUESTION_ONLY"|"SECTION_ONLY"|string;
         | 
| 3961 | 
            +
              export type EvaluationFormScoringStatus = "ENABLED"|"DISABLED"|string;
         | 
| 3962 | 
            +
              export interface EvaluationFormScoringStrategy {
         | 
| 3963 | 
            +
                /**
         | 
| 3964 | 
            +
                 * The scoring mode of the evaluation form.
         | 
| 3965 | 
            +
                 */
         | 
| 3966 | 
            +
                Mode: EvaluationFormScoringMode;
         | 
| 3967 | 
            +
                /**
         | 
| 3968 | 
            +
                 * The scoring status of the evaluation form.
         | 
| 3969 | 
            +
                 */
         | 
| 3970 | 
            +
                Status: EvaluationFormScoringStatus;
         | 
| 3971 | 
            +
              }
         | 
| 3972 | 
            +
              export interface EvaluationFormSection {
         | 
| 3973 | 
            +
                /**
         | 
| 3974 | 
            +
                 * The title of the section.
         | 
| 3975 | 
            +
                 */
         | 
| 3976 | 
            +
                Title: EvaluationFormSectionTitle;
         | 
| 3977 | 
            +
                /**
         | 
| 3978 | 
            +
                 * The identifier of the section. An identifier must be unique within the evaluation form.
         | 
| 3979 | 
            +
                 */
         | 
| 3980 | 
            +
                RefId: ReferenceId;
         | 
| 3981 | 
            +
                /**
         | 
| 3982 | 
            +
                 * The instructions of the section.
         | 
| 3983 | 
            +
                 */
         | 
| 3984 | 
            +
                Instructions?: EvaluationFormQuestionInstructions;
         | 
| 3985 | 
            +
                /**
         | 
| 3986 | 
            +
                 * The items of the section.
         | 
| 3987 | 
            +
                 */
         | 
| 3988 | 
            +
                Items?: EvaluationFormItemsList;
         | 
| 3989 | 
            +
                /**
         | 
| 3990 | 
            +
                 * The scoring weight of the section.
         | 
| 3991 | 
            +
                 */
         | 
| 3992 | 
            +
                Weight?: EvaluationFormItemWeight;
         | 
| 3993 | 
            +
              }
         | 
| 3994 | 
            +
              export type EvaluationFormSectionTitle = string;
         | 
| 3995 | 
            +
              export interface EvaluationFormSingleSelectQuestionAutomation {
         | 
| 3996 | 
            +
                /**
         | 
| 3997 | 
            +
                 * The automation options of the single select question.
         | 
| 3998 | 
            +
                 */
         | 
| 3999 | 
            +
                Options: EvaluationFormSingleSelectQuestionAutomationOptionList;
         | 
| 4000 | 
            +
                /**
         | 
| 4001 | 
            +
                 * The identifier of the default answer option, when none of the automation options match the criteria.
         | 
| 4002 | 
            +
                 */
         | 
| 4003 | 
            +
                DefaultOptionRefId?: ReferenceId;
         | 
| 4004 | 
            +
              }
         | 
| 4005 | 
            +
              export interface EvaluationFormSingleSelectQuestionAutomationOption {
         | 
| 4006 | 
            +
                /**
         | 
| 4007 | 
            +
                 * The automation option based on a rule category for the single select question.
         | 
| 4008 | 
            +
                 */
         | 
| 4009 | 
            +
                RuleCategory?: SingleSelectQuestionRuleCategoryAutomation;
         | 
| 4010 | 
            +
              }
         | 
| 4011 | 
            +
              export type EvaluationFormSingleSelectQuestionAutomationOptionList = EvaluationFormSingleSelectQuestionAutomationOption[];
         | 
| 4012 | 
            +
              export type EvaluationFormSingleSelectQuestionDisplayMode = "DROPDOWN"|"RADIO"|string;
         | 
| 4013 | 
            +
              export interface EvaluationFormSingleSelectQuestionOption {
         | 
| 4014 | 
            +
                /**
         | 
| 4015 | 
            +
                 * The identifier of the answer option. An identifier must be unique within the question.
         | 
| 4016 | 
            +
                 */
         | 
| 4017 | 
            +
                RefId: ReferenceId;
         | 
| 4018 | 
            +
                /**
         | 
| 4019 | 
            +
                 * The title of the answer option.
         | 
| 4020 | 
            +
                 */
         | 
| 4021 | 
            +
                Text: EvaluationFormSingleSelectQuestionOptionText;
         | 
| 4022 | 
            +
                /**
         | 
| 4023 | 
            +
                 * The score assigned to the answer option.
         | 
| 4024 | 
            +
                 */
         | 
| 4025 | 
            +
                Score?: EvaluationFormQuestionAnswerScore;
         | 
| 4026 | 
            +
                /**
         | 
| 4027 | 
            +
                 * The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.
         | 
| 4028 | 
            +
                 */
         | 
| 4029 | 
            +
                AutomaticFail?: Boolean;
         | 
| 4030 | 
            +
              }
         | 
| 4031 | 
            +
              export type EvaluationFormSingleSelectQuestionOptionList = EvaluationFormSingleSelectQuestionOption[];
         | 
| 4032 | 
            +
              export type EvaluationFormSingleSelectQuestionOptionText = string;
         | 
| 4033 | 
            +
              export interface EvaluationFormSingleSelectQuestionProperties {
         | 
| 4034 | 
            +
                /**
         | 
| 4035 | 
            +
                 * The answer options of the single select question.
         | 
| 4036 | 
            +
                 */
         | 
| 4037 | 
            +
                Options: EvaluationFormSingleSelectQuestionOptionList;
         | 
| 4038 | 
            +
                /**
         | 
| 4039 | 
            +
                 * The display mode of the single select question.
         | 
| 4040 | 
            +
                 */
         | 
| 4041 | 
            +
                DisplayAs?: EvaluationFormSingleSelectQuestionDisplayMode;
         | 
| 4042 | 
            +
                /**
         | 
| 4043 | 
            +
                 * The display mode of the single select question.
         | 
| 4044 | 
            +
                 */
         | 
| 4045 | 
            +
                Automation?: EvaluationFormSingleSelectQuestionAutomation;
         | 
| 4046 | 
            +
              }
         | 
| 4047 | 
            +
              export interface EvaluationFormSummary {
         | 
| 4048 | 
            +
                /**
         | 
| 4049 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 4050 | 
            +
                 */
         | 
| 4051 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 4052 | 
            +
                /**
         | 
| 4053 | 
            +
                 * The Amazon Resource Name (ARN) for the evaluation form resource.
         | 
| 4054 | 
            +
                 */
         | 
| 4055 | 
            +
                EvaluationFormArn: ARN;
         | 
| 4056 | 
            +
                /**
         | 
| 4057 | 
            +
                 * A unique title of the evaluation form.
         | 
| 3273 4058 | 
             
                 */
         | 
| 3274 | 
            -
                 | 
| 4059 | 
            +
                Title: EvaluationFormTitle;
         | 
| 3275 4060 | 
             
                /**
         | 
| 3276 | 
            -
                 * The  | 
| 4061 | 
            +
                 * The timestamp for when the evaluation form was created.
         | 
| 3277 4062 | 
             
                 */
         | 
| 3278 | 
            -
                 | 
| 3279 | 
            -
              }
         | 
| 3280 | 
            -
              export interface DisassociateBotRequest {
         | 
| 4063 | 
            +
                CreatedTime: Timestamp;
         | 
| 3281 4064 | 
             
                /**
         | 
| 3282 | 
            -
                 * The  | 
| 4065 | 
            +
                 * The Amazon Resource Name (ARN) of the user who created the evaluation form.
         | 
| 3283 4066 | 
             
                 */
         | 
| 3284 | 
            -
                 | 
| 3285 | 
            -
                LexBot?: LexBot;
         | 
| 4067 | 
            +
                CreatedBy: ARN;
         | 
| 3286 4068 | 
             
                /**
         | 
| 3287 | 
            -
                 * The  | 
| 4069 | 
            +
                 * The timestamp for when the evaluation form was last updated.
         | 
| 3288 4070 | 
             
                 */
         | 
| 3289 | 
            -
                 | 
| 3290 | 
            -
              }
         | 
| 3291 | 
            -
              export interface DisassociateInstanceStorageConfigRequest {
         | 
| 4071 | 
            +
                LastModifiedTime: Timestamp;
         | 
| 3292 4072 | 
             
                /**
         | 
| 3293 | 
            -
                 * The  | 
| 4073 | 
            +
                 * The Amazon Resource Name (ARN) of the user who last updated the evaluation form.
         | 
| 3294 4074 | 
             
                 */
         | 
| 3295 | 
            -
                 | 
| 4075 | 
            +
                LastModifiedBy: ARN;
         | 
| 3296 4076 | 
             
                /**
         | 
| 3297 | 
            -
                 * The  | 
| 4077 | 
            +
                 * The timestamp for when the evaluation form was last activated.
         | 
| 3298 4078 | 
             
                 */
         | 
| 3299 | 
            -
                 | 
| 4079 | 
            +
                LastActivatedTime?: Timestamp;
         | 
| 3300 4080 | 
             
                /**
         | 
| 3301 | 
            -
                 *  | 
| 4081 | 
            +
                 *  The Amazon Resource Name (ARN) of the user who last activated the evaluation form.
         | 
| 3302 4082 | 
             
                 */
         | 
| 3303 | 
            -
                 | 
| 3304 | 
            -
              }
         | 
| 3305 | 
            -
              export interface DisassociateLambdaFunctionRequest {
         | 
| 4083 | 
            +
                LastActivatedBy?: ARN;
         | 
| 3306 4084 | 
             
                /**
         | 
| 3307 | 
            -
                 * The  | 
| 4085 | 
            +
                 * The version number of the latest evaluation form version.
         | 
| 3308 4086 | 
             
                 */
         | 
| 3309 | 
            -
                 | 
| 4087 | 
            +
                LatestVersion: VersionNumber;
         | 
| 3310 4088 | 
             
                /**
         | 
| 3311 | 
            -
                 * The  | 
| 4089 | 
            +
                 * The version of the active evaluation form version.
         | 
| 3312 4090 | 
             
                 */
         | 
| 3313 | 
            -
                 | 
| 4091 | 
            +
                ActiveVersion?: VersionNumber;
         | 
| 3314 4092 | 
             
              }
         | 
| 3315 | 
            -
              export  | 
| 4093 | 
            +
              export type EvaluationFormSummaryList = EvaluationFormSummary[];
         | 
| 4094 | 
            +
              export type EvaluationFormTitle = string;
         | 
| 4095 | 
            +
              export type EvaluationFormVersionIsLocked = boolean;
         | 
| 4096 | 
            +
              export type EvaluationFormVersionStatus = "DRAFT"|"ACTIVE"|string;
         | 
| 4097 | 
            +
              export interface EvaluationFormVersionSummary {
         | 
| 3316 4098 | 
             
                /**
         | 
| 3317 | 
            -
                 * The  | 
| 4099 | 
            +
                 * The Amazon Resource Name (ARN) for the evaluation form resource.
         | 
| 3318 4100 | 
             
                 */
         | 
| 3319 | 
            -
                 | 
| 4101 | 
            +
                EvaluationFormArn: ARN;
         | 
| 3320 4102 | 
             
                /**
         | 
| 3321 | 
            -
                 * The  | 
| 4103 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 3322 4104 | 
             
                 */
         | 
| 3323 | 
            -
                 | 
| 4105 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 3324 4106 | 
             
                /**
         | 
| 3325 | 
            -
                 *  | 
| 4107 | 
            +
                 * A version of the evaluation form.
         | 
| 3326 4108 | 
             
                 */
         | 
| 3327 | 
            -
                 | 
| 3328 | 
            -
              }
         | 
| 3329 | 
            -
              export interface DisassociatePhoneNumberContactFlowRequest {
         | 
| 4109 | 
            +
                EvaluationFormVersion: VersionNumber;
         | 
| 3330 4110 | 
             
                /**
         | 
| 3331 | 
            -
                 *  | 
| 4111 | 
            +
                 * The flag indicating whether the evaluation form is locked for changes.
         | 
| 3332 4112 | 
             
                 */
         | 
| 3333 | 
            -
                 | 
| 4113 | 
            +
                Locked: EvaluationFormVersionIsLocked;
         | 
| 3334 4114 | 
             
                /**
         | 
| 3335 | 
            -
                 * The  | 
| 4115 | 
            +
                 * The status of the evaluation form.
         | 
| 3336 4116 | 
             
                 */
         | 
| 3337 | 
            -
                 | 
| 3338 | 
            -
              }
         | 
| 3339 | 
            -
              export interface DisassociateQueueQuickConnectsRequest {
         | 
| 4117 | 
            +
                Status: EvaluationFormVersionStatus;
         | 
| 3340 4118 | 
             
                /**
         | 
| 3341 | 
            -
                 * The  | 
| 4119 | 
            +
                 * The timestamp for when the evaluation form was created.
         | 
| 3342 4120 | 
             
                 */
         | 
| 3343 | 
            -
                 | 
| 4121 | 
            +
                CreatedTime: Timestamp;
         | 
| 3344 4122 | 
             
                /**
         | 
| 3345 | 
            -
                 * The  | 
| 4123 | 
            +
                 * The Amazon Resource Name (ARN) of the user who created the evaluation form.
         | 
| 3346 4124 | 
             
                 */
         | 
| 3347 | 
            -
                 | 
| 4125 | 
            +
                CreatedBy: ARN;
         | 
| 3348 4126 | 
             
                /**
         | 
| 3349 | 
            -
                 * The  | 
| 4127 | 
            +
                 * The timestamp for when the evaluation form was last updated.
         | 
| 3350 4128 | 
             
                 */
         | 
| 3351 | 
            -
                 | 
| 4129 | 
            +
                LastModifiedTime: Timestamp;
         | 
| 4130 | 
            +
                /**
         | 
| 4131 | 
            +
                 * The Amazon Resource Name (ARN) of the user who last updated the evaluation form.
         | 
| 4132 | 
            +
                 */
         | 
| 4133 | 
            +
                LastModifiedBy: ARN;
         | 
| 3352 4134 | 
             
              }
         | 
| 3353 | 
            -
              export  | 
| 4135 | 
            +
              export type EvaluationFormVersionSummaryList = EvaluationFormVersionSummary[];
         | 
| 4136 | 
            +
              export interface EvaluationMetadata {
         | 
| 3354 4137 | 
             
                /**
         | 
| 3355 | 
            -
                 * The identifier of the  | 
| 4138 | 
            +
                 * The identifier of the contact in this instance of Amazon Connect. 
         | 
| 3356 4139 | 
             
                 */
         | 
| 3357 | 
            -
                 | 
| 4140 | 
            +
                ContactId: ContactId;
         | 
| 3358 4141 | 
             
                /**
         | 
| 3359 | 
            -
                 * The  | 
| 4142 | 
            +
                 * The Amazon Resource Name (ARN) of the user who last updated the evaluation.
         | 
| 3360 4143 | 
             
                 */
         | 
| 3361 | 
            -
                 | 
| 4144 | 
            +
                EvaluatorArn: ARN;
         | 
| 3362 4145 | 
             
                /**
         | 
| 3363 | 
            -
                 * The  | 
| 4146 | 
            +
                 * The identifier of the agent who performed the contact.
         | 
| 3364 4147 | 
             
                 */
         | 
| 3365 | 
            -
                 | 
| 3366 | 
            -
              }
         | 
| 3367 | 
            -
              export interface DisassociateSecurityKeyRequest {
         | 
| 4148 | 
            +
                ContactAgentId?: ResourceId;
         | 
| 3368 4149 | 
             
                /**
         | 
| 3369 | 
            -
                 * The  | 
| 4150 | 
            +
                 * The overall score of the contact evaluation.
         | 
| 3370 4151 | 
             
                 */
         | 
| 3371 | 
            -
                 | 
| 4152 | 
            +
                Score?: EvaluationScore;
         | 
| 4153 | 
            +
              }
         | 
| 4154 | 
            +
              export interface EvaluationNote {
         | 
| 3372 4155 | 
             
                /**
         | 
| 3373 | 
            -
                 * The  | 
| 4156 | 
            +
                 * The note for an item (section or question) in a contact evaluation.
         | 
| 3374 4157 | 
             
                 */
         | 
| 3375 | 
            -
                 | 
| 4158 | 
            +
                Value?: EvaluationNoteString;
         | 
| 3376 4159 | 
             
              }
         | 
| 3377 | 
            -
              export  | 
| 4160 | 
            +
              export type EvaluationNoteString = string;
         | 
| 4161 | 
            +
              export type EvaluationNotesMap = {[key: string]: EvaluationNote};
         | 
| 4162 | 
            +
              export interface EvaluationScore {
         | 
| 3378 4163 | 
             
                /**
         | 
| 3379 | 
            -
                 * The  | 
| 4164 | 
            +
                 * The score percentage for an item in a contact evaluation.
         | 
| 3380 4165 | 
             
                 */
         | 
| 3381 | 
            -
                 | 
| 4166 | 
            +
                Percentage?: EvaluationScorePercentage;
         | 
| 3382 4167 | 
             
                /**
         | 
| 3383 | 
            -
                 * The  | 
| 4168 | 
            +
                 * The flag to mark the item as not applicable for scoring.
         | 
| 3384 4169 | 
             
                 */
         | 
| 3385 | 
            -
                 | 
| 4170 | 
            +
                NotApplicable?: Boolean;
         | 
| 3386 4171 | 
             
                /**
         | 
| 3387 | 
            -
                 * The  | 
| 4172 | 
            +
                 * The flag that marks the item as automatic fail. If the item or a child item gets an automatic fail answer, this flag will be true.
         | 
| 3388 4173 | 
             
                 */
         | 
| 3389 | 
            -
                 | 
| 3390 | 
            -
              }
         | 
| 3391 | 
            -
              export interface DismissUserContactResponse {
         | 
| 4174 | 
            +
                AutomaticFail?: Boolean;
         | 
| 3392 4175 | 
             
              }
         | 
| 3393 | 
            -
              export type  | 
| 3394 | 
            -
              export  | 
| 4176 | 
            +
              export type EvaluationScorePercentage = number;
         | 
| 4177 | 
            +
              export type EvaluationScoresMap = {[key: string]: EvaluationScore};
         | 
| 4178 | 
            +
              export type EvaluationStatus = "DRAFT"|"SUBMITTED"|string;
         | 
| 4179 | 
            +
              export interface EvaluationSummary {
         | 
| 3395 4180 | 
             
                /**
         | 
| 3396 | 
            -
                 *  | 
| 4181 | 
            +
                 * A unique identifier for the contact evaluation.
         | 
| 3397 4182 | 
             
                 */
         | 
| 3398 | 
            -
                 | 
| 4183 | 
            +
                EvaluationId: ResourceId;
         | 
| 3399 4184 | 
             
                /**
         | 
| 3400 | 
            -
                 * The  | 
| 4185 | 
            +
                 * The Amazon Resource Name (ARN) for the contact evaluation resource.
         | 
| 3401 4186 | 
             
                 */
         | 
| 3402 | 
            -
                 | 
| 3403 | 
            -
              }
         | 
| 3404 | 
            -
              export type DistributionList = Distribution[];
         | 
| 3405 | 
            -
              export type Email = string;
         | 
| 3406 | 
            -
              export interface EmailReference {
         | 
| 4187 | 
            +
                EvaluationArn: ARN;
         | 
| 3407 4188 | 
             
                /**
         | 
| 3408 | 
            -
                 *  | 
| 4189 | 
            +
                 * A unique title of the evaluation form.
         | 
| 3409 4190 | 
             
                 */
         | 
| 3410 | 
            -
                 | 
| 4191 | 
            +
                EvaluationFormTitle: EvaluationFormTitle;
         | 
| 3411 4192 | 
             
                /**
         | 
| 3412 | 
            -
                 *  | 
| 4193 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 3413 4194 | 
             
                 */
         | 
| 3414 | 
            -
                 | 
| 3415 | 
            -
              }
         | 
| 3416 | 
            -
              export interface EncryptionConfig {
         | 
| 4195 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 3417 4196 | 
             
                /**
         | 
| 3418 | 
            -
                 * The  | 
| 4197 | 
            +
                 * The status of the contact evaluation.
         | 
| 3419 4198 | 
             
                 */
         | 
| 3420 | 
            -
                 | 
| 4199 | 
            +
                Status: EvaluationStatus;
         | 
| 3421 4200 | 
             
                /**
         | 
| 3422 | 
            -
                 * The  | 
| 4201 | 
            +
                 * The Amazon Resource Name (ARN) of the user who last updated the evaluation.
         | 
| 3423 4202 | 
             
                 */
         | 
| 3424 | 
            -
                 | 
| 4203 | 
            +
                EvaluatorArn: ARN;
         | 
| 4204 | 
            +
                /**
         | 
| 4205 | 
            +
                 * The overall score of the contact evaluation.
         | 
| 4206 | 
            +
                 */
         | 
| 4207 | 
            +
                Score?: EvaluationScore;
         | 
| 4208 | 
            +
                /**
         | 
| 4209 | 
            +
                 * The timestamp for when the evaluation was created.
         | 
| 4210 | 
            +
                 */
         | 
| 4211 | 
            +
                CreatedTime: Timestamp;
         | 
| 4212 | 
            +
                /**
         | 
| 4213 | 
            +
                 * The timestamp for when the evaluation was last updated.
         | 
| 4214 | 
            +
                 */
         | 
| 4215 | 
            +
                LastModifiedTime: Timestamp;
         | 
| 3425 4216 | 
             
              }
         | 
| 3426 | 
            -
              export type  | 
| 4217 | 
            +
              export type EvaluationSummaryList = EvaluationSummary[];
         | 
| 3427 4218 | 
             
              export interface EventBridgeActionDefinition {
         | 
| 3428 4219 | 
             
                /**
         | 
| 3429 4220 | 
             
                 * The name.
         | 
| @@ -4175,6 +4966,7 @@ declare namespace Connect { | |
| 4175 4966 | 
             
                OutboundCallsEnabled?: OutboundCallsEnabled;
         | 
| 4176 4967 | 
             
              }
         | 
| 4177 4968 | 
             
              export type InstanceSummaryList = InstanceSummary[];
         | 
| 4969 | 
            +
              export type Integer = number;
         | 
| 4178 4970 | 
             
              export type IntegerCount = number;
         | 
| 4179 4971 | 
             
              export type IntegrationAssociationId = string;
         | 
| 4180 4972 | 
             
              export interface IntegrationAssociationSummary {
         | 
| @@ -4355,6 +5147,30 @@ declare namespace Connect { | |
| 4355 5147 | 
             
                 */
         | 
| 4356 5148 | 
             
                NextToken?: NextToken;
         | 
| 4357 5149 | 
             
              }
         | 
| 5150 | 
            +
              export interface ListContactEvaluationsRequest {
         | 
| 5151 | 
            +
                /**
         | 
| 5152 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 5153 | 
            +
                 */
         | 
| 5154 | 
            +
                InstanceId: InstanceId;
         | 
| 5155 | 
            +
                /**
         | 
| 5156 | 
            +
                 * The identifier of the contact in this instance of Amazon Connect. 
         | 
| 5157 | 
            +
                 */
         | 
| 5158 | 
            +
                ContactId: ContactId;
         | 
| 5159 | 
            +
                /**
         | 
| 5160 | 
            +
                 * 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 because the value returned in the previous response is always null. 
         | 
| 5161 | 
            +
                 */
         | 
| 5162 | 
            +
                NextToken?: NextToken;
         | 
| 5163 | 
            +
              }
         | 
| 5164 | 
            +
              export interface ListContactEvaluationsResponse {
         | 
| 5165 | 
            +
                /**
         | 
| 5166 | 
            +
                 * Provides details about a list of contact evaluations belonging to an instance.
         | 
| 5167 | 
            +
                 */
         | 
| 5168 | 
            +
                EvaluationSummaryList: EvaluationSummaryList;
         | 
| 5169 | 
            +
                /**
         | 
| 5170 | 
            +
                 * If there are additional results, this is the token for the next set of results.  This is always returned as null in the response. 
         | 
| 5171 | 
            +
                 */
         | 
| 5172 | 
            +
                NextToken?: NextToken;
         | 
| 5173 | 
            +
              }
         | 
| 4358 5174 | 
             
              export interface ListContactFlowModulesRequest {
         | 
| 4359 5175 | 
             
                /**
         | 
| 4360 5176 | 
             
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| @@ -4467,6 +5283,58 @@ declare namespace Connect { | |
| 4467 5283 | 
             
                 */
         | 
| 4468 5284 | 
             
                NextToken?: VocabularyNextToken;
         | 
| 4469 5285 | 
             
              }
         | 
| 5286 | 
            +
              export interface ListEvaluationFormVersionsRequest {
         | 
| 5287 | 
            +
                /**
         | 
| 5288 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 5289 | 
            +
                 */
         | 
| 5290 | 
            +
                InstanceId: InstanceId;
         | 
| 5291 | 
            +
                /**
         | 
| 5292 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 5293 | 
            +
                 */
         | 
| 5294 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 5295 | 
            +
                /**
         | 
| 5296 | 
            +
                 * The maximum number of results to return per page.
         | 
| 5297 | 
            +
                 */
         | 
| 5298 | 
            +
                MaxResults?: MaxResult100;
         | 
| 5299 | 
            +
                /**
         | 
| 5300 | 
            +
                 * 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.
         | 
| 5301 | 
            +
                 */
         | 
| 5302 | 
            +
                NextToken?: NextToken;
         | 
| 5303 | 
            +
              }
         | 
| 5304 | 
            +
              export interface ListEvaluationFormVersionsResponse {
         | 
| 5305 | 
            +
                /**
         | 
| 5306 | 
            +
                 * Provides details about a list of evaluation forms belonging to an instance.
         | 
| 5307 | 
            +
                 */
         | 
| 5308 | 
            +
                EvaluationFormVersionSummaryList: EvaluationFormVersionSummaryList;
         | 
| 5309 | 
            +
                /**
         | 
| 5310 | 
            +
                 * If there are additional results, this is the token for the next set of results.
         | 
| 5311 | 
            +
                 */
         | 
| 5312 | 
            +
                NextToken?: NextToken;
         | 
| 5313 | 
            +
              }
         | 
| 5314 | 
            +
              export interface ListEvaluationFormsRequest {
         | 
| 5315 | 
            +
                /**
         | 
| 5316 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 5317 | 
            +
                 */
         | 
| 5318 | 
            +
                InstanceId: InstanceId;
         | 
| 5319 | 
            +
                /**
         | 
| 5320 | 
            +
                 * The maximum number of results to return per page.
         | 
| 5321 | 
            +
                 */
         | 
| 5322 | 
            +
                MaxResults?: MaxResult100;
         | 
| 5323 | 
            +
                /**
         | 
| 5324 | 
            +
                 * 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.
         | 
| 5325 | 
            +
                 */
         | 
| 5326 | 
            +
                NextToken?: NextToken;
         | 
| 5327 | 
            +
              }
         | 
| 5328 | 
            +
              export interface ListEvaluationFormsResponse {
         | 
| 5329 | 
            +
                /**
         | 
| 5330 | 
            +
                 * Provides details about a list of evaluation forms belonging to an instance.
         | 
| 5331 | 
            +
                 */
         | 
| 5332 | 
            +
                EvaluationFormSummaryList: EvaluationFormSummaryList;
         | 
| 5333 | 
            +
                /**
         | 
| 5334 | 
            +
                 * If there are additional results, this is the token for the next set of results.
         | 
| 5335 | 
            +
                 */
         | 
| 5336 | 
            +
                NextToken?: NextToken;
         | 
| 5337 | 
            +
              }
         | 
| 4470 5338 | 
             
              export interface ListHoursOfOperationsRequest {
         | 
| 4471 5339 | 
             
                /**
         | 
| 4472 5340 | 
             
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| @@ -5279,6 +6147,13 @@ declare namespace Connect { | |
| 5279 6147 | 
             
                 */
         | 
| 5280 6148 | 
             
                Value?: ReferenceValue;
         | 
| 5281 6149 | 
             
              }
         | 
| 6150 | 
            +
              export type NumericQuestionPropertyAutomationLabel = "OVERALL_CUSTOMER_SENTIMENT_SCORE"|"OVERALL_AGENT_SENTIMENT_SCORE"|"NON_TALK_TIME"|"NON_TALK_TIME_PERCENTAGE"|"NUMBER_OF_INTERRUPTIONS"|"CONTACT_DURATION"|"AGENT_INTERACTION_DURATION"|"CUSTOMER_HOLD_TIME"|string;
         | 
| 6151 | 
            +
              export interface NumericQuestionPropertyValueAutomation {
         | 
| 6152 | 
            +
                /**
         | 
| 6153 | 
            +
                 * The property label of the automation.
         | 
| 6154 | 
            +
                 */
         | 
| 6155 | 
            +
                Label: NumericQuestionPropertyAutomationLabel;
         | 
| 6156 | 
            +
              }
         | 
| 5282 6157 | 
             
              export type Origin = string;
         | 
| 5283 6158 | 
             
              export type OriginsList = Origin[];
         | 
| 5284 6159 | 
             
              export interface OutboundCallerConfig {
         | 
| @@ -5654,6 +6529,7 @@ declare namespace Connect { | |
| 5654 6529 | 
             
                 */
         | 
| 5655 6530 | 
             
                Type: ReferenceType;
         | 
| 5656 6531 | 
             
              }
         | 
| 6532 | 
            +
              export type ReferenceId = string;
         | 
| 5657 6533 | 
             
              export type ReferenceKey = string;
         | 
| 5658 6534 | 
             
              export type ReferenceStatus = "APPROVED"|"REJECTED"|string;
         | 
| 5659 6535 | 
             
              export interface ReferenceSummary {
         | 
| @@ -5733,6 +6609,7 @@ declare namespace Connect { | |
| 5733 6609 | 
             
              }
         | 
| 5734 6610 | 
             
              export type RequiredTaskTemplateFields = RequiredFieldInfo[];
         | 
| 5735 6611 | 
             
              export type ResourceArnOrId = string;
         | 
| 6612 | 
            +
              export type ResourceId = string;
         | 
| 5736 6613 | 
             
              export interface ResumeContactRecordingRequest {
         | 
| 5737 6614 | 
             
                /**
         | 
| 5738 6615 | 
             
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| @@ -6372,6 +7249,22 @@ declare namespace Connect { | |
| 6372 7249 | 
             
                Recipient: NotificationRecipientType;
         | 
| 6373 7250 | 
             
              }
         | 
| 6374 7251 | 
             
              export type SingleSelectOptions = TaskTemplateSingleSelectOption[];
         | 
| 7252 | 
            +
              export interface SingleSelectQuestionRuleCategoryAutomation {
         | 
| 7253 | 
            +
                /**
         | 
| 7254 | 
            +
                 *  The category name, as defined in Rules.
         | 
| 7255 | 
            +
                 */
         | 
| 7256 | 
            +
                Category: SingleSelectQuestionRuleCategoryAutomationLabel;
         | 
| 7257 | 
            +
                /**
         | 
| 7258 | 
            +
                 * The condition to apply for the automation option. If the condition is PRESENT, then the option is applied when the contact data includes the category. Similarly, if the condition is NOT_PRESENT, then the option is applied when the contact data does not include the category.
         | 
| 7259 | 
            +
                 */
         | 
| 7260 | 
            +
                Condition: SingleSelectQuestionRuleCategoryAutomationCondition;
         | 
| 7261 | 
            +
                /**
         | 
| 7262 | 
            +
                 * The identifier of the answer option tha
         | 
| 7263 | 
            +
                 */
         | 
| 7264 | 
            +
                OptionRefId: ReferenceId;
         | 
| 7265 | 
            +
              }
         | 
| 7266 | 
            +
              export type SingleSelectQuestionRuleCategoryAutomationCondition = "PRESENT"|"NOT_PRESENT"|string;
         | 
| 7267 | 
            +
              export type SingleSelectQuestionRuleCategoryAutomationLabel = string;
         | 
| 6375 7268 | 
             
              export type SnapshotVersion = string;
         | 
| 6376 7269 | 
             
              export type SortOrder = "ASCENDING"|"DESCENDING"|string;
         | 
| 6377 7270 | 
             
              export type SourceApplicationName = string;
         | 
| @@ -6436,6 +7329,34 @@ declare namespace Connect { | |
| 6436 7329 | 
             
                 */
         | 
| 6437 7330 | 
             
                ContinuedFromContactId?: ContactId;
         | 
| 6438 7331 | 
             
              }
         | 
| 7332 | 
            +
              export interface StartContactEvaluationRequest {
         | 
| 7333 | 
            +
                /**
         | 
| 7334 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 7335 | 
            +
                 */
         | 
| 7336 | 
            +
                InstanceId: InstanceId;
         | 
| 7337 | 
            +
                /**
         | 
| 7338 | 
            +
                 * The identifier of the contact in this instance of Amazon Connect. 
         | 
| 7339 | 
            +
                 */
         | 
| 7340 | 
            +
                ContactId: ContactId;
         | 
| 7341 | 
            +
                /**
         | 
| 7342 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 7343 | 
            +
                 */
         | 
| 7344 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 7345 | 
            +
                /**
         | 
| 7346 | 
            +
                 * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
         | 
| 7347 | 
            +
                 */
         | 
| 7348 | 
            +
                ClientToken?: ClientToken;
         | 
| 7349 | 
            +
              }
         | 
| 7350 | 
            +
              export interface StartContactEvaluationResponse {
         | 
| 7351 | 
            +
                /**
         | 
| 7352 | 
            +
                 * A unique identifier for the contact evaluation.
         | 
| 7353 | 
            +
                 */
         | 
| 7354 | 
            +
                EvaluationId: ResourceId;
         | 
| 7355 | 
            +
                /**
         | 
| 7356 | 
            +
                 * The Amazon Resource Name (ARN) for the contact evaluation resource.
         | 
| 7357 | 
            +
                 */
         | 
| 7358 | 
            +
                EvaluationArn: ARN;
         | 
| 7359 | 
            +
              }
         | 
| 6439 7360 | 
             
              export interface StartContactRecordingRequest {
         | 
| 6440 7361 | 
             
                /**
         | 
| 6441 7362 | 
             
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| @@ -6658,6 +7579,34 @@ declare namespace Connect { | |
| 6658 7579 | 
             
                Value?: ReferenceValue;
         | 
| 6659 7580 | 
             
              }
         | 
| 6660 7581 | 
             
              export type Subject = string;
         | 
| 7582 | 
            +
              export interface SubmitContactEvaluationRequest {
         | 
| 7583 | 
            +
                /**
         | 
| 7584 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 7585 | 
            +
                 */
         | 
| 7586 | 
            +
                InstanceId: InstanceId;
         | 
| 7587 | 
            +
                /**
         | 
| 7588 | 
            +
                 * A unique identifier for the contact evaluation.
         | 
| 7589 | 
            +
                 */
         | 
| 7590 | 
            +
                EvaluationId: ResourceId;
         | 
| 7591 | 
            +
                /**
         | 
| 7592 | 
            +
                 * A map of question identifiers to answer value.
         | 
| 7593 | 
            +
                 */
         | 
| 7594 | 
            +
                Answers?: EvaluationAnswersInputMap;
         | 
| 7595 | 
            +
                /**
         | 
| 7596 | 
            +
                 * A map of question identifiers to note value.
         | 
| 7597 | 
            +
                 */
         | 
| 7598 | 
            +
                Notes?: EvaluationNotesMap;
         | 
| 7599 | 
            +
              }
         | 
| 7600 | 
            +
              export interface SubmitContactEvaluationResponse {
         | 
| 7601 | 
            +
                /**
         | 
| 7602 | 
            +
                 * A unique identifier for the contact evaluation.
         | 
| 7603 | 
            +
                 */
         | 
| 7604 | 
            +
                EvaluationId: ResourceId;
         | 
| 7605 | 
            +
                /**
         | 
| 7606 | 
            +
                 * The Amazon Resource Name (ARN) for the contact evaluation resource.
         | 
| 7607 | 
            +
                 */
         | 
| 7608 | 
            +
                EvaluationArn: ARN;
         | 
| 7609 | 
            +
              }
         | 
| 6661 7610 | 
             
              export type SupportedMessagingContentType = string;
         | 
| 6662 7611 | 
             
              export type SupportedMessagingContentTypes = SupportedMessagingContentType[];
         | 
| 6663 7612 | 
             
              export interface SuspendContactRecordingRequest {
         | 
| @@ -7005,6 +7954,34 @@ declare namespace Connect { | |
| 7005 7954 | 
             
              }
         | 
| 7006 7955 | 
             
              export interface UpdateContactAttributesResponse {
         | 
| 7007 7956 | 
             
              }
         | 
| 7957 | 
            +
              export interface UpdateContactEvaluationRequest {
         | 
| 7958 | 
            +
                /**
         | 
| 7959 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 7960 | 
            +
                 */
         | 
| 7961 | 
            +
                InstanceId: InstanceId;
         | 
| 7962 | 
            +
                /**
         | 
| 7963 | 
            +
                 * A unique identifier for the contact evaluation.
         | 
| 7964 | 
            +
                 */
         | 
| 7965 | 
            +
                EvaluationId: ResourceId;
         | 
| 7966 | 
            +
                /**
         | 
| 7967 | 
            +
                 * A map of question identifiers to answer value.
         | 
| 7968 | 
            +
                 */
         | 
| 7969 | 
            +
                Answers?: EvaluationAnswersInputMap;
         | 
| 7970 | 
            +
                /**
         | 
| 7971 | 
            +
                 * A map of question identifiers to note value.
         | 
| 7972 | 
            +
                 */
         | 
| 7973 | 
            +
                Notes?: EvaluationNotesMap;
         | 
| 7974 | 
            +
              }
         | 
| 7975 | 
            +
              export interface UpdateContactEvaluationResponse {
         | 
| 7976 | 
            +
                /**
         | 
| 7977 | 
            +
                 * A unique identifier for the contact evaluation.
         | 
| 7978 | 
            +
                 */
         | 
| 7979 | 
            +
                EvaluationId: ResourceId;
         | 
| 7980 | 
            +
                /**
         | 
| 7981 | 
            +
                 * The Amazon Resource Name (ARN) for the contact evaluation resource.
         | 
| 7982 | 
            +
                 */
         | 
| 7983 | 
            +
                EvaluationArn: ARN;
         | 
| 7984 | 
            +
              }
         | 
| 7008 7985 | 
             
              export interface UpdateContactFlowContentRequest {
         | 
| 7009 7986 | 
             
                /**
         | 
| 7010 7987 | 
             
                 * The identifier of the Amazon Connect instance.
         | 
| @@ -7145,6 +8122,58 @@ declare namespace Connect { | |
| 7145 8122 | 
             
              }
         | 
| 7146 8123 | 
             
              export interface UpdateContactScheduleResponse {
         | 
| 7147 8124 | 
             
              }
         | 
| 8125 | 
            +
              export interface UpdateEvaluationFormRequest {
         | 
| 8126 | 
            +
                /**
         | 
| 8127 | 
            +
                 * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
         | 
| 8128 | 
            +
                 */
         | 
| 8129 | 
            +
                InstanceId: InstanceId;
         | 
| 8130 | 
            +
                /**
         | 
| 8131 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 8132 | 
            +
                 */
         | 
| 8133 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 8134 | 
            +
                /**
         | 
| 8135 | 
            +
                 * A version of the evaluation form to update.
         | 
| 8136 | 
            +
                 */
         | 
| 8137 | 
            +
                EvaluationFormVersion: VersionNumber;
         | 
| 8138 | 
            +
                /**
         | 
| 8139 | 
            +
                 * A flag indicating whether the operation must create a new version.
         | 
| 8140 | 
            +
                 */
         | 
| 8141 | 
            +
                CreateNewVersion?: BoxedBoolean;
         | 
| 8142 | 
            +
                /**
         | 
| 8143 | 
            +
                 * A unique title of the evaluation form.
         | 
| 8144 | 
            +
                 */
         | 
| 8145 | 
            +
                Title: EvaluationFormTitle;
         | 
| 8146 | 
            +
                /**
         | 
| 8147 | 
            +
                 * The description of the evaluation form.
         | 
| 8148 | 
            +
                 */
         | 
| 8149 | 
            +
                Description?: EvaluationFormDescription;
         | 
| 8150 | 
            +
                /**
         | 
| 8151 | 
            +
                 * Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.
         | 
| 8152 | 
            +
                 */
         | 
| 8153 | 
            +
                Items: EvaluationFormItemsList;
         | 
| 8154 | 
            +
                /**
         | 
| 8155 | 
            +
                 * A scoring strategy of the evaluation form.
         | 
| 8156 | 
            +
                 */
         | 
| 8157 | 
            +
                ScoringStrategy?: EvaluationFormScoringStrategy;
         | 
| 8158 | 
            +
                /**
         | 
| 8159 | 
            +
                 * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
         | 
| 8160 | 
            +
                 */
         | 
| 8161 | 
            +
                ClientToken?: ClientToken;
         | 
| 8162 | 
            +
              }
         | 
| 8163 | 
            +
              export interface UpdateEvaluationFormResponse {
         | 
| 8164 | 
            +
                /**
         | 
| 8165 | 
            +
                 * The unique identifier for the evaluation form.
         | 
| 8166 | 
            +
                 */
         | 
| 8167 | 
            +
                EvaluationFormId: ResourceId;
         | 
| 8168 | 
            +
                /**
         | 
| 8169 | 
            +
                 * The Amazon Resource Name (ARN) for the contact evaluation resource.
         | 
| 8170 | 
            +
                 */
         | 
| 8171 | 
            +
                EvaluationFormArn: ARN;
         | 
| 8172 | 
            +
                /**
         | 
| 8173 | 
            +
                 * The version of the updated evaluation form resource.
         | 
| 8174 | 
            +
                 */
         | 
| 8175 | 
            +
                EvaluationFormVersion: VersionNumber;
         | 
| 8176 | 
            +
              }
         | 
| 7148 8177 | 
             
              export type UpdateHoursOfOperationDescription = string;
         | 
| 7149 8178 | 
             
              export interface UpdateHoursOfOperationRequest {
         | 
| 7150 8179 | 
             
                /**
         | 
| @@ -7943,6 +8972,7 @@ declare namespace Connect { | |
| 7943 8972 | 
             
              export type UserSummaryList = UserSummary[];
         | 
| 7944 8973 | 
             
              export type UserTagMap = {[key: string]: String};
         | 
| 7945 8974 | 
             
              export type Value = number;
         | 
| 8975 | 
            +
              export type VersionNumber = number;
         | 
| 7946 8976 | 
             
              export interface Vocabulary {
         | 
| 7947 8977 | 
             
                /**
         | 
| 7948 8978 | 
             
                 * A unique name of the custom vocabulary.
         |