|
10824 | 10824 | "shape":"TagMap", |
10825 | 10825 | "documentation":"<p>The tags used to organize, track, or control access for this resource. For example, { \"Tags\": {\"key1\":\"value1\", \"key2\":\"value2\"} }.</p>" |
10826 | 10826 | }, |
| 10827 | + "ReviewConfiguration":{ |
| 10828 | + "shape":"EvaluationReviewConfiguration", |
| 10829 | + "documentation":"<p>Configuration information about evaluation reviews.</p>" |
| 10830 | + }, |
10827 | 10831 | "TargetConfiguration":{ |
10828 | 10832 | "shape":"EvaluationFormTargetConfiguration", |
10829 | 10833 | "documentation":"<p>Configuration that specifies the target for the evaluation form.</p>" |
|
16287 | 16291 | "shape":"EvaluationFormAutoEvaluationConfiguration", |
16288 | 16292 | "documentation":"<p>The automatic evaluation configuration of an evaluation form.</p>" |
16289 | 16293 | }, |
| 16294 | + "ReviewConfiguration":{ |
| 16295 | + "shape":"EvaluationReviewConfiguration", |
| 16296 | + "documentation":"<p>Configuration for evaluation review settings of this evaluation form.</p>" |
| 16297 | + }, |
16290 | 16298 | "Tags":{ |
16291 | 16299 | "shape":"TagMap", |
16292 | 16300 | "documentation":"<p>The tags used to organize, track, or control access for this resource. For example, { \"Tags\": {\"key1\":\"value1\", \"key2\":\"value2\"} }.</p>" |
|
16362 | 16370 | "LanguageConfiguration":{ |
16363 | 16371 | "shape":"EvaluationFormLanguageConfiguration", |
16364 | 16372 | "documentation":"<p>Configuration for language settings of this evaluation form content.</p>" |
| 16373 | + }, |
| 16374 | + "ReviewConfiguration":{ |
| 16375 | + "shape":"EvaluationReviewConfiguration", |
| 16376 | + "documentation":"<p>Configuration for evaluation review settings of this evaluation form content.</p>" |
16365 | 16377 | } |
16366 | 16378 | }, |
16367 | 16379 | "documentation":"<p>Information about an evaluation form used in a contact evaluation.</p>" |
|
17308 | 17320 | "shape":"EvaluationAcknowledgement", |
17309 | 17321 | "documentation":"<p>Information related to evaluation acknowledgement.</p>" |
17310 | 17322 | }, |
| 17323 | + "Review":{ |
| 17324 | + "shape":"EvaluationReviewMetadata", |
| 17325 | + "documentation":"<p>Information about reviews of this evaluation.</p>" |
| 17326 | + }, |
17311 | 17327 | "ContactParticipant":{ |
17312 | 17328 | "shape":"EvaluationContactParticipant", |
17313 | 17329 | "documentation":"<p>Information about a contact participant in this evaluation.</p>" |
@@ -17372,6 +17388,112 @@ |
17372 | 17388 | }, |
17373 | 17389 | "documentation":"<p>Details of the input data used for automated question processing.</p>" |
17374 | 17390 | }, |
| 17391 | + "EvaluationReviewConfiguration":{ |
| 17392 | + "type":"structure", |
| 17393 | + "required":["ReviewNotificationRecipients"], |
| 17394 | + "members":{ |
| 17395 | + "ReviewNotificationRecipients":{ |
| 17396 | + "shape":"EvaluationReviewNotificationRecipientList", |
| 17397 | + "documentation":"<p>List of recipients who should be notified when a review is requested.</p>" |
| 17398 | + }, |
| 17399 | + "EligibilityDays":{ |
| 17400 | + "shape":"Integer", |
| 17401 | + "documentation":"<p>Number of days during which a request for review can be submitted for evaluations created from this form.</p>" |
| 17402 | + } |
| 17403 | + }, |
| 17404 | + "documentation":"<p>Configuration settings for evaluation reviews.</p>" |
| 17405 | + }, |
| 17406 | + "EvaluationReviewMetadata":{ |
| 17407 | + "type":"structure", |
| 17408 | + "required":[ |
| 17409 | + "CreatedTime", |
| 17410 | + "CreatedBy", |
| 17411 | + "ReviewRequestComments" |
| 17412 | + ], |
| 17413 | + "members":{ |
| 17414 | + "ReviewId":{ |
| 17415 | + "shape":"ResourceId", |
| 17416 | + "documentation":"<p>The unique identifier for the evaluation review.</p>" |
| 17417 | + }, |
| 17418 | + "CreatedTime":{ |
| 17419 | + "shape":"Timestamp", |
| 17420 | + "documentation":"<p>The timestamp when the evaluation review was created.</p>" |
| 17421 | + }, |
| 17422 | + "CreatedBy":{ |
| 17423 | + "shape":"ARN", |
| 17424 | + "documentation":"<p>The user who created the evaluation review.</p>" |
| 17425 | + }, |
| 17426 | + "ReviewRequestComments":{ |
| 17427 | + "shape":"EvaluationReviewRequestCommentList", |
| 17428 | + "documentation":"<p>Comments provided when requesting the evaluation review.</p>" |
| 17429 | + } |
| 17430 | + }, |
| 17431 | + "documentation":"<p>Metadata information about an evaluation review.</p>" |
| 17432 | + }, |
| 17433 | + "EvaluationReviewNotificationRecipient":{ |
| 17434 | + "type":"structure", |
| 17435 | + "required":[ |
| 17436 | + "Type", |
| 17437 | + "Value" |
| 17438 | + ], |
| 17439 | + "members":{ |
| 17440 | + "Type":{ |
| 17441 | + "shape":"EvaluationReviewNotificationRecipientType", |
| 17442 | + "documentation":"<p>The type of notification recipient.</p>" |
| 17443 | + }, |
| 17444 | + "Value":{ |
| 17445 | + "shape":"EvaluationReviewNotificationRecipientValue", |
| 17446 | + "documentation":"<p>The value associated with the notification recipient type.</p>" |
| 17447 | + } |
| 17448 | + }, |
| 17449 | + "documentation":"<p>Information about a recipient who should be notified when an evaluation review is requested.</p>" |
| 17450 | + }, |
| 17451 | + "EvaluationReviewNotificationRecipientList":{ |
| 17452 | + "type":"list", |
| 17453 | + "member":{"shape":"EvaluationReviewNotificationRecipient"}, |
| 17454 | + "min":1 |
| 17455 | + }, |
| 17456 | + "EvaluationReviewNotificationRecipientType":{ |
| 17457 | + "type":"string", |
| 17458 | + "enum":["USER_ID"] |
| 17459 | + }, |
| 17460 | + "EvaluationReviewNotificationRecipientValue":{ |
| 17461 | + "type":"structure", |
| 17462 | + "members":{ |
| 17463 | + "UserId":{ |
| 17464 | + "shape":"ResourceId", |
| 17465 | + "documentation":"<p>The user identifier for the notification recipient.</p>" |
| 17466 | + } |
| 17467 | + }, |
| 17468 | + "documentation":"<p>The value information for an evaluation review notification recipient.</p>" |
| 17469 | + }, |
| 17470 | + "EvaluationReviewRequestComment":{ |
| 17471 | + "type":"structure", |
| 17472 | + "members":{ |
| 17473 | + "Comment":{ |
| 17474 | + "shape":"EvaluationReviewRequestCommentContent", |
| 17475 | + "documentation":"<p>The text content of the review request comment.</p>" |
| 17476 | + }, |
| 17477 | + "CreatedTime":{ |
| 17478 | + "shape":"Timestamp", |
| 17479 | + "documentation":"<p>The timestamp when the review request comment was created.</p>" |
| 17480 | + }, |
| 17481 | + "CreatedBy":{ |
| 17482 | + "shape":"ARN", |
| 17483 | + "documentation":"<p>The user who created the review request comment.</p>" |
| 17484 | + } |
| 17485 | + }, |
| 17486 | + "documentation":"<p>A comment provided when requesting an evaluation review.</p>" |
| 17487 | + }, |
| 17488 | + "EvaluationReviewRequestCommentContent":{ |
| 17489 | + "type":"string", |
| 17490 | + "max":500 |
| 17491 | + }, |
| 17492 | + "EvaluationReviewRequestCommentList":{ |
| 17493 | + "type":"list", |
| 17494 | + "member":{"shape":"EvaluationReviewRequestComment"}, |
| 17495 | + "max":1 |
| 17496 | + }, |
17375 | 17497 | "EvaluationScore":{ |
17376 | 17498 | "type":"structure", |
17377 | 17499 | "members":{ |
|
17586 | 17708 | "type":"string", |
17587 | 17709 | "enum":[ |
17588 | 17710 | "DRAFT", |
17589 | | - "SUBMITTED" |
| 17711 | + "SUBMITTED", |
| 17712 | + "REVIEW_REQUESTED", |
| 17713 | + "UNDER_REVIEW" |
17590 | 17714 | ] |
17591 | 17715 | }, |
17592 | 17716 | "EvaluationSuggestedAnswer":{ |
|
32225 | 32349 | "shape":"EvaluationFormAutoEvaluationConfiguration", |
32226 | 32350 | "documentation":"<p>Whether automated evaluations are enabled.</p>" |
32227 | 32351 | }, |
| 32352 | + "ReviewConfiguration":{ |
| 32353 | + "shape":"EvaluationReviewConfiguration", |
| 32354 | + "documentation":"<p>Configuration for evaluation review settings of the evaluation form.</p>" |
| 32355 | + }, |
32228 | 32356 | "AsDraft":{ |
32229 | 32357 | "shape":"BoxedBoolean", |
32230 | 32358 | "documentation":"<p>A boolean flag indicating whether to update evaluation form to draft state.</p>" |
|
0 commit comments