aws-sdk-connect 1.235.0 → 1.236.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +47 -4
- data/lib/aws-sdk-connect/client_api.rb +40 -0
- data/lib/aws-sdk-connect/types.rb +136 -1
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +22 -0
- data/sig/types.rbs +40 -3
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ad0adb52aeadbc4fe965381a62d35d5f7cd809704fe44221992feba5b9ceb68
|
|
4
|
+
data.tar.gz: 54ad3d2b39a0f01cf40631b425845c59cef6d0f07fa07d57150e702001888079
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9ab9b2d4ff0651539e99fb574b759e299909d47a4e13c29f93506fd04f595227f70740838d5f7c940ade338c403ebe4809e1de65146c9ef6ee72f4534f19799
|
|
7
|
+
data.tar.gz: 8c2d6e374e7fa130d550ea6ea14ad6051da76fa47b559f461d624641a6042de659f322420f071776e5befc5261020cff34234aa5035a243bc2df9650fece3189
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.236.0
|
|
@@ -3255,6 +3255,9 @@ module Aws::Connect
|
|
|
3255
3255
|
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
|
3256
3256
|
# }.
|
|
3257
3257
|
#
|
|
3258
|
+
# @option params [Types::EvaluationReviewConfiguration] :review_configuration
|
|
3259
|
+
# Configuration information about evaluation reviews.
|
|
3260
|
+
#
|
|
3258
3261
|
# @option params [Types::EvaluationFormTargetConfiguration] :target_configuration
|
|
3259
3262
|
# Configuration that specifies the target for the evaluation form.
|
|
3260
3263
|
#
|
|
@@ -3417,6 +3420,17 @@ module Aws::Connect
|
|
|
3417
3420
|
# tags: {
|
|
3418
3421
|
# "TagKey" => "TagValue",
|
|
3419
3422
|
# },
|
|
3423
|
+
# review_configuration: {
|
|
3424
|
+
# review_notification_recipients: [ # required
|
|
3425
|
+
# {
|
|
3426
|
+
# type: "USER_ID", # required, accepts USER_ID
|
|
3427
|
+
# value: { # required
|
|
3428
|
+
# user_id: "ResourceId",
|
|
3429
|
+
# },
|
|
3430
|
+
# },
|
|
3431
|
+
# ],
|
|
3432
|
+
# eligibility_days: 1,
|
|
3433
|
+
# },
|
|
3420
3434
|
# target_configuration: {
|
|
3421
3435
|
# contact_interaction_type: "AGENT", # required, accepts AGENT, AUTOMATED
|
|
3422
3436
|
# },
|
|
@@ -7310,6 +7324,13 @@ module Aws::Connect
|
|
|
7310
7324
|
# resp.evaluation.metadata.acknowledgement.acknowledged_time #=> Time
|
|
7311
7325
|
# resp.evaluation.metadata.acknowledgement.acknowledged_by #=> String
|
|
7312
7326
|
# resp.evaluation.metadata.acknowledgement.acknowledger_comment #=> String
|
|
7327
|
+
# resp.evaluation.metadata.review.review_id #=> String
|
|
7328
|
+
# resp.evaluation.metadata.review.created_time #=> Time
|
|
7329
|
+
# resp.evaluation.metadata.review.created_by #=> String
|
|
7330
|
+
# resp.evaluation.metadata.review.review_request_comments #=> Array
|
|
7331
|
+
# resp.evaluation.metadata.review.review_request_comments[0].comment #=> String
|
|
7332
|
+
# resp.evaluation.metadata.review.review_request_comments[0].created_time #=> Time
|
|
7333
|
+
# resp.evaluation.metadata.review.review_request_comments[0].created_by #=> String
|
|
7313
7334
|
# resp.evaluation.metadata.contact_participant.contact_participant_role #=> String, one of "AGENT", "SYSTEM", "CUSTOM_BOT"
|
|
7314
7335
|
# resp.evaluation.metadata.contact_participant.contact_participant_id #=> String
|
|
7315
7336
|
# resp.evaluation.metadata.sampling_job_id #=> String
|
|
@@ -7348,7 +7369,7 @@ module Aws::Connect
|
|
|
7348
7369
|
# resp.evaluation.answers["ResourceId"].suggested_answers[0].analysis_details.contact_lens.matched_rule_categories[0].points_of_interest[0].transcript_segment #=> String
|
|
7349
7370
|
# resp.evaluation.notes #=> Hash
|
|
7350
7371
|
# resp.evaluation.notes["ResourceId"].value #=> String
|
|
7351
|
-
# resp.evaluation.status #=> String, one of "DRAFT", "SUBMITTED"
|
|
7372
|
+
# resp.evaluation.status #=> String, one of "DRAFT", "SUBMITTED", "REVIEW_REQUESTED", "UNDER_REVIEW"
|
|
7352
7373
|
# resp.evaluation.scores #=> Hash
|
|
7353
7374
|
# resp.evaluation.scores["ResourceId"].percentage #=> Float
|
|
7354
7375
|
# resp.evaluation.scores["ResourceId"].not_applicable #=> Boolean
|
|
@@ -7428,6 +7449,10 @@ module Aws::Connect
|
|
|
7428
7449
|
# resp.evaluation_form.auto_evaluation_configuration.enabled #=> Boolean
|
|
7429
7450
|
# resp.evaluation_form.target_configuration.contact_interaction_type #=> String, one of "AGENT", "AUTOMATED"
|
|
7430
7451
|
# resp.evaluation_form.language_configuration.form_language #=> String, one of "de-DE", "en-US", "es-ES", "fr-FR", "it-IT", "pt-BR"
|
|
7452
|
+
# resp.evaluation_form.review_configuration.review_notification_recipients #=> Array
|
|
7453
|
+
# resp.evaluation_form.review_configuration.review_notification_recipients[0].type #=> String, one of "USER_ID"
|
|
7454
|
+
# resp.evaluation_form.review_configuration.review_notification_recipients[0].value.user_id #=> String
|
|
7455
|
+
# resp.evaluation_form.review_configuration.eligibility_days #=> Integer
|
|
7431
7456
|
#
|
|
7432
7457
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactEvaluation AWS API Documentation
|
|
7433
7458
|
#
|
|
@@ -7889,6 +7914,10 @@ module Aws::Connect
|
|
|
7889
7914
|
# resp.evaluation_form.last_modified_time #=> Time
|
|
7890
7915
|
# resp.evaluation_form.last_modified_by #=> String
|
|
7891
7916
|
# resp.evaluation_form.auto_evaluation_configuration.enabled #=> Boolean
|
|
7917
|
+
# resp.evaluation_form.review_configuration.review_notification_recipients #=> Array
|
|
7918
|
+
# resp.evaluation_form.review_configuration.review_notification_recipients[0].type #=> String, one of "USER_ID"
|
|
7919
|
+
# resp.evaluation_form.review_configuration.review_notification_recipients[0].value.user_id #=> String
|
|
7920
|
+
# resp.evaluation_form.review_configuration.eligibility_days #=> Integer
|
|
7892
7921
|
# resp.evaluation_form.tags #=> Hash
|
|
7893
7922
|
# resp.evaluation_form.tags["TagKey"] #=> String
|
|
7894
7923
|
# resp.evaluation_form.target_configuration.contact_interaction_type #=> String, one of "AGENT", "AUTOMATED"
|
|
@@ -14249,7 +14278,7 @@ module Aws::Connect
|
|
|
14249
14278
|
# resp.evaluation_summary_list[0].evaluation_form_title #=> String
|
|
14250
14279
|
# resp.evaluation_summary_list[0].evaluation_form_id #=> String
|
|
14251
14280
|
# resp.evaluation_summary_list[0].calibration_session_id #=> String
|
|
14252
|
-
# resp.evaluation_summary_list[0].status #=> String, one of "DRAFT", "SUBMITTED"
|
|
14281
|
+
# resp.evaluation_summary_list[0].status #=> String, one of "DRAFT", "SUBMITTED", "REVIEW_REQUESTED", "UNDER_REVIEW"
|
|
14253
14282
|
# resp.evaluation_summary_list[0].auto_evaluation_enabled #=> Boolean
|
|
14254
14283
|
# resp.evaluation_summary_list[0].auto_evaluation_status #=> String, one of "IN_PROGRESS", "FAILED", "SUCCEEDED"
|
|
14255
14284
|
# resp.evaluation_summary_list[0].evaluator_arn #=> String
|
|
@@ -18278,7 +18307,7 @@ module Aws::Connect
|
|
|
18278
18307
|
# resp.evaluation_search_summary_list[0].metadata.review_id #=> String
|
|
18279
18308
|
# resp.evaluation_search_summary_list[0].metadata.contact_participant_role #=> String, one of "AGENT", "SYSTEM", "CUSTOM_BOT"
|
|
18280
18309
|
# resp.evaluation_search_summary_list[0].metadata.contact_participant_id #=> String
|
|
18281
|
-
# resp.evaluation_search_summary_list[0].status #=> String, one of "DRAFT", "SUBMITTED"
|
|
18310
|
+
# resp.evaluation_search_summary_list[0].status #=> String, one of "DRAFT", "SUBMITTED", "REVIEW_REQUESTED", "UNDER_REVIEW"
|
|
18282
18311
|
# resp.evaluation_search_summary_list[0].evaluation_type #=> String, one of "STANDARD", "CALIBRATION"
|
|
18283
18312
|
# resp.evaluation_search_summary_list[0].created_time #=> Time
|
|
18284
18313
|
# resp.evaluation_search_summary_list[0].last_modified_time #=> Time
|
|
@@ -24501,6 +24530,9 @@ module Aws::Connect
|
|
|
24501
24530
|
# @option params [Types::EvaluationFormAutoEvaluationConfiguration] :auto_evaluation_configuration
|
|
24502
24531
|
# Whether automated evaluations are enabled.
|
|
24503
24532
|
#
|
|
24533
|
+
# @option params [Types::EvaluationReviewConfiguration] :review_configuration
|
|
24534
|
+
# Configuration for evaluation review settings of the evaluation form.
|
|
24535
|
+
#
|
|
24504
24536
|
# @option params [Boolean] :as_draft
|
|
24505
24537
|
# A boolean flag indicating whether to update evaluation form to draft
|
|
24506
24538
|
# state.
|
|
@@ -24679,6 +24711,17 @@ module Aws::Connect
|
|
|
24679
24711
|
# auto_evaluation_configuration: {
|
|
24680
24712
|
# enabled: false, # required
|
|
24681
24713
|
# },
|
|
24714
|
+
# review_configuration: {
|
|
24715
|
+
# review_notification_recipients: [ # required
|
|
24716
|
+
# {
|
|
24717
|
+
# type: "USER_ID", # required, accepts USER_ID
|
|
24718
|
+
# value: { # required
|
|
24719
|
+
# user_id: "ResourceId",
|
|
24720
|
+
# },
|
|
24721
|
+
# },
|
|
24722
|
+
# ],
|
|
24723
|
+
# eligibility_days: 1,
|
|
24724
|
+
# },
|
|
24682
24725
|
# as_draft: false,
|
|
24683
24726
|
# client_token: "ClientToken",
|
|
24684
24727
|
# target_configuration: {
|
|
@@ -27130,7 +27173,7 @@ module Aws::Connect
|
|
|
27130
27173
|
tracer: tracer
|
|
27131
27174
|
)
|
|
27132
27175
|
context[:gem_name] = 'aws-sdk-connect'
|
|
27133
|
-
context[:gem_version] = '1.
|
|
27176
|
+
context[:gem_version] = '1.236.0'
|
|
27134
27177
|
Seahorse::Client::Request.new(handlers, context)
|
|
27135
27178
|
end
|
|
27136
27179
|
|
|
@@ -771,6 +771,15 @@ module Aws::Connect
|
|
|
771
771
|
EvaluationQuestionAnswerAnalysisDetails = Shapes::UnionShape.new(name: 'EvaluationQuestionAnswerAnalysisDetails')
|
|
772
772
|
EvaluationQuestionAnswerAnalysisType = Shapes::StringShape.new(name: 'EvaluationQuestionAnswerAnalysisType')
|
|
773
773
|
EvaluationQuestionInputDetails = Shapes::StructureShape.new(name: 'EvaluationQuestionInputDetails')
|
|
774
|
+
EvaluationReviewConfiguration = Shapes::StructureShape.new(name: 'EvaluationReviewConfiguration')
|
|
775
|
+
EvaluationReviewMetadata = Shapes::StructureShape.new(name: 'EvaluationReviewMetadata')
|
|
776
|
+
EvaluationReviewNotificationRecipient = Shapes::StructureShape.new(name: 'EvaluationReviewNotificationRecipient')
|
|
777
|
+
EvaluationReviewNotificationRecipientList = Shapes::ListShape.new(name: 'EvaluationReviewNotificationRecipientList')
|
|
778
|
+
EvaluationReviewNotificationRecipientType = Shapes::StringShape.new(name: 'EvaluationReviewNotificationRecipientType')
|
|
779
|
+
EvaluationReviewNotificationRecipientValue = Shapes::StructureShape.new(name: 'EvaluationReviewNotificationRecipientValue')
|
|
780
|
+
EvaluationReviewRequestComment = Shapes::StructureShape.new(name: 'EvaluationReviewRequestComment')
|
|
781
|
+
EvaluationReviewRequestCommentContent = Shapes::StringShape.new(name: 'EvaluationReviewRequestCommentContent')
|
|
782
|
+
EvaluationReviewRequestCommentList = Shapes::ListShape.new(name: 'EvaluationReviewRequestCommentList')
|
|
774
783
|
EvaluationScore = Shapes::StructureShape.new(name: 'EvaluationScore')
|
|
775
784
|
EvaluationScorePercentage = Shapes::FloatShape.new(name: 'EvaluationScorePercentage')
|
|
776
785
|
EvaluationScoresMap = Shapes::MapShape.new(name: 'EvaluationScoresMap')
|
|
@@ -3141,6 +3150,7 @@ module Aws::Connect
|
|
|
3141
3150
|
CreateEvaluationFormRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
3142
3151
|
CreateEvaluationFormRequest.add_member(:as_draft, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "AsDraft"))
|
|
3143
3152
|
CreateEvaluationFormRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
3153
|
+
CreateEvaluationFormRequest.add_member(:review_configuration, Shapes::ShapeRef.new(shape: EvaluationReviewConfiguration, location_name: "ReviewConfiguration"))
|
|
3144
3154
|
CreateEvaluationFormRequest.add_member(:target_configuration, Shapes::ShapeRef.new(shape: EvaluationFormTargetConfiguration, location_name: "TargetConfiguration"))
|
|
3145
3155
|
CreateEvaluationFormRequest.add_member(:language_configuration, Shapes::ShapeRef.new(shape: EvaluationFormLanguageConfiguration, location_name: "LanguageConfiguration"))
|
|
3146
3156
|
CreateEvaluationFormRequest.struct_class = Types::CreateEvaluationFormRequest
|
|
@@ -4389,6 +4399,7 @@ module Aws::Connect
|
|
|
4389
4399
|
EvaluationForm.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "LastModifiedTime"))
|
|
4390
4400
|
EvaluationForm.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "LastModifiedBy"))
|
|
4391
4401
|
EvaluationForm.add_member(:auto_evaluation_configuration, Shapes::ShapeRef.new(shape: EvaluationFormAutoEvaluationConfiguration, location_name: "AutoEvaluationConfiguration"))
|
|
4402
|
+
EvaluationForm.add_member(:review_configuration, Shapes::ShapeRef.new(shape: EvaluationReviewConfiguration, location_name: "ReviewConfiguration"))
|
|
4392
4403
|
EvaluationForm.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
4393
4404
|
EvaluationForm.add_member(:target_configuration, Shapes::ShapeRef.new(shape: EvaluationFormTargetConfiguration, location_name: "TargetConfiguration"))
|
|
4394
4405
|
EvaluationForm.add_member(:language_configuration, Shapes::ShapeRef.new(shape: EvaluationFormLanguageConfiguration, location_name: "LanguageConfiguration"))
|
|
@@ -4407,6 +4418,7 @@ module Aws::Connect
|
|
|
4407
4418
|
EvaluationFormContent.add_member(:auto_evaluation_configuration, Shapes::ShapeRef.new(shape: EvaluationFormAutoEvaluationConfiguration, location_name: "AutoEvaluationConfiguration"))
|
|
4408
4419
|
EvaluationFormContent.add_member(:target_configuration, Shapes::ShapeRef.new(shape: EvaluationFormTargetConfiguration, location_name: "TargetConfiguration"))
|
|
4409
4420
|
EvaluationFormContent.add_member(:language_configuration, Shapes::ShapeRef.new(shape: EvaluationFormLanguageConfiguration, location_name: "LanguageConfiguration"))
|
|
4421
|
+
EvaluationFormContent.add_member(:review_configuration, Shapes::ShapeRef.new(shape: EvaluationReviewConfiguration, location_name: "ReviewConfiguration"))
|
|
4410
4422
|
EvaluationFormContent.struct_class = Types::EvaluationFormContent
|
|
4411
4423
|
|
|
4412
4424
|
EvaluationFormItem.add_member(:section, Shapes::ShapeRef.new(shape: EvaluationFormSection, location_name: "Section"))
|
|
@@ -4648,6 +4660,7 @@ module Aws::Connect
|
|
|
4648
4660
|
EvaluationMetadata.add_member(:score, Shapes::ShapeRef.new(shape: EvaluationScore, location_name: "Score"))
|
|
4649
4661
|
EvaluationMetadata.add_member(:auto_evaluation, Shapes::ShapeRef.new(shape: AutoEvaluationDetails, location_name: "AutoEvaluation"))
|
|
4650
4662
|
EvaluationMetadata.add_member(:acknowledgement, Shapes::ShapeRef.new(shape: EvaluationAcknowledgement, location_name: "Acknowledgement"))
|
|
4663
|
+
EvaluationMetadata.add_member(:review, Shapes::ShapeRef.new(shape: EvaluationReviewMetadata, location_name: "Review"))
|
|
4651
4664
|
EvaluationMetadata.add_member(:contact_participant, Shapes::ShapeRef.new(shape: EvaluationContactParticipant, location_name: "ContactParticipant"))
|
|
4652
4665
|
EvaluationMetadata.add_member(:sampling_job_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "SamplingJobId"))
|
|
4653
4666
|
EvaluationMetadata.struct_class = Types::EvaluationMetadata
|
|
@@ -4669,6 +4682,32 @@ module Aws::Connect
|
|
|
4669
4682
|
EvaluationQuestionInputDetails.add_member(:transcript_type, Shapes::ShapeRef.new(shape: EvaluationTranscriptType, location_name: "TranscriptType"))
|
|
4670
4683
|
EvaluationQuestionInputDetails.struct_class = Types::EvaluationQuestionInputDetails
|
|
4671
4684
|
|
|
4685
|
+
EvaluationReviewConfiguration.add_member(:review_notification_recipients, Shapes::ShapeRef.new(shape: EvaluationReviewNotificationRecipientList, required: true, location_name: "ReviewNotificationRecipients"))
|
|
4686
|
+
EvaluationReviewConfiguration.add_member(:eligibility_days, Shapes::ShapeRef.new(shape: Integer, location_name: "EligibilityDays"))
|
|
4687
|
+
EvaluationReviewConfiguration.struct_class = Types::EvaluationReviewConfiguration
|
|
4688
|
+
|
|
4689
|
+
EvaluationReviewMetadata.add_member(:review_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ReviewId"))
|
|
4690
|
+
EvaluationReviewMetadata.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreatedTime"))
|
|
4691
|
+
EvaluationReviewMetadata.add_member(:created_by, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "CreatedBy"))
|
|
4692
|
+
EvaluationReviewMetadata.add_member(:review_request_comments, Shapes::ShapeRef.new(shape: EvaluationReviewRequestCommentList, required: true, location_name: "ReviewRequestComments"))
|
|
4693
|
+
EvaluationReviewMetadata.struct_class = Types::EvaluationReviewMetadata
|
|
4694
|
+
|
|
4695
|
+
EvaluationReviewNotificationRecipient.add_member(:type, Shapes::ShapeRef.new(shape: EvaluationReviewNotificationRecipientType, required: true, location_name: "Type"))
|
|
4696
|
+
EvaluationReviewNotificationRecipient.add_member(:value, Shapes::ShapeRef.new(shape: EvaluationReviewNotificationRecipientValue, required: true, location_name: "Value"))
|
|
4697
|
+
EvaluationReviewNotificationRecipient.struct_class = Types::EvaluationReviewNotificationRecipient
|
|
4698
|
+
|
|
4699
|
+
EvaluationReviewNotificationRecipientList.member = Shapes::ShapeRef.new(shape: EvaluationReviewNotificationRecipient)
|
|
4700
|
+
|
|
4701
|
+
EvaluationReviewNotificationRecipientValue.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "UserId"))
|
|
4702
|
+
EvaluationReviewNotificationRecipientValue.struct_class = Types::EvaluationReviewNotificationRecipientValue
|
|
4703
|
+
|
|
4704
|
+
EvaluationReviewRequestComment.add_member(:comment, Shapes::ShapeRef.new(shape: EvaluationReviewRequestCommentContent, location_name: "Comment"))
|
|
4705
|
+
EvaluationReviewRequestComment.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
|
|
4706
|
+
EvaluationReviewRequestComment.add_member(:created_by, Shapes::ShapeRef.new(shape: ARN, location_name: "CreatedBy"))
|
|
4707
|
+
EvaluationReviewRequestComment.struct_class = Types::EvaluationReviewRequestComment
|
|
4708
|
+
|
|
4709
|
+
EvaluationReviewRequestCommentList.member = Shapes::ShapeRef.new(shape: EvaluationReviewRequestComment)
|
|
4710
|
+
|
|
4672
4711
|
EvaluationScore.add_member(:percentage, Shapes::ShapeRef.new(shape: EvaluationScorePercentage, location_name: "Percentage"))
|
|
4673
4712
|
EvaluationScore.add_member(:not_applicable, Shapes::ShapeRef.new(shape: Boolean, location_name: "NotApplicable"))
|
|
4674
4713
|
EvaluationScore.add_member(:automatic_fail, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutomaticFail"))
|
|
@@ -8073,6 +8112,7 @@ module Aws::Connect
|
|
|
8073
8112
|
UpdateEvaluationFormRequest.add_member(:items, Shapes::ShapeRef.new(shape: EvaluationFormItemsList, required: true, location_name: "Items"))
|
|
8074
8113
|
UpdateEvaluationFormRequest.add_member(:scoring_strategy, Shapes::ShapeRef.new(shape: EvaluationFormScoringStrategy, location_name: "ScoringStrategy"))
|
|
8075
8114
|
UpdateEvaluationFormRequest.add_member(:auto_evaluation_configuration, Shapes::ShapeRef.new(shape: EvaluationFormAutoEvaluationConfiguration, location_name: "AutoEvaluationConfiguration"))
|
|
8115
|
+
UpdateEvaluationFormRequest.add_member(:review_configuration, Shapes::ShapeRef.new(shape: EvaluationReviewConfiguration, location_name: "ReviewConfiguration"))
|
|
8076
8116
|
UpdateEvaluationFormRequest.add_member(:as_draft, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "AsDraft"))
|
|
8077
8117
|
UpdateEvaluationFormRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
8078
8118
|
UpdateEvaluationFormRequest.add_member(:target_configuration, Shapes::ShapeRef.new(shape: EvaluationFormTargetConfiguration, location_name: "TargetConfiguration"))
|
|
@@ -5613,6 +5613,10 @@ module Aws::Connect
|
|
|
5613
5613
|
# "key2":"value2"} }.
|
|
5614
5614
|
# @return [Hash<String,String>]
|
|
5615
5615
|
#
|
|
5616
|
+
# @!attribute [rw] review_configuration
|
|
5617
|
+
# Configuration information about evaluation reviews.
|
|
5618
|
+
# @return [Types::EvaluationReviewConfiguration]
|
|
5619
|
+
#
|
|
5616
5620
|
# @!attribute [rw] target_configuration
|
|
5617
5621
|
# Configuration that specifies the target for the evaluation form.
|
|
5618
5622
|
# @return [Types::EvaluationFormTargetConfiguration]
|
|
@@ -5633,6 +5637,7 @@ module Aws::Connect
|
|
|
5633
5637
|
:client_token,
|
|
5634
5638
|
:as_draft,
|
|
5635
5639
|
:tags,
|
|
5640
|
+
:review_configuration,
|
|
5636
5641
|
:target_configuration,
|
|
5637
5642
|
:language_configuration)
|
|
5638
5643
|
SENSITIVE = []
|
|
@@ -11862,6 +11867,11 @@ module Aws::Connect
|
|
|
11862
11867
|
# The automatic evaluation configuration of an evaluation form.
|
|
11863
11868
|
# @return [Types::EvaluationFormAutoEvaluationConfiguration]
|
|
11864
11869
|
#
|
|
11870
|
+
# @!attribute [rw] review_configuration
|
|
11871
|
+
# Configuration for evaluation review settings of this evaluation
|
|
11872
|
+
# form.
|
|
11873
|
+
# @return [Types::EvaluationReviewConfiguration]
|
|
11874
|
+
#
|
|
11865
11875
|
# @!attribute [rw] tags
|
|
11866
11876
|
# The tags used to organize, track, or control access for this
|
|
11867
11877
|
# resource. For example, \{ "Tags": \{"key1":"value1",
|
|
@@ -11893,6 +11903,7 @@ module Aws::Connect
|
|
|
11893
11903
|
:last_modified_time,
|
|
11894
11904
|
:last_modified_by,
|
|
11895
11905
|
:auto_evaluation_configuration,
|
|
11906
|
+
:review_configuration,
|
|
11896
11907
|
:tags,
|
|
11897
11908
|
:target_configuration,
|
|
11898
11909
|
:language_configuration)
|
|
@@ -11959,6 +11970,11 @@ module Aws::Connect
|
|
|
11959
11970
|
# Configuration for language settings of this evaluation form content.
|
|
11960
11971
|
# @return [Types::EvaluationFormLanguageConfiguration]
|
|
11961
11972
|
#
|
|
11973
|
+
# @!attribute [rw] review_configuration
|
|
11974
|
+
# Configuration for evaluation review settings of this evaluation form
|
|
11975
|
+
# content.
|
|
11976
|
+
# @return [Types::EvaluationReviewConfiguration]
|
|
11977
|
+
#
|
|
11962
11978
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormContent AWS API Documentation
|
|
11963
11979
|
#
|
|
11964
11980
|
class EvaluationFormContent < Struct.new(
|
|
@@ -11971,7 +11987,8 @@ module Aws::Connect
|
|
|
11971
11987
|
:scoring_strategy,
|
|
11972
11988
|
:auto_evaluation_configuration,
|
|
11973
11989
|
:target_configuration,
|
|
11974
|
-
:language_configuration
|
|
11990
|
+
:language_configuration,
|
|
11991
|
+
:review_configuration)
|
|
11975
11992
|
SENSITIVE = []
|
|
11976
11993
|
include Aws::Structure
|
|
11977
11994
|
end
|
|
@@ -13000,6 +13017,10 @@ module Aws::Connect
|
|
|
13000
13017
|
# Information related to evaluation acknowledgement.
|
|
13001
13018
|
# @return [Types::EvaluationAcknowledgement]
|
|
13002
13019
|
#
|
|
13020
|
+
# @!attribute [rw] review
|
|
13021
|
+
# Information about reviews of this evaluation.
|
|
13022
|
+
# @return [Types::EvaluationReviewMetadata]
|
|
13023
|
+
#
|
|
13003
13024
|
# @!attribute [rw] contact_participant
|
|
13004
13025
|
# Information about a contact participant in this evaluation.
|
|
13005
13026
|
# @return [Types::EvaluationContactParticipant]
|
|
@@ -13018,6 +13039,7 @@ module Aws::Connect
|
|
|
13018
13039
|
:score,
|
|
13019
13040
|
:auto_evaluation,
|
|
13020
13041
|
:acknowledgement,
|
|
13042
|
+
:review,
|
|
13021
13043
|
:contact_participant,
|
|
13022
13044
|
:sampling_job_id)
|
|
13023
13045
|
SENSITIVE = []
|
|
@@ -13088,6 +13110,114 @@ module Aws::Connect
|
|
|
13088
13110
|
include Aws::Structure
|
|
13089
13111
|
end
|
|
13090
13112
|
|
|
13113
|
+
# Configuration settings for evaluation reviews.
|
|
13114
|
+
#
|
|
13115
|
+
# @!attribute [rw] review_notification_recipients
|
|
13116
|
+
# List of recipients who should be notified when a review is
|
|
13117
|
+
# requested.
|
|
13118
|
+
# @return [Array<Types::EvaluationReviewNotificationRecipient>]
|
|
13119
|
+
#
|
|
13120
|
+
# @!attribute [rw] eligibility_days
|
|
13121
|
+
# Number of days during which a request for review can be submitted
|
|
13122
|
+
# for evaluations created from this form.
|
|
13123
|
+
# @return [Integer]
|
|
13124
|
+
#
|
|
13125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewConfiguration AWS API Documentation
|
|
13126
|
+
#
|
|
13127
|
+
class EvaluationReviewConfiguration < Struct.new(
|
|
13128
|
+
:review_notification_recipients,
|
|
13129
|
+
:eligibility_days)
|
|
13130
|
+
SENSITIVE = []
|
|
13131
|
+
include Aws::Structure
|
|
13132
|
+
end
|
|
13133
|
+
|
|
13134
|
+
# Metadata information about an evaluation review.
|
|
13135
|
+
#
|
|
13136
|
+
# @!attribute [rw] review_id
|
|
13137
|
+
# The unique identifier for the evaluation review.
|
|
13138
|
+
# @return [String]
|
|
13139
|
+
#
|
|
13140
|
+
# @!attribute [rw] created_time
|
|
13141
|
+
# The timestamp when the evaluation review was created.
|
|
13142
|
+
# @return [Time]
|
|
13143
|
+
#
|
|
13144
|
+
# @!attribute [rw] created_by
|
|
13145
|
+
# The user who created the evaluation review.
|
|
13146
|
+
# @return [String]
|
|
13147
|
+
#
|
|
13148
|
+
# @!attribute [rw] review_request_comments
|
|
13149
|
+
# Comments provided when requesting the evaluation review.
|
|
13150
|
+
# @return [Array<Types::EvaluationReviewRequestComment>]
|
|
13151
|
+
#
|
|
13152
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewMetadata AWS API Documentation
|
|
13153
|
+
#
|
|
13154
|
+
class EvaluationReviewMetadata < Struct.new(
|
|
13155
|
+
:review_id,
|
|
13156
|
+
:created_time,
|
|
13157
|
+
:created_by,
|
|
13158
|
+
:review_request_comments)
|
|
13159
|
+
SENSITIVE = []
|
|
13160
|
+
include Aws::Structure
|
|
13161
|
+
end
|
|
13162
|
+
|
|
13163
|
+
# Information about a recipient who should be notified when an
|
|
13164
|
+
# evaluation review is requested.
|
|
13165
|
+
#
|
|
13166
|
+
# @!attribute [rw] type
|
|
13167
|
+
# The type of notification recipient.
|
|
13168
|
+
# @return [String]
|
|
13169
|
+
#
|
|
13170
|
+
# @!attribute [rw] value
|
|
13171
|
+
# The value associated with the notification recipient type.
|
|
13172
|
+
# @return [Types::EvaluationReviewNotificationRecipientValue]
|
|
13173
|
+
#
|
|
13174
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewNotificationRecipient AWS API Documentation
|
|
13175
|
+
#
|
|
13176
|
+
class EvaluationReviewNotificationRecipient < Struct.new(
|
|
13177
|
+
:type,
|
|
13178
|
+
:value)
|
|
13179
|
+
SENSITIVE = []
|
|
13180
|
+
include Aws::Structure
|
|
13181
|
+
end
|
|
13182
|
+
|
|
13183
|
+
# The value information for an evaluation review notification recipient.
|
|
13184
|
+
#
|
|
13185
|
+
# @!attribute [rw] user_id
|
|
13186
|
+
# The user identifier for the notification recipient.
|
|
13187
|
+
# @return [String]
|
|
13188
|
+
#
|
|
13189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewNotificationRecipientValue AWS API Documentation
|
|
13190
|
+
#
|
|
13191
|
+
class EvaluationReviewNotificationRecipientValue < Struct.new(
|
|
13192
|
+
:user_id)
|
|
13193
|
+
SENSITIVE = []
|
|
13194
|
+
include Aws::Structure
|
|
13195
|
+
end
|
|
13196
|
+
|
|
13197
|
+
# A comment provided when requesting an evaluation review.
|
|
13198
|
+
#
|
|
13199
|
+
# @!attribute [rw] comment
|
|
13200
|
+
# The text content of the review request comment.
|
|
13201
|
+
# @return [String]
|
|
13202
|
+
#
|
|
13203
|
+
# @!attribute [rw] created_time
|
|
13204
|
+
# The timestamp when the review request comment was created.
|
|
13205
|
+
# @return [Time]
|
|
13206
|
+
#
|
|
13207
|
+
# @!attribute [rw] created_by
|
|
13208
|
+
# The user who created the review request comment.
|
|
13209
|
+
# @return [String]
|
|
13210
|
+
#
|
|
13211
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewRequestComment AWS API Documentation
|
|
13212
|
+
#
|
|
13213
|
+
class EvaluationReviewRequestComment < Struct.new(
|
|
13214
|
+
:comment,
|
|
13215
|
+
:created_time,
|
|
13216
|
+
:created_by)
|
|
13217
|
+
SENSITIVE = []
|
|
13218
|
+
include Aws::Structure
|
|
13219
|
+
end
|
|
13220
|
+
|
|
13091
13221
|
# Information about scores of a contact evaluation item (section or
|
|
13092
13222
|
# question).
|
|
13093
13223
|
#
|
|
@@ -32744,6 +32874,10 @@ module Aws::Connect
|
|
|
32744
32874
|
# Whether automated evaluations are enabled.
|
|
32745
32875
|
# @return [Types::EvaluationFormAutoEvaluationConfiguration]
|
|
32746
32876
|
#
|
|
32877
|
+
# @!attribute [rw] review_configuration
|
|
32878
|
+
# Configuration for evaluation review settings of the evaluation form.
|
|
32879
|
+
# @return [Types::EvaluationReviewConfiguration]
|
|
32880
|
+
#
|
|
32747
32881
|
# @!attribute [rw] as_draft
|
|
32748
32882
|
# A boolean flag indicating whether to update evaluation form to draft
|
|
32749
32883
|
# state.
|
|
@@ -32783,6 +32917,7 @@ module Aws::Connect
|
|
|
32783
32917
|
:items,
|
|
32784
32918
|
:scoring_strategy,
|
|
32785
32919
|
:auto_evaluation_configuration,
|
|
32920
|
+
:review_configuration,
|
|
32786
32921
|
:as_draft,
|
|
32787
32922
|
:client_token,
|
|
32788
32923
|
:target_configuration,
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -943,6 +943,17 @@ module Aws
|
|
|
943
943
|
?client_token: ::String,
|
|
944
944
|
?as_draft: bool,
|
|
945
945
|
?tags: Hash[::String, ::String],
|
|
946
|
+
?review_configuration: {
|
|
947
|
+
review_notification_recipients: Array[
|
|
948
|
+
{
|
|
949
|
+
type: ("USER_ID"),
|
|
950
|
+
value: {
|
|
951
|
+
user_id: ::String?
|
|
952
|
+
}
|
|
953
|
+
},
|
|
954
|
+
],
|
|
955
|
+
eligibility_days: ::Integer?
|
|
956
|
+
},
|
|
946
957
|
?target_configuration: {
|
|
947
958
|
contact_interaction_type: ("AGENT" | "AUTOMATED")
|
|
948
959
|
},
|
|
@@ -6268,6 +6279,17 @@ module Aws
|
|
|
6268
6279
|
?auto_evaluation_configuration: {
|
|
6269
6280
|
enabled: bool
|
|
6270
6281
|
},
|
|
6282
|
+
?review_configuration: {
|
|
6283
|
+
review_notification_recipients: Array[
|
|
6284
|
+
{
|
|
6285
|
+
type: ("USER_ID"),
|
|
6286
|
+
value: {
|
|
6287
|
+
user_id: ::String?
|
|
6288
|
+
}
|
|
6289
|
+
},
|
|
6290
|
+
],
|
|
6291
|
+
eligibility_days: ::Integer?
|
|
6292
|
+
},
|
|
6271
6293
|
?as_draft: bool,
|
|
6272
6294
|
?client_token: ::String,
|
|
6273
6295
|
?target_configuration: {
|
data/sig/types.rbs
CHANGED
|
@@ -1338,6 +1338,7 @@ module Aws::Connect
|
|
|
1338
1338
|
attr_accessor client_token: ::String
|
|
1339
1339
|
attr_accessor as_draft: bool
|
|
1340
1340
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1341
|
+
attr_accessor review_configuration: Types::EvaluationReviewConfiguration
|
|
1341
1342
|
attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
|
|
1342
1343
|
attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
|
|
1343
1344
|
SENSITIVE: []
|
|
@@ -2919,7 +2920,7 @@ module Aws::Connect
|
|
|
2919
2920
|
attr_accessor metadata: Types::EvaluationMetadata
|
|
2920
2921
|
attr_accessor answers: ::Hash[::String, Types::EvaluationAnswerOutput]
|
|
2921
2922
|
attr_accessor notes: ::Hash[::String, Types::EvaluationNote]
|
|
2922
|
-
attr_accessor status: ("DRAFT" | "SUBMITTED")
|
|
2923
|
+
attr_accessor status: ("DRAFT" | "SUBMITTED" | "REVIEW_REQUESTED" | "UNDER_REVIEW")
|
|
2923
2924
|
attr_accessor scores: ::Hash[::String, Types::EvaluationScore]
|
|
2924
2925
|
attr_accessor created_time: ::Time
|
|
2925
2926
|
attr_accessor last_modified_time: ::Time
|
|
@@ -3010,6 +3011,7 @@ module Aws::Connect
|
|
|
3010
3011
|
attr_accessor last_modified_time: ::Time
|
|
3011
3012
|
attr_accessor last_modified_by: ::String
|
|
3012
3013
|
attr_accessor auto_evaluation_configuration: Types::EvaluationFormAutoEvaluationConfiguration
|
|
3014
|
+
attr_accessor review_configuration: Types::EvaluationReviewConfiguration
|
|
3013
3015
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
3014
3016
|
attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
|
|
3015
3017
|
attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
|
|
@@ -3032,6 +3034,7 @@ module Aws::Connect
|
|
|
3032
3034
|
attr_accessor auto_evaluation_configuration: Types::EvaluationFormAutoEvaluationConfiguration
|
|
3033
3035
|
attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
|
|
3034
3036
|
attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
|
|
3037
|
+
attr_accessor review_configuration: Types::EvaluationReviewConfiguration
|
|
3035
3038
|
SENSITIVE: []
|
|
3036
3039
|
end
|
|
3037
3040
|
|
|
@@ -3341,6 +3344,7 @@ module Aws::Connect
|
|
|
3341
3344
|
attr_accessor score: Types::EvaluationScore
|
|
3342
3345
|
attr_accessor auto_evaluation: Types::AutoEvaluationDetails
|
|
3343
3346
|
attr_accessor acknowledgement: Types::EvaluationAcknowledgement
|
|
3347
|
+
attr_accessor review: Types::EvaluationReviewMetadata
|
|
3344
3348
|
attr_accessor contact_participant: Types::EvaluationContactParticipant
|
|
3345
3349
|
attr_accessor sampling_job_id: ::String
|
|
3346
3350
|
SENSITIVE: []
|
|
@@ -3370,6 +3374,38 @@ module Aws::Connect
|
|
|
3370
3374
|
SENSITIVE: []
|
|
3371
3375
|
end
|
|
3372
3376
|
|
|
3377
|
+
class EvaluationReviewConfiguration
|
|
3378
|
+
attr_accessor review_notification_recipients: ::Array[Types::EvaluationReviewNotificationRecipient]
|
|
3379
|
+
attr_accessor eligibility_days: ::Integer
|
|
3380
|
+
SENSITIVE: []
|
|
3381
|
+
end
|
|
3382
|
+
|
|
3383
|
+
class EvaluationReviewMetadata
|
|
3384
|
+
attr_accessor review_id: ::String
|
|
3385
|
+
attr_accessor created_time: ::Time
|
|
3386
|
+
attr_accessor created_by: ::String
|
|
3387
|
+
attr_accessor review_request_comments: ::Array[Types::EvaluationReviewRequestComment]
|
|
3388
|
+
SENSITIVE: []
|
|
3389
|
+
end
|
|
3390
|
+
|
|
3391
|
+
class EvaluationReviewNotificationRecipient
|
|
3392
|
+
attr_accessor type: ("USER_ID")
|
|
3393
|
+
attr_accessor value: Types::EvaluationReviewNotificationRecipientValue
|
|
3394
|
+
SENSITIVE: []
|
|
3395
|
+
end
|
|
3396
|
+
|
|
3397
|
+
class EvaluationReviewNotificationRecipientValue
|
|
3398
|
+
attr_accessor user_id: ::String
|
|
3399
|
+
SENSITIVE: []
|
|
3400
|
+
end
|
|
3401
|
+
|
|
3402
|
+
class EvaluationReviewRequestComment
|
|
3403
|
+
attr_accessor comment: ::String
|
|
3404
|
+
attr_accessor created_time: ::Time
|
|
3405
|
+
attr_accessor created_by: ::String
|
|
3406
|
+
SENSITIVE: []
|
|
3407
|
+
end
|
|
3408
|
+
|
|
3373
3409
|
class EvaluationScore
|
|
3374
3410
|
attr_accessor percentage: ::Float
|
|
3375
3411
|
attr_accessor not_applicable: bool
|
|
@@ -3421,7 +3457,7 @@ module Aws::Connect
|
|
|
3421
3457
|
attr_accessor evaluation_form_version: ::Integer
|
|
3422
3458
|
attr_accessor evaluation_form_title: ::String
|
|
3423
3459
|
attr_accessor metadata: Types::EvaluationSearchMetadata
|
|
3424
|
-
attr_accessor status: ("DRAFT" | "SUBMITTED")
|
|
3460
|
+
attr_accessor status: ("DRAFT" | "SUBMITTED" | "REVIEW_REQUESTED" | "UNDER_REVIEW")
|
|
3425
3461
|
attr_accessor evaluation_type: ("STANDARD" | "CALIBRATION")
|
|
3426
3462
|
attr_accessor created_time: ::Time
|
|
3427
3463
|
attr_accessor last_modified_time: ::Time
|
|
@@ -3449,7 +3485,7 @@ module Aws::Connect
|
|
|
3449
3485
|
attr_accessor evaluation_form_title: ::String
|
|
3450
3486
|
attr_accessor evaluation_form_id: ::String
|
|
3451
3487
|
attr_accessor calibration_session_id: ::String
|
|
3452
|
-
attr_accessor status: ("DRAFT" | "SUBMITTED")
|
|
3488
|
+
attr_accessor status: ("DRAFT" | "SUBMITTED" | "REVIEW_REQUESTED" | "UNDER_REVIEW")
|
|
3453
3489
|
attr_accessor auto_evaluation_enabled: bool
|
|
3454
3490
|
attr_accessor auto_evaluation_status: ("IN_PROGRESS" | "FAILED" | "SUCCEEDED")
|
|
3455
3491
|
attr_accessor evaluator_arn: ::String
|
|
@@ -7610,6 +7646,7 @@ module Aws::Connect
|
|
|
7610
7646
|
attr_accessor items: ::Array[Types::EvaluationFormItem]
|
|
7611
7647
|
attr_accessor scoring_strategy: Types::EvaluationFormScoringStrategy
|
|
7612
7648
|
attr_accessor auto_evaluation_configuration: Types::EvaluationFormAutoEvaluationConfiguration
|
|
7649
|
+
attr_accessor review_configuration: Types::EvaluationReviewConfiguration
|
|
7613
7650
|
attr_accessor as_draft: bool
|
|
7614
7651
|
attr_accessor client_token: ::String
|
|
7615
7652
|
attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-connect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.236.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.241.
|
|
21
|
+
version: 3.241.4
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.241.
|
|
31
|
+
version: 3.241.4
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|