aws-sdk-connect 1.221.0 → 1.222.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 +545 -18
- data/lib/aws-sdk-connect/client_api.rb +352 -1
- data/lib/aws-sdk-connect/types.rb +1274 -97
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +263 -14
- data/sig/types.rbs +328 -1
- metadata +1 -1
|
@@ -1708,8 +1708,8 @@ module Aws::Connect
|
|
|
1708
1708
|
end
|
|
1709
1709
|
|
|
1710
1710
|
# This API is in preview release for Amazon Connect and is subject to
|
|
1711
|
-
# change. To request access to this API, contact Amazon Web
|
|
1712
|
-
#
|
|
1711
|
+
# change. To request access to this API, contact Amazon Web Services
|
|
1712
|
+
# Support.
|
|
1713
1713
|
#
|
|
1714
1714
|
# Information about an authentication profile. An authentication profile
|
|
1715
1715
|
# is a resource that stores the authentication settings for users in
|
|
@@ -1822,8 +1822,8 @@ module Aws::Connect
|
|
|
1822
1822
|
end
|
|
1823
1823
|
|
|
1824
1824
|
# This API is in preview release for Amazon Connect and is subject to
|
|
1825
|
-
# change. To request access to this API, contact Amazon Web
|
|
1826
|
-
#
|
|
1825
|
+
# change. To request access to this API, contact Amazon Web Services
|
|
1826
|
+
# Support.
|
|
1827
1827
|
#
|
|
1828
1828
|
# A summary of a given authentication profile.
|
|
1829
1829
|
#
|
|
@@ -1870,6 +1870,53 @@ module Aws::Connect
|
|
|
1870
1870
|
include Aws::Structure
|
|
1871
1871
|
end
|
|
1872
1872
|
|
|
1873
|
+
# Configuration information about automated evaluations.
|
|
1874
|
+
#
|
|
1875
|
+
# @!attribute [rw] enabled
|
|
1876
|
+
# Whether automated evaluations are enabled.
|
|
1877
|
+
# @return [Boolean]
|
|
1878
|
+
#
|
|
1879
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AutoEvaluationConfiguration AWS API Documentation
|
|
1880
|
+
#
|
|
1881
|
+
class AutoEvaluationConfiguration < Struct.new(
|
|
1882
|
+
:enabled)
|
|
1883
|
+
SENSITIVE = []
|
|
1884
|
+
include Aws::Structure
|
|
1885
|
+
end
|
|
1886
|
+
|
|
1887
|
+
# Details about automated evaluations.
|
|
1888
|
+
#
|
|
1889
|
+
# @!attribute [rw] auto_evaluation_enabled
|
|
1890
|
+
# Whether automated evaluation is enabled.
|
|
1891
|
+
# @return [Boolean]
|
|
1892
|
+
#
|
|
1893
|
+
# @!attribute [rw] auto_evaluation_status
|
|
1894
|
+
# The status of the contact auto-evaluation.
|
|
1895
|
+
# @return [String]
|
|
1896
|
+
#
|
|
1897
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AutoEvaluationDetails AWS API Documentation
|
|
1898
|
+
#
|
|
1899
|
+
class AutoEvaluationDetails < Struct.new(
|
|
1900
|
+
:auto_evaluation_enabled,
|
|
1901
|
+
:auto_evaluation_status)
|
|
1902
|
+
SENSITIVE = []
|
|
1903
|
+
include Aws::Structure
|
|
1904
|
+
end
|
|
1905
|
+
|
|
1906
|
+
# Information about automatic fail configuration for an evaluation form.
|
|
1907
|
+
#
|
|
1908
|
+
# @!attribute [rw] target_section
|
|
1909
|
+
# The referenceId of the target section for auto failure.
|
|
1910
|
+
# @return [String]
|
|
1911
|
+
#
|
|
1912
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AutomaticFailConfiguration AWS API Documentation
|
|
1913
|
+
#
|
|
1914
|
+
class AutomaticFailConfiguration < Struct.new(
|
|
1915
|
+
:target_section)
|
|
1916
|
+
SENSITIVE = []
|
|
1917
|
+
include Aws::Structure
|
|
1918
|
+
end
|
|
1919
|
+
|
|
1873
1920
|
# Information about available phone numbers.
|
|
1874
1921
|
#
|
|
1875
1922
|
# @!attribute [rw] phone_number
|
|
@@ -2140,6 +2187,25 @@ module Aws::Connect
|
|
|
2140
2187
|
include Aws::Structure
|
|
2141
2188
|
end
|
|
2142
2189
|
|
|
2190
|
+
# A boolean search condition for Search APIs.
|
|
2191
|
+
#
|
|
2192
|
+
# @!attribute [rw] field_name
|
|
2193
|
+
# A name of the property to be searched.
|
|
2194
|
+
# @return [String]
|
|
2195
|
+
#
|
|
2196
|
+
# @!attribute [rw] comparison_type
|
|
2197
|
+
# Boolean property comparison type.
|
|
2198
|
+
# @return [String]
|
|
2199
|
+
#
|
|
2200
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/BooleanCondition AWS API Documentation
|
|
2201
|
+
#
|
|
2202
|
+
class BooleanCondition < Struct.new(
|
|
2203
|
+
:field_name,
|
|
2204
|
+
:comparison_type)
|
|
2205
|
+
SENSITIVE = []
|
|
2206
|
+
include Aws::Structure
|
|
2207
|
+
end
|
|
2208
|
+
|
|
2143
2209
|
# Information associated with a campaign.
|
|
2144
2210
|
#
|
|
2145
2211
|
# @!attribute [rw] campaign_id
|
|
@@ -4462,6 +4528,10 @@ module Aws::Connect
|
|
|
4462
4528
|
# A scoring strategy of the evaluation form.
|
|
4463
4529
|
# @return [Types::EvaluationFormScoringStrategy]
|
|
4464
4530
|
#
|
|
4531
|
+
# @!attribute [rw] auto_evaluation_configuration
|
|
4532
|
+
# Configuration information about automated evaluations.
|
|
4533
|
+
# @return [Types::EvaluationFormAutoEvaluationConfiguration]
|
|
4534
|
+
#
|
|
4465
4535
|
# @!attribute [rw] client_token
|
|
4466
4536
|
# A unique, case-sensitive identifier that you provide to ensure the
|
|
4467
4537
|
# idempotency of the request. If not provided, the Amazon Web Services
|
|
@@ -4476,6 +4546,12 @@ module Aws::Connect
|
|
|
4476
4546
|
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
4477
4547
|
# @return [String]
|
|
4478
4548
|
#
|
|
4549
|
+
# @!attribute [rw] tags
|
|
4550
|
+
# The tags used to organize, track, or control access for this
|
|
4551
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
|
4552
|
+
# "key2":"value2"} }.
|
|
4553
|
+
# @return [Hash<String,String>]
|
|
4554
|
+
#
|
|
4479
4555
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateEvaluationFormRequest AWS API Documentation
|
|
4480
4556
|
#
|
|
4481
4557
|
class CreateEvaluationFormRequest < Struct.new(
|
|
@@ -4484,7 +4560,9 @@ module Aws::Connect
|
|
|
4484
4560
|
:description,
|
|
4485
4561
|
:items,
|
|
4486
4562
|
:scoring_strategy,
|
|
4487
|
-
:
|
|
4563
|
+
:auto_evaluation_configuration,
|
|
4564
|
+
:client_token,
|
|
4565
|
+
:tags)
|
|
4488
4566
|
SENSITIVE = []
|
|
4489
4567
|
include Aws::Structure
|
|
4490
4568
|
end
|
|
@@ -6363,6 +6441,35 @@ module Aws::Connect
|
|
|
6363
6441
|
include Aws::Structure
|
|
6364
6442
|
end
|
|
6365
6443
|
|
|
6444
|
+
# A datetime search condition for Search APIs.
|
|
6445
|
+
#
|
|
6446
|
+
# @!attribute [rw] field_name
|
|
6447
|
+
# A name of the datetime property to be searched
|
|
6448
|
+
# @return [String]
|
|
6449
|
+
#
|
|
6450
|
+
# @!attribute [rw] min_value
|
|
6451
|
+
# A minimum value of the property.
|
|
6452
|
+
# @return [String]
|
|
6453
|
+
#
|
|
6454
|
+
# @!attribute [rw] max_value
|
|
6455
|
+
# A maximum value of the property.
|
|
6456
|
+
# @return [String]
|
|
6457
|
+
#
|
|
6458
|
+
# @!attribute [rw] comparison_type
|
|
6459
|
+
# Datetime property comparison type.
|
|
6460
|
+
# @return [String]
|
|
6461
|
+
#
|
|
6462
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DateTimeCondition AWS API Documentation
|
|
6463
|
+
#
|
|
6464
|
+
class DateTimeCondition < Struct.new(
|
|
6465
|
+
:field_name,
|
|
6466
|
+
:min_value,
|
|
6467
|
+
:max_value,
|
|
6468
|
+
:comparison_type)
|
|
6469
|
+
SENSITIVE = []
|
|
6470
|
+
include Aws::Structure
|
|
6471
|
+
end
|
|
6472
|
+
|
|
6366
6473
|
# @!attribute [rw] instance_id
|
|
6367
6474
|
# The identifier of the Amazon Connect instance. You can [find the
|
|
6368
6475
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
@@ -6413,6 +6520,36 @@ module Aws::Connect
|
|
|
6413
6520
|
include Aws::Structure
|
|
6414
6521
|
end
|
|
6415
6522
|
|
|
6523
|
+
# A decimal search condition for Search APIs.
|
|
6524
|
+
#
|
|
6525
|
+
# @!attribute [rw] field_name
|
|
6526
|
+
# A name of the decimal property to be searched.
|
|
6527
|
+
# @return [String]
|
|
6528
|
+
#
|
|
6529
|
+
# @!attribute [rw] min_value
|
|
6530
|
+
# A minimum value of the decimal property.
|
|
6531
|
+
# @return [Float]
|
|
6532
|
+
#
|
|
6533
|
+
# @!attribute [rw] max_value
|
|
6534
|
+
# A maximum value of the decimal property.
|
|
6535
|
+
# @return [Float]
|
|
6536
|
+
#
|
|
6537
|
+
# @!attribute [rw] comparison_type
|
|
6538
|
+
# The type of comparison to be made when evaluating the decimal
|
|
6539
|
+
# condition.
|
|
6540
|
+
# @return [String]
|
|
6541
|
+
#
|
|
6542
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DecimalCondition AWS API Documentation
|
|
6543
|
+
#
|
|
6544
|
+
class DecimalCondition < Struct.new(
|
|
6545
|
+
:field_name,
|
|
6546
|
+
:min_value,
|
|
6547
|
+
:max_value,
|
|
6548
|
+
:comparison_type)
|
|
6549
|
+
SENSITIVE = []
|
|
6550
|
+
include Aws::Structure
|
|
6551
|
+
end
|
|
6552
|
+
|
|
6416
6553
|
# Contains information about a default vocabulary.
|
|
6417
6554
|
#
|
|
6418
6555
|
# @!attribute [rw] instance_id
|
|
@@ -9133,6 +9270,10 @@ module Aws::Connect
|
|
|
9133
9270
|
# The timestamp for when the evaluation was last updated.
|
|
9134
9271
|
# @return [Time]
|
|
9135
9272
|
#
|
|
9273
|
+
# @!attribute [rw] evaluation_type
|
|
9274
|
+
# Type of the evaluation.
|
|
9275
|
+
# @return [String]
|
|
9276
|
+
#
|
|
9136
9277
|
# @!attribute [rw] tags
|
|
9137
9278
|
# The tags used to organize, track, or control access for this
|
|
9138
9279
|
# resource. For example, \{ "Tags": \{"key1":"value1",
|
|
@@ -9151,11 +9292,62 @@ module Aws::Connect
|
|
|
9151
9292
|
:scores,
|
|
9152
9293
|
:created_time,
|
|
9153
9294
|
:last_modified_time,
|
|
9295
|
+
:evaluation_type,
|
|
9154
9296
|
:tags)
|
|
9155
9297
|
SENSITIVE = []
|
|
9156
9298
|
include Aws::Structure
|
|
9157
9299
|
end
|
|
9158
9300
|
|
|
9301
|
+
# Information about the evaluation acknowledgement.
|
|
9302
|
+
#
|
|
9303
|
+
# @!attribute [rw] acknowledged_time
|
|
9304
|
+
# When the agent acknowledged the evaluation.
|
|
9305
|
+
# @return [Time]
|
|
9306
|
+
#
|
|
9307
|
+
# @!attribute [rw] acknowledged_by
|
|
9308
|
+
# The agent who acknowledged the evaluation.
|
|
9309
|
+
# @return [String]
|
|
9310
|
+
#
|
|
9311
|
+
# @!attribute [rw] acknowledger_comment
|
|
9312
|
+
# A comment from the agent when they confirmed they acknowledged the
|
|
9313
|
+
# evaluation.
|
|
9314
|
+
# @return [String]
|
|
9315
|
+
#
|
|
9316
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationAcknowledgement AWS API Documentation
|
|
9317
|
+
#
|
|
9318
|
+
class EvaluationAcknowledgement < Struct.new(
|
|
9319
|
+
:acknowledged_time,
|
|
9320
|
+
:acknowledged_by,
|
|
9321
|
+
:acknowledger_comment)
|
|
9322
|
+
SENSITIVE = []
|
|
9323
|
+
include Aws::Structure
|
|
9324
|
+
end
|
|
9325
|
+
|
|
9326
|
+
# Summary information about an evaluation acknowledgement.
|
|
9327
|
+
#
|
|
9328
|
+
# @!attribute [rw] acknowledged_time
|
|
9329
|
+
# The time when an agent acknowledged the evaluation.
|
|
9330
|
+
# @return [Time]
|
|
9331
|
+
#
|
|
9332
|
+
# @!attribute [rw] acknowledged_by
|
|
9333
|
+
# The agent who acknowledged the evaluation.
|
|
9334
|
+
# @return [String]
|
|
9335
|
+
#
|
|
9336
|
+
# @!attribute [rw] acknowledger_comment
|
|
9337
|
+
# A comment from the agent when they confirmed they acknowledged the
|
|
9338
|
+
# evaluation.
|
|
9339
|
+
# @return [String]
|
|
9340
|
+
#
|
|
9341
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationAcknowledgementSummary AWS API Documentation
|
|
9342
|
+
#
|
|
9343
|
+
class EvaluationAcknowledgementSummary < Struct.new(
|
|
9344
|
+
:acknowledged_time,
|
|
9345
|
+
:acknowledged_by,
|
|
9346
|
+
:acknowledger_comment)
|
|
9347
|
+
SENSITIVE = []
|
|
9348
|
+
include Aws::Structure
|
|
9349
|
+
end
|
|
9350
|
+
|
|
9159
9351
|
# Information about answer data for a contact evaluation. Answer data
|
|
9160
9352
|
# must be either string, numeric, or not applicable.
|
|
9161
9353
|
#
|
|
@@ -9216,11 +9408,56 @@ module Aws::Connect
|
|
|
9216
9408
|
# The system suggested value for an answer in a contact evaluation.
|
|
9217
9409
|
# @return [Types::EvaluationAnswerData]
|
|
9218
9410
|
#
|
|
9411
|
+
# @!attribute [rw] suggested_answers
|
|
9412
|
+
# Automation suggested answers for the questions.
|
|
9413
|
+
# @return [Array<Types::EvaluationSuggestedAnswer>]
|
|
9414
|
+
#
|
|
9219
9415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationAnswerOutput AWS API Documentation
|
|
9220
9416
|
#
|
|
9221
9417
|
class EvaluationAnswerOutput < Struct.new(
|
|
9222
9418
|
:value,
|
|
9223
|
-
:system_suggested_value
|
|
9419
|
+
:system_suggested_value,
|
|
9420
|
+
:suggested_answers)
|
|
9421
|
+
SENSITIVE = []
|
|
9422
|
+
include Aws::Structure
|
|
9423
|
+
end
|
|
9424
|
+
|
|
9425
|
+
# The Contact Lens category used by evaluation automation.
|
|
9426
|
+
#
|
|
9427
|
+
# @!attribute [rw] category
|
|
9428
|
+
# A category label.
|
|
9429
|
+
# @return [String]
|
|
9430
|
+
#
|
|
9431
|
+
# @!attribute [rw] condition
|
|
9432
|
+
# An automation condition for a Contact Lens category.
|
|
9433
|
+
# @return [String]
|
|
9434
|
+
#
|
|
9435
|
+
# @!attribute [rw] points_of_interest
|
|
9436
|
+
# A point of interest in a contact transcript that indicates match of
|
|
9437
|
+
# condition.
|
|
9438
|
+
# @return [Array<Types::EvaluationTranscriptPointOfInterest>]
|
|
9439
|
+
#
|
|
9440
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationAutomationRuleCategory AWS API Documentation
|
|
9441
|
+
#
|
|
9442
|
+
class EvaluationAutomationRuleCategory < Struct.new(
|
|
9443
|
+
:category,
|
|
9444
|
+
:condition,
|
|
9445
|
+
:points_of_interest)
|
|
9446
|
+
SENSITIVE = []
|
|
9447
|
+
include Aws::Structure
|
|
9448
|
+
end
|
|
9449
|
+
|
|
9450
|
+
# Analysis details providing explanation for Contact Lens automation
|
|
9451
|
+
# decision.
|
|
9452
|
+
#
|
|
9453
|
+
# @!attribute [rw] matched_rule_categories
|
|
9454
|
+
# A list of match rule categories.
|
|
9455
|
+
# @return [Array<Types::EvaluationAutomationRuleCategory>]
|
|
9456
|
+
#
|
|
9457
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationContactLensAnswerAnalysisDetails AWS API Documentation
|
|
9458
|
+
#
|
|
9459
|
+
class EvaluationContactLensAnswerAnalysisDetails < Struct.new(
|
|
9460
|
+
:matched_rule_categories)
|
|
9224
9461
|
SENSITIVE = []
|
|
9225
9462
|
include Aws::Structure
|
|
9226
9463
|
end
|
|
@@ -9284,6 +9521,10 @@ module Aws::Connect
|
|
|
9284
9521
|
# evaluation form.
|
|
9285
9522
|
# @return [String]
|
|
9286
9523
|
#
|
|
9524
|
+
# @!attribute [rw] auto_evaluation_configuration
|
|
9525
|
+
# The automatic evaluation configuration of an evaluation form.
|
|
9526
|
+
# @return [Types::EvaluationFormAutoEvaluationConfiguration]
|
|
9527
|
+
#
|
|
9287
9528
|
# @!attribute [rw] tags
|
|
9288
9529
|
# The tags used to organize, track, or control access for this
|
|
9289
9530
|
# resource. For example, \{ "Tags": \{"key1":"value1",
|
|
@@ -9306,11 +9547,26 @@ module Aws::Connect
|
|
|
9306
9547
|
:created_by,
|
|
9307
9548
|
:last_modified_time,
|
|
9308
9549
|
:last_modified_by,
|
|
9550
|
+
:auto_evaluation_configuration,
|
|
9309
9551
|
:tags)
|
|
9310
9552
|
SENSITIVE = []
|
|
9311
9553
|
include Aws::Structure
|
|
9312
9554
|
end
|
|
9313
9555
|
|
|
9556
|
+
# The automatic evaluation configuration of an evaluation form.
|
|
9557
|
+
#
|
|
9558
|
+
# @!attribute [rw] enabled
|
|
9559
|
+
# When automated evaluation is enabled.
|
|
9560
|
+
# @return [Boolean]
|
|
9561
|
+
#
|
|
9562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormAutoEvaluationConfiguration AWS API Documentation
|
|
9563
|
+
#
|
|
9564
|
+
class EvaluationFormAutoEvaluationConfiguration < Struct.new(
|
|
9565
|
+
:enabled)
|
|
9566
|
+
SENSITIVE = []
|
|
9567
|
+
include Aws::Structure
|
|
9568
|
+
end
|
|
9569
|
+
|
|
9314
9570
|
# Information about an evaluation form used in a contact evaluation.
|
|
9315
9571
|
#
|
|
9316
9572
|
# @!attribute [rw] evaluation_form_version
|
|
@@ -9343,6 +9599,10 @@ module Aws::Connect
|
|
|
9343
9599
|
# A scoring strategy of the evaluation form.
|
|
9344
9600
|
# @return [Types::EvaluationFormScoringStrategy]
|
|
9345
9601
|
#
|
|
9602
|
+
# @!attribute [rw] auto_evaluation_configuration
|
|
9603
|
+
# The configuration of the automated evaluation.
|
|
9604
|
+
# @return [Types::EvaluationFormAutoEvaluationConfiguration]
|
|
9605
|
+
#
|
|
9346
9606
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormContent AWS API Documentation
|
|
9347
9607
|
#
|
|
9348
9608
|
class EvaluationFormContent < Struct.new(
|
|
@@ -9352,7 +9612,8 @@ module Aws::Connect
|
|
|
9352
9612
|
:title,
|
|
9353
9613
|
:description,
|
|
9354
9614
|
:items,
|
|
9355
|
-
:scoring_strategy
|
|
9615
|
+
:scoring_strategy,
|
|
9616
|
+
:auto_evaluation_configuration)
|
|
9356
9617
|
SENSITIVE = []
|
|
9357
9618
|
include Aws::Structure
|
|
9358
9619
|
end
|
|
@@ -9387,6 +9648,142 @@ module Aws::Connect
|
|
|
9387
9648
|
class Unknown < EvaluationFormItem; end
|
|
9388
9649
|
end
|
|
9389
9650
|
|
|
9651
|
+
# A condition for item enablement.
|
|
9652
|
+
#
|
|
9653
|
+
# @!attribute [rw] operands
|
|
9654
|
+
# Operands of the enablement condition.
|
|
9655
|
+
# @return [Array<Types::EvaluationFormItemEnablementConditionOperand>]
|
|
9656
|
+
#
|
|
9657
|
+
# @!attribute [rw] operator
|
|
9658
|
+
# The operator to be used to be applied to operands if more than one
|
|
9659
|
+
# provided.
|
|
9660
|
+
# @return [String]
|
|
9661
|
+
#
|
|
9662
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormItemEnablementCondition AWS API Documentation
|
|
9663
|
+
#
|
|
9664
|
+
class EvaluationFormItemEnablementCondition < Struct.new(
|
|
9665
|
+
:operands,
|
|
9666
|
+
:operator)
|
|
9667
|
+
SENSITIVE = []
|
|
9668
|
+
include Aws::Structure
|
|
9669
|
+
end
|
|
9670
|
+
|
|
9671
|
+
# An operand of the enablement condition.
|
|
9672
|
+
#
|
|
9673
|
+
# @note EvaluationFormItemEnablementConditionOperand is a union - when making an API calls you must set exactly one of the members.
|
|
9674
|
+
#
|
|
9675
|
+
# @note EvaluationFormItemEnablementConditionOperand is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EvaluationFormItemEnablementConditionOperand corresponding to the set member.
|
|
9676
|
+
#
|
|
9677
|
+
# @!attribute [rw] expression
|
|
9678
|
+
# An expression of the enablement condition.
|
|
9679
|
+
# @return [Types::EvaluationFormItemEnablementExpression]
|
|
9680
|
+
#
|
|
9681
|
+
# @!attribute [rw] condition
|
|
9682
|
+
# A condition for item enablement.
|
|
9683
|
+
# @return [Types::EvaluationFormItemEnablementCondition]
|
|
9684
|
+
#
|
|
9685
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormItemEnablementConditionOperand AWS API Documentation
|
|
9686
|
+
#
|
|
9687
|
+
class EvaluationFormItemEnablementConditionOperand < Struct.new(
|
|
9688
|
+
:expression,
|
|
9689
|
+
:condition,
|
|
9690
|
+
:unknown)
|
|
9691
|
+
SENSITIVE = []
|
|
9692
|
+
include Aws::Structure
|
|
9693
|
+
include Aws::Structure::Union
|
|
9694
|
+
|
|
9695
|
+
class Expression < EvaluationFormItemEnablementConditionOperand; end
|
|
9696
|
+
class Condition < EvaluationFormItemEnablementConditionOperand; end
|
|
9697
|
+
class Unknown < EvaluationFormItemEnablementConditionOperand; end
|
|
9698
|
+
end
|
|
9699
|
+
|
|
9700
|
+
# An item enablement configuration.
|
|
9701
|
+
#
|
|
9702
|
+
# @!attribute [rw] condition
|
|
9703
|
+
# A condition for item enablement configuration.
|
|
9704
|
+
# @return [Types::EvaluationFormItemEnablementCondition]
|
|
9705
|
+
#
|
|
9706
|
+
# @!attribute [rw] action
|
|
9707
|
+
# An enablement action that if condition is satisfied.
|
|
9708
|
+
# @return [String]
|
|
9709
|
+
#
|
|
9710
|
+
# @!attribute [rw] default_action
|
|
9711
|
+
# An enablement action that if condition is not satisfied.
|
|
9712
|
+
# @return [String]
|
|
9713
|
+
#
|
|
9714
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormItemEnablementConfiguration AWS API Documentation
|
|
9715
|
+
#
|
|
9716
|
+
class EvaluationFormItemEnablementConfiguration < Struct.new(
|
|
9717
|
+
:condition,
|
|
9718
|
+
:action,
|
|
9719
|
+
:default_action)
|
|
9720
|
+
SENSITIVE = []
|
|
9721
|
+
include Aws::Structure
|
|
9722
|
+
end
|
|
9723
|
+
|
|
9724
|
+
# An expression that defines a basic building block of conditional
|
|
9725
|
+
# enablement.
|
|
9726
|
+
#
|
|
9727
|
+
# @!attribute [rw] source
|
|
9728
|
+
# A source item of enablement expression.
|
|
9729
|
+
# @return [Types::EvaluationFormItemEnablementSource]
|
|
9730
|
+
#
|
|
9731
|
+
# @!attribute [rw] values
|
|
9732
|
+
# A list of values from source item.
|
|
9733
|
+
# @return [Array<Types::EvaluationFormItemEnablementSourceValue>]
|
|
9734
|
+
#
|
|
9735
|
+
# @!attribute [rw] comparator
|
|
9736
|
+
# A comparator to be used against list of values.
|
|
9737
|
+
# @return [String]
|
|
9738
|
+
#
|
|
9739
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormItemEnablementExpression AWS API Documentation
|
|
9740
|
+
#
|
|
9741
|
+
class EvaluationFormItemEnablementExpression < Struct.new(
|
|
9742
|
+
:source,
|
|
9743
|
+
:values,
|
|
9744
|
+
:comparator)
|
|
9745
|
+
SENSITIVE = []
|
|
9746
|
+
include Aws::Structure
|
|
9747
|
+
end
|
|
9748
|
+
|
|
9749
|
+
# An enablement expression source item.
|
|
9750
|
+
#
|
|
9751
|
+
# @!attribute [rw] type
|
|
9752
|
+
# A type of source item.
|
|
9753
|
+
# @return [String]
|
|
9754
|
+
#
|
|
9755
|
+
# @!attribute [rw] ref_id
|
|
9756
|
+
# A referenceId of the source item.
|
|
9757
|
+
# @return [String]
|
|
9758
|
+
#
|
|
9759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormItemEnablementSource AWS API Documentation
|
|
9760
|
+
#
|
|
9761
|
+
class EvaluationFormItemEnablementSource < Struct.new(
|
|
9762
|
+
:type,
|
|
9763
|
+
:ref_id)
|
|
9764
|
+
SENSITIVE = []
|
|
9765
|
+
include Aws::Structure
|
|
9766
|
+
end
|
|
9767
|
+
|
|
9768
|
+
# An enablement expression source value.
|
|
9769
|
+
#
|
|
9770
|
+
# @!attribute [rw] type
|
|
9771
|
+
# A type of source item value.
|
|
9772
|
+
# @return [String]
|
|
9773
|
+
#
|
|
9774
|
+
# @!attribute [rw] ref_id
|
|
9775
|
+
# A referenceId of the source value.
|
|
9776
|
+
# @return [String]
|
|
9777
|
+
#
|
|
9778
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormItemEnablementSourceValue AWS API Documentation
|
|
9779
|
+
#
|
|
9780
|
+
class EvaluationFormItemEnablementSourceValue < Struct.new(
|
|
9781
|
+
:type,
|
|
9782
|
+
:ref_id)
|
|
9783
|
+
SENSITIVE = []
|
|
9784
|
+
include Aws::Structure
|
|
9785
|
+
end
|
|
9786
|
+
|
|
9390
9787
|
# Information about the automation configuration in numeric questions.
|
|
9391
9788
|
#
|
|
9392
9789
|
# @note EvaluationFormNumericQuestionAutomation is a union - when making an API calls you must set exactly one of the members.
|
|
@@ -9397,16 +9794,22 @@ module Aws::Connect
|
|
|
9397
9794
|
# The property value of the automation.
|
|
9398
9795
|
# @return [Types::NumericQuestionPropertyValueAutomation]
|
|
9399
9796
|
#
|
|
9797
|
+
# @!attribute [rw] answer_source
|
|
9798
|
+
# A source of automation answer for numeric question.
|
|
9799
|
+
# @return [Types::EvaluationFormQuestionAutomationAnswerSource]
|
|
9800
|
+
#
|
|
9400
9801
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormNumericQuestionAutomation AWS API Documentation
|
|
9401
9802
|
#
|
|
9402
9803
|
class EvaluationFormNumericQuestionAutomation < Struct.new(
|
|
9403
9804
|
:property_value,
|
|
9805
|
+
:answer_source,
|
|
9404
9806
|
:unknown)
|
|
9405
9807
|
SENSITIVE = []
|
|
9406
9808
|
include Aws::Structure
|
|
9407
9809
|
include Aws::Structure::Union
|
|
9408
9810
|
|
|
9409
9811
|
class PropertyValue < EvaluationFormNumericQuestionAutomation; end
|
|
9812
|
+
class AnswerSource < EvaluationFormNumericQuestionAutomation; end
|
|
9410
9813
|
class Unknown < EvaluationFormNumericQuestionAutomation; end
|
|
9411
9814
|
end
|
|
9412
9815
|
|
|
@@ -9430,13 +9833,18 @@ module Aws::Connect
|
|
|
9430
9833
|
# answer is provided, the overall evaluation gets a score of 0.
|
|
9431
9834
|
# @return [Boolean]
|
|
9432
9835
|
#
|
|
9836
|
+
# @!attribute [rw] automatic_fail_configuration
|
|
9837
|
+
# A configuration for automatic fail.
|
|
9838
|
+
# @return [Types::AutomaticFailConfiguration]
|
|
9839
|
+
#
|
|
9433
9840
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormNumericQuestionOption AWS API Documentation
|
|
9434
9841
|
#
|
|
9435
9842
|
class EvaluationFormNumericQuestionOption < Struct.new(
|
|
9436
9843
|
:min_value,
|
|
9437
9844
|
:max_value,
|
|
9438
9845
|
:score,
|
|
9439
|
-
:automatic_fail
|
|
9846
|
+
:automatic_fail,
|
|
9847
|
+
:automatic_fail_configuration)
|
|
9440
9848
|
SENSITIVE = []
|
|
9441
9849
|
include Aws::Structure
|
|
9442
9850
|
end
|
|
@@ -9499,6 +9907,10 @@ module Aws::Connect
|
|
|
9499
9907
|
# to define question type properties.
|
|
9500
9908
|
# @return [Types::EvaluationFormQuestionTypeProperties]
|
|
9501
9909
|
#
|
|
9910
|
+
# @!attribute [rw] enablement
|
|
9911
|
+
# A question conditional enablement.
|
|
9912
|
+
# @return [Types::EvaluationFormItemEnablementConfiguration]
|
|
9913
|
+
#
|
|
9502
9914
|
# @!attribute [rw] weight
|
|
9503
9915
|
# The scoring weight of the section.
|
|
9504
9916
|
# @return [Float]
|
|
@@ -9512,11 +9924,26 @@ module Aws::Connect
|
|
|
9512
9924
|
:not_applicable_enabled,
|
|
9513
9925
|
:question_type,
|
|
9514
9926
|
:question_type_properties,
|
|
9927
|
+
:enablement,
|
|
9515
9928
|
:weight)
|
|
9516
9929
|
SENSITIVE = []
|
|
9517
9930
|
include Aws::Structure
|
|
9518
9931
|
end
|
|
9519
9932
|
|
|
9933
|
+
# A question automation answer.
|
|
9934
|
+
#
|
|
9935
|
+
# @!attribute [rw] source_type
|
|
9936
|
+
# The automation answer source type.
|
|
9937
|
+
# @return [String]
|
|
9938
|
+
#
|
|
9939
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormQuestionAutomationAnswerSource AWS API Documentation
|
|
9940
|
+
#
|
|
9941
|
+
class EvaluationFormQuestionAutomationAnswerSource < Struct.new(
|
|
9942
|
+
:source_type)
|
|
9943
|
+
SENSITIVE = []
|
|
9944
|
+
include Aws::Structure
|
|
9945
|
+
end
|
|
9946
|
+
|
|
9520
9947
|
# Information about properties for a question in an evaluation form. The
|
|
9521
9948
|
# question type properties must be either for a numeric question or a
|
|
9522
9949
|
# single select question.
|
|
@@ -9533,11 +9960,16 @@ module Aws::Connect
|
|
|
9533
9960
|
# The properties of the numeric question.
|
|
9534
9961
|
# @return [Types::EvaluationFormSingleSelectQuestionProperties]
|
|
9535
9962
|
#
|
|
9963
|
+
# @!attribute [rw] text
|
|
9964
|
+
# The properties of the text question.
|
|
9965
|
+
# @return [Types::EvaluationFormTextQuestionProperties]
|
|
9966
|
+
#
|
|
9536
9967
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormQuestionTypeProperties AWS API Documentation
|
|
9537
9968
|
#
|
|
9538
9969
|
class EvaluationFormQuestionTypeProperties < Struct.new(
|
|
9539
9970
|
:numeric,
|
|
9540
9971
|
:single_select,
|
|
9972
|
+
:text,
|
|
9541
9973
|
:unknown)
|
|
9542
9974
|
SENSITIVE = []
|
|
9543
9975
|
include Aws::Structure
|
|
@@ -9545,6 +9977,7 @@ module Aws::Connect
|
|
|
9545
9977
|
|
|
9546
9978
|
class Numeric < EvaluationFormQuestionTypeProperties; end
|
|
9547
9979
|
class SingleSelect < EvaluationFormQuestionTypeProperties; end
|
|
9980
|
+
class Text < EvaluationFormQuestionTypeProperties; end
|
|
9548
9981
|
class Unknown < EvaluationFormQuestionTypeProperties; end
|
|
9549
9982
|
end
|
|
9550
9983
|
|
|
@@ -9567,6 +10000,161 @@ module Aws::Connect
|
|
|
9567
10000
|
include Aws::Structure
|
|
9568
10001
|
end
|
|
9569
10002
|
|
|
10003
|
+
# The search criteria to be used to return evaluation forms.
|
|
10004
|
+
#
|
|
10005
|
+
# @!attribute [rw] or_conditions
|
|
10006
|
+
# A list of conditions which would be applied together with an OR
|
|
10007
|
+
# condition.
|
|
10008
|
+
# @return [Array<Types::EvaluationFormSearchCriteria>]
|
|
10009
|
+
#
|
|
10010
|
+
# @!attribute [rw] and_conditions
|
|
10011
|
+
# A list of conditions which would be applied together with an AND
|
|
10012
|
+
# condition.
|
|
10013
|
+
# @return [Array<Types::EvaluationFormSearchCriteria>]
|
|
10014
|
+
#
|
|
10015
|
+
# @!attribute [rw] string_condition
|
|
10016
|
+
# A leaf node condition which can be used to specify a string
|
|
10017
|
+
# condition.
|
|
10018
|
+
# @return [Types::StringCondition]
|
|
10019
|
+
#
|
|
10020
|
+
# @!attribute [rw] number_condition
|
|
10021
|
+
# A leaf node condition which can be used to specify a numeric
|
|
10022
|
+
# condition.
|
|
10023
|
+
#
|
|
10024
|
+
# <note markdown="1"> The currently supported value for `FieldName` is `limit`.
|
|
10025
|
+
#
|
|
10026
|
+
# </note>
|
|
10027
|
+
# @return [Types::NumberCondition]
|
|
10028
|
+
#
|
|
10029
|
+
# @!attribute [rw] boolean_condition
|
|
10030
|
+
# Boolean search condition.
|
|
10031
|
+
# @return [Types::BooleanCondition]
|
|
10032
|
+
#
|
|
10033
|
+
# @!attribute [rw] date_time_condition
|
|
10034
|
+
# Datetime search condition.
|
|
10035
|
+
# @return [Types::DateTimeCondition]
|
|
10036
|
+
#
|
|
10037
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormSearchCriteria AWS API Documentation
|
|
10038
|
+
#
|
|
10039
|
+
class EvaluationFormSearchCriteria < Struct.new(
|
|
10040
|
+
:or_conditions,
|
|
10041
|
+
:and_conditions,
|
|
10042
|
+
:string_condition,
|
|
10043
|
+
:number_condition,
|
|
10044
|
+
:boolean_condition,
|
|
10045
|
+
:date_time_condition)
|
|
10046
|
+
SENSITIVE = []
|
|
10047
|
+
include Aws::Structure
|
|
10048
|
+
end
|
|
10049
|
+
|
|
10050
|
+
# Filters to be applied to search results.
|
|
10051
|
+
#
|
|
10052
|
+
# @!attribute [rw] attribute_filter
|
|
10053
|
+
# An object that can be used to specify Tag conditions inside the
|
|
10054
|
+
# `SearchFilter`. This accepts an `OR` or `AND` (List of List) input
|
|
10055
|
+
# where:
|
|
10056
|
+
#
|
|
10057
|
+
# * The top level list specifies conditions that need to be applied
|
|
10058
|
+
# with `OR` operator.
|
|
10059
|
+
#
|
|
10060
|
+
# * The inner list specifies conditions that need to be applied with
|
|
10061
|
+
# `AND` operator.
|
|
10062
|
+
# @return [Types::ControlPlaneAttributeFilter]
|
|
10063
|
+
#
|
|
10064
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormSearchFilter AWS API Documentation
|
|
10065
|
+
#
|
|
10066
|
+
class EvaluationFormSearchFilter < Struct.new(
|
|
10067
|
+
:attribute_filter)
|
|
10068
|
+
SENSITIVE = []
|
|
10069
|
+
include Aws::Structure
|
|
10070
|
+
end
|
|
10071
|
+
|
|
10072
|
+
# Information about the returned evaluation forms.
|
|
10073
|
+
#
|
|
10074
|
+
# @!attribute [rw] evaluation_form_id
|
|
10075
|
+
# The unique identifier for the evaluation form.
|
|
10076
|
+
# @return [String]
|
|
10077
|
+
#
|
|
10078
|
+
# @!attribute [rw] evaluation_form_arn
|
|
10079
|
+
# The Amazon Resource Name (ARN) for the evaluation form resource.
|
|
10080
|
+
# @return [String]
|
|
10081
|
+
#
|
|
10082
|
+
# @!attribute [rw] title
|
|
10083
|
+
# The title of the evaluation form.
|
|
10084
|
+
# @return [String]
|
|
10085
|
+
#
|
|
10086
|
+
# @!attribute [rw] status
|
|
10087
|
+
# The status of the evaluation form.
|
|
10088
|
+
# @return [String]
|
|
10089
|
+
#
|
|
10090
|
+
# @!attribute [rw] description
|
|
10091
|
+
# The description of the evaluation form.
|
|
10092
|
+
# @return [String]
|
|
10093
|
+
#
|
|
10094
|
+
# @!attribute [rw] created_time
|
|
10095
|
+
# When the evaluation form was created.
|
|
10096
|
+
# @return [Time]
|
|
10097
|
+
#
|
|
10098
|
+
# @!attribute [rw] created_by
|
|
10099
|
+
# Who created the evaluation form.
|
|
10100
|
+
# @return [String]
|
|
10101
|
+
#
|
|
10102
|
+
# @!attribute [rw] last_modified_time
|
|
10103
|
+
# When the evaluation form was last changed.
|
|
10104
|
+
# @return [Time]
|
|
10105
|
+
#
|
|
10106
|
+
# @!attribute [rw] last_modified_by
|
|
10107
|
+
# Who changed the evaluation form.
|
|
10108
|
+
# @return [String]
|
|
10109
|
+
#
|
|
10110
|
+
# @!attribute [rw] last_activated_time
|
|
10111
|
+
# When the evaluation format was last activated.
|
|
10112
|
+
# @return [Time]
|
|
10113
|
+
#
|
|
10114
|
+
# @!attribute [rw] last_activated_by
|
|
10115
|
+
# The ID of user who last activated evaluation form.
|
|
10116
|
+
# @return [String]
|
|
10117
|
+
#
|
|
10118
|
+
# @!attribute [rw] latest_version
|
|
10119
|
+
# Latest version of the evaluation form.
|
|
10120
|
+
# @return [Integer]
|
|
10121
|
+
#
|
|
10122
|
+
# @!attribute [rw] active_version
|
|
10123
|
+
# Active version of the evaluation form.
|
|
10124
|
+
# @return [Integer]
|
|
10125
|
+
#
|
|
10126
|
+
# @!attribute [rw] auto_evaluation_enabled
|
|
10127
|
+
# Whether automated evaluation is enabled.
|
|
10128
|
+
# @return [Boolean]
|
|
10129
|
+
#
|
|
10130
|
+
# @!attribute [rw] tags
|
|
10131
|
+
# The tags used to organize, track, or control access for this
|
|
10132
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
|
10133
|
+
# "key2":"value2"} }.
|
|
10134
|
+
# @return [Hash<String,String>]
|
|
10135
|
+
#
|
|
10136
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormSearchSummary AWS API Documentation
|
|
10137
|
+
#
|
|
10138
|
+
class EvaluationFormSearchSummary < Struct.new(
|
|
10139
|
+
:evaluation_form_id,
|
|
10140
|
+
:evaluation_form_arn,
|
|
10141
|
+
:title,
|
|
10142
|
+
:status,
|
|
10143
|
+
:description,
|
|
10144
|
+
:created_time,
|
|
10145
|
+
:created_by,
|
|
10146
|
+
:last_modified_time,
|
|
10147
|
+
:last_modified_by,
|
|
10148
|
+
:last_activated_time,
|
|
10149
|
+
:last_activated_by,
|
|
10150
|
+
:latest_version,
|
|
10151
|
+
:active_version,
|
|
10152
|
+
:auto_evaluation_enabled,
|
|
10153
|
+
:tags)
|
|
10154
|
+
SENSITIVE = []
|
|
10155
|
+
include Aws::Structure
|
|
10156
|
+
end
|
|
10157
|
+
|
|
9570
10158
|
# Information about a section from an evaluation form. A section can
|
|
9571
10159
|
# contain sections and/or questions. Evaluation forms can only contain
|
|
9572
10160
|
# sections and subsections (two level nesting).
|
|
@@ -9618,11 +10206,16 @@ module Aws::Connect
|
|
|
9618
10206
|
# automation options match the criteria.
|
|
9619
10207
|
# @return [String]
|
|
9620
10208
|
#
|
|
10209
|
+
# @!attribute [rw] answer_source
|
|
10210
|
+
# Automation answer source.
|
|
10211
|
+
# @return [Types::EvaluationFormQuestionAutomationAnswerSource]
|
|
10212
|
+
#
|
|
9621
10213
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormSingleSelectQuestionAutomation AWS API Documentation
|
|
9622
10214
|
#
|
|
9623
10215
|
class EvaluationFormSingleSelectQuestionAutomation < Struct.new(
|
|
9624
10216
|
:options,
|
|
9625
|
-
:default_option_ref_id
|
|
10217
|
+
:default_option_ref_id,
|
|
10218
|
+
:answer_source)
|
|
9626
10219
|
SENSITIVE = []
|
|
9627
10220
|
include Aws::Structure
|
|
9628
10221
|
end
|
|
@@ -9672,13 +10265,18 @@ module Aws::Connect
|
|
|
9672
10265
|
# answer is provided, the overall evaluation gets a score of 0.
|
|
9673
10266
|
# @return [Boolean]
|
|
9674
10267
|
#
|
|
10268
|
+
# @!attribute [rw] automatic_fail_configuration
|
|
10269
|
+
# Whether automatic fail is configured on a single select question.
|
|
10270
|
+
# @return [Types::AutomaticFailConfiguration]
|
|
10271
|
+
#
|
|
9675
10272
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormSingleSelectQuestionOption AWS API Documentation
|
|
9676
10273
|
#
|
|
9677
10274
|
class EvaluationFormSingleSelectQuestionOption < Struct.new(
|
|
9678
10275
|
:ref_id,
|
|
9679
10276
|
:text,
|
|
9680
10277
|
:score,
|
|
9681
|
-
:automatic_fail
|
|
10278
|
+
:automatic_fail,
|
|
10279
|
+
:automatic_fail_configuration)
|
|
9682
10280
|
SENSITIVE = []
|
|
9683
10281
|
include Aws::Structure
|
|
9684
10282
|
end
|
|
@@ -9774,10 +10372,399 @@ module Aws::Connect
|
|
|
9774
10372
|
include Aws::Structure
|
|
9775
10373
|
end
|
|
9776
10374
|
|
|
10375
|
+
# Information about the automation configuration in text questions.
|
|
10376
|
+
#
|
|
10377
|
+
# @!attribute [rw] answer_source
|
|
10378
|
+
# Automation answer source.
|
|
10379
|
+
# @return [Types::EvaluationFormQuestionAutomationAnswerSource]
|
|
10380
|
+
#
|
|
10381
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormTextQuestionAutomation AWS API Documentation
|
|
10382
|
+
#
|
|
10383
|
+
class EvaluationFormTextQuestionAutomation < Struct.new(
|
|
10384
|
+
:answer_source)
|
|
10385
|
+
SENSITIVE = []
|
|
10386
|
+
include Aws::Structure
|
|
10387
|
+
end
|
|
10388
|
+
|
|
10389
|
+
# Information about properties for a text question in an evaluation
|
|
10390
|
+
# form.
|
|
10391
|
+
#
|
|
10392
|
+
# @!attribute [rw] automation
|
|
10393
|
+
# The automation properties of the text question.
|
|
10394
|
+
# @return [Types::EvaluationFormTextQuestionAutomation]
|
|
10395
|
+
#
|
|
10396
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormTextQuestionProperties AWS API Documentation
|
|
10397
|
+
#
|
|
10398
|
+
class EvaluationFormTextQuestionProperties < Struct.new(
|
|
10399
|
+
:automation)
|
|
10400
|
+
SENSITIVE = []
|
|
10401
|
+
include Aws::Structure
|
|
10402
|
+
end
|
|
10403
|
+
|
|
9777
10404
|
# Summary information about an evaluation form.
|
|
9778
10405
|
#
|
|
9779
|
-
# @!attribute [rw] evaluation_form_arn
|
|
9780
|
-
# The Amazon Resource Name (ARN) for the evaluation form resource.
|
|
10406
|
+
# @!attribute [rw] evaluation_form_arn
|
|
10407
|
+
# The Amazon Resource Name (ARN) for the evaluation form resource.
|
|
10408
|
+
# @return [String]
|
|
10409
|
+
#
|
|
10410
|
+
# @!attribute [rw] evaluation_form_id
|
|
10411
|
+
# The unique identifier for the evaluation form.
|
|
10412
|
+
# @return [String]
|
|
10413
|
+
#
|
|
10414
|
+
# @!attribute [rw] evaluation_form_version
|
|
10415
|
+
# A version of the evaluation form.
|
|
10416
|
+
# @return [Integer]
|
|
10417
|
+
#
|
|
10418
|
+
# @!attribute [rw] locked
|
|
10419
|
+
# The flag indicating whether the evaluation form is locked for
|
|
10420
|
+
# changes.
|
|
10421
|
+
# @return [Boolean]
|
|
10422
|
+
#
|
|
10423
|
+
# @!attribute [rw] status
|
|
10424
|
+
# The status of the evaluation form.
|
|
10425
|
+
# @return [String]
|
|
10426
|
+
#
|
|
10427
|
+
# @!attribute [rw] created_time
|
|
10428
|
+
# The timestamp for when the evaluation form was created.
|
|
10429
|
+
# @return [Time]
|
|
10430
|
+
#
|
|
10431
|
+
# @!attribute [rw] created_by
|
|
10432
|
+
# The Amazon Resource Name (ARN) of the user who created the
|
|
10433
|
+
# evaluation form.
|
|
10434
|
+
# @return [String]
|
|
10435
|
+
#
|
|
10436
|
+
# @!attribute [rw] last_modified_time
|
|
10437
|
+
# The timestamp for when the evaluation form was last updated.
|
|
10438
|
+
# @return [Time]
|
|
10439
|
+
#
|
|
10440
|
+
# @!attribute [rw] last_modified_by
|
|
10441
|
+
# The Amazon Resource Name (ARN) of the user who last updated the
|
|
10442
|
+
# evaluation form.
|
|
10443
|
+
# @return [String]
|
|
10444
|
+
#
|
|
10445
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormVersionSummary AWS API Documentation
|
|
10446
|
+
#
|
|
10447
|
+
class EvaluationFormVersionSummary < Struct.new(
|
|
10448
|
+
:evaluation_form_arn,
|
|
10449
|
+
:evaluation_form_id,
|
|
10450
|
+
:evaluation_form_version,
|
|
10451
|
+
:locked,
|
|
10452
|
+
:status,
|
|
10453
|
+
:created_time,
|
|
10454
|
+
:created_by,
|
|
10455
|
+
:last_modified_time,
|
|
10456
|
+
:last_modified_by)
|
|
10457
|
+
SENSITIVE = []
|
|
10458
|
+
include Aws::Structure
|
|
10459
|
+
end
|
|
10460
|
+
|
|
10461
|
+
# An analysis for a generative AI answer to the question.
|
|
10462
|
+
#
|
|
10463
|
+
# @!attribute [rw] justification
|
|
10464
|
+
# Generative AI automation answer justification.
|
|
10465
|
+
# @return [String]
|
|
10466
|
+
#
|
|
10467
|
+
# @!attribute [rw] points_of_interest
|
|
10468
|
+
# Generative AI automation answer analysis points of interest.
|
|
10469
|
+
# @return [Array<Types::EvaluationTranscriptPointOfInterest>]
|
|
10470
|
+
#
|
|
10471
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationGenAIAnswerAnalysisDetails AWS API Documentation
|
|
10472
|
+
#
|
|
10473
|
+
class EvaluationGenAIAnswerAnalysisDetails < Struct.new(
|
|
10474
|
+
:justification,
|
|
10475
|
+
:points_of_interest)
|
|
10476
|
+
SENSITIVE = []
|
|
10477
|
+
include Aws::Structure
|
|
10478
|
+
end
|
|
10479
|
+
|
|
10480
|
+
# Metadata information about a contact evaluation.
|
|
10481
|
+
#
|
|
10482
|
+
# @!attribute [rw] contact_id
|
|
10483
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
|
10484
|
+
# @return [String]
|
|
10485
|
+
#
|
|
10486
|
+
# @!attribute [rw] evaluator_arn
|
|
10487
|
+
# The Amazon Resource Name (ARN) of the user who last updated the
|
|
10488
|
+
# evaluation.
|
|
10489
|
+
# @return [String]
|
|
10490
|
+
#
|
|
10491
|
+
# @!attribute [rw] contact_agent_id
|
|
10492
|
+
# The identifier of the agent who performed the contact.
|
|
10493
|
+
# @return [String]
|
|
10494
|
+
#
|
|
10495
|
+
# @!attribute [rw] calibration_session_id
|
|
10496
|
+
# The calibration session ID that this evaluation belongs to.
|
|
10497
|
+
# @return [String]
|
|
10498
|
+
#
|
|
10499
|
+
# @!attribute [rw] score
|
|
10500
|
+
# The overall score of the contact evaluation.
|
|
10501
|
+
# @return [Types::EvaluationScore]
|
|
10502
|
+
#
|
|
10503
|
+
# @!attribute [rw] auto_evaluation
|
|
10504
|
+
# Information related to automated evaluation.
|
|
10505
|
+
# @return [Types::AutoEvaluationDetails]
|
|
10506
|
+
#
|
|
10507
|
+
# @!attribute [rw] acknowledgement
|
|
10508
|
+
# Information related to evaluation acknowledgement.
|
|
10509
|
+
# @return [Types::EvaluationAcknowledgement]
|
|
10510
|
+
#
|
|
10511
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationMetadata AWS API Documentation
|
|
10512
|
+
#
|
|
10513
|
+
class EvaluationMetadata < Struct.new(
|
|
10514
|
+
:contact_id,
|
|
10515
|
+
:evaluator_arn,
|
|
10516
|
+
:contact_agent_id,
|
|
10517
|
+
:calibration_session_id,
|
|
10518
|
+
:score,
|
|
10519
|
+
:auto_evaluation,
|
|
10520
|
+
:acknowledgement)
|
|
10521
|
+
SENSITIVE = []
|
|
10522
|
+
include Aws::Structure
|
|
10523
|
+
end
|
|
10524
|
+
|
|
10525
|
+
# Information about notes for a contact evaluation.
|
|
10526
|
+
#
|
|
10527
|
+
# @!attribute [rw] value
|
|
10528
|
+
# The note for an item (section or question) in a contact evaluation.
|
|
10529
|
+
#
|
|
10530
|
+
# <note markdown="1"> Even though a note in an evaluation can have up to 3072 chars, there
|
|
10531
|
+
# is also a limit on the total number of chars for all the notes in
|
|
10532
|
+
# the evaluation combined. Assuming there are N questions in the
|
|
10533
|
+
# evaluation being submitted, then the max char limit for all notes
|
|
10534
|
+
# combined is N x 1024.
|
|
10535
|
+
#
|
|
10536
|
+
# </note>
|
|
10537
|
+
# @return [String]
|
|
10538
|
+
#
|
|
10539
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationNote AWS API Documentation
|
|
10540
|
+
#
|
|
10541
|
+
class EvaluationNote < Struct.new(
|
|
10542
|
+
:value)
|
|
10543
|
+
SENSITIVE = []
|
|
10544
|
+
include Aws::Structure
|
|
10545
|
+
end
|
|
10546
|
+
|
|
10547
|
+
# Detailed analysis results of the automated answer to the evaluation
|
|
10548
|
+
# question.
|
|
10549
|
+
#
|
|
10550
|
+
# @note EvaluationQuestionAnswerAnalysisDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EvaluationQuestionAnswerAnalysisDetails corresponding to the set member.
|
|
10551
|
+
#
|
|
10552
|
+
# @!attribute [rw] gen_ai
|
|
10553
|
+
# Analysis results from the generative AI automation for the question.
|
|
10554
|
+
# @return [Types::EvaluationGenAIAnswerAnalysisDetails]
|
|
10555
|
+
#
|
|
10556
|
+
# @!attribute [rw] contact_lens
|
|
10557
|
+
# Analysis results from the Contact Lens automation for the question.
|
|
10558
|
+
# @return [Types::EvaluationContactLensAnswerAnalysisDetails]
|
|
10559
|
+
#
|
|
10560
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationQuestionAnswerAnalysisDetails AWS API Documentation
|
|
10561
|
+
#
|
|
10562
|
+
class EvaluationQuestionAnswerAnalysisDetails < Struct.new(
|
|
10563
|
+
:gen_ai,
|
|
10564
|
+
:contact_lens,
|
|
10565
|
+
:unknown)
|
|
10566
|
+
SENSITIVE = []
|
|
10567
|
+
include Aws::Structure
|
|
10568
|
+
include Aws::Structure::Union
|
|
10569
|
+
|
|
10570
|
+
class GenAi < EvaluationQuestionAnswerAnalysisDetails; end
|
|
10571
|
+
class ContactLens < EvaluationQuestionAnswerAnalysisDetails; end
|
|
10572
|
+
class Unknown < EvaluationQuestionAnswerAnalysisDetails; end
|
|
10573
|
+
end
|
|
10574
|
+
|
|
10575
|
+
# Details of the input data used for automated question processing.
|
|
10576
|
+
#
|
|
10577
|
+
# @!attribute [rw] transcript_type
|
|
10578
|
+
# Transcript type.
|
|
10579
|
+
# @return [String]
|
|
10580
|
+
#
|
|
10581
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationQuestionInputDetails AWS API Documentation
|
|
10582
|
+
#
|
|
10583
|
+
class EvaluationQuestionInputDetails < Struct.new(
|
|
10584
|
+
:transcript_type)
|
|
10585
|
+
SENSITIVE = []
|
|
10586
|
+
include Aws::Structure
|
|
10587
|
+
end
|
|
10588
|
+
|
|
10589
|
+
# Information about scores of a contact evaluation item (section or
|
|
10590
|
+
# question).
|
|
10591
|
+
#
|
|
10592
|
+
# @!attribute [rw] percentage
|
|
10593
|
+
# The score percentage for an item in a contact evaluation.
|
|
10594
|
+
# @return [Float]
|
|
10595
|
+
#
|
|
10596
|
+
# @!attribute [rw] not_applicable
|
|
10597
|
+
# The flag to mark the item as not applicable for scoring.
|
|
10598
|
+
# @return [Boolean]
|
|
10599
|
+
#
|
|
10600
|
+
# @!attribute [rw] automatic_fail
|
|
10601
|
+
# The flag that marks the item as automatic fail. If the item or a
|
|
10602
|
+
# child item gets an automatic fail answer, this flag will be true.
|
|
10603
|
+
# @return [Boolean]
|
|
10604
|
+
#
|
|
10605
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationScore AWS API Documentation
|
|
10606
|
+
#
|
|
10607
|
+
class EvaluationScore < Struct.new(
|
|
10608
|
+
:percentage,
|
|
10609
|
+
:not_applicable,
|
|
10610
|
+
:automatic_fail)
|
|
10611
|
+
SENSITIVE = []
|
|
10612
|
+
include Aws::Structure
|
|
10613
|
+
end
|
|
10614
|
+
|
|
10615
|
+
# The search criteria to be used to return evaluations.
|
|
10616
|
+
#
|
|
10617
|
+
# @!attribute [rw] or_conditions
|
|
10618
|
+
# A list of conditions which would be applied together with an OR
|
|
10619
|
+
# condition.
|
|
10620
|
+
# @return [Array<Types::EvaluationSearchCriteria>]
|
|
10621
|
+
#
|
|
10622
|
+
# @!attribute [rw] and_conditions
|
|
10623
|
+
# A list of conditions which would be applied together with an AND
|
|
10624
|
+
# condition.
|
|
10625
|
+
# @return [Array<Types::EvaluationSearchCriteria>]
|
|
10626
|
+
#
|
|
10627
|
+
# @!attribute [rw] string_condition
|
|
10628
|
+
# A leaf node condition which can be used to specify a string
|
|
10629
|
+
# condition.
|
|
10630
|
+
# @return [Types::StringCondition]
|
|
10631
|
+
#
|
|
10632
|
+
# @!attribute [rw] number_condition
|
|
10633
|
+
# A leaf node condition which can be used to specify a numeric
|
|
10634
|
+
# condition.
|
|
10635
|
+
#
|
|
10636
|
+
# <note markdown="1"> The currently supported value for `FieldName` is `limit`.
|
|
10637
|
+
#
|
|
10638
|
+
# </note>
|
|
10639
|
+
# @return [Types::NumberCondition]
|
|
10640
|
+
#
|
|
10641
|
+
# @!attribute [rw] boolean_condition
|
|
10642
|
+
# The boolean condition search criteria for searching evaluations.
|
|
10643
|
+
# @return [Types::BooleanCondition]
|
|
10644
|
+
#
|
|
10645
|
+
# @!attribute [rw] date_time_condition
|
|
10646
|
+
# The datetime condition search criteria for searching evaluations.
|
|
10647
|
+
# @return [Types::DateTimeCondition]
|
|
10648
|
+
#
|
|
10649
|
+
# @!attribute [rw] decimal_condition
|
|
10650
|
+
# The decimal condition search criteria for searching evaluations.
|
|
10651
|
+
# @return [Types::DecimalCondition]
|
|
10652
|
+
#
|
|
10653
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationSearchCriteria AWS API Documentation
|
|
10654
|
+
#
|
|
10655
|
+
class EvaluationSearchCriteria < Struct.new(
|
|
10656
|
+
:or_conditions,
|
|
10657
|
+
:and_conditions,
|
|
10658
|
+
:string_condition,
|
|
10659
|
+
:number_condition,
|
|
10660
|
+
:boolean_condition,
|
|
10661
|
+
:date_time_condition,
|
|
10662
|
+
:decimal_condition)
|
|
10663
|
+
SENSITIVE = []
|
|
10664
|
+
include Aws::Structure
|
|
10665
|
+
end
|
|
10666
|
+
|
|
10667
|
+
# Filters to be applied to search results.
|
|
10668
|
+
#
|
|
10669
|
+
# @!attribute [rw] attribute_filter
|
|
10670
|
+
# An object that can be used to specify Tag conditions inside the
|
|
10671
|
+
# `SearchFilter`. This accepts an `OR` or `AND` (List of List) input
|
|
10672
|
+
# where:
|
|
10673
|
+
#
|
|
10674
|
+
# * The top level list specifies conditions that need to be applied
|
|
10675
|
+
# with `OR` operator.
|
|
10676
|
+
#
|
|
10677
|
+
# * The inner list specifies conditions that need to be applied with
|
|
10678
|
+
# `AND` operator.
|
|
10679
|
+
# @return [Types::ControlPlaneAttributeFilter]
|
|
10680
|
+
#
|
|
10681
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationSearchFilter AWS API Documentation
|
|
10682
|
+
#
|
|
10683
|
+
class EvaluationSearchFilter < Struct.new(
|
|
10684
|
+
:attribute_filter)
|
|
10685
|
+
SENSITIVE = []
|
|
10686
|
+
include Aws::Structure
|
|
10687
|
+
end
|
|
10688
|
+
|
|
10689
|
+
# Metadata information about an evaluation search.
|
|
10690
|
+
#
|
|
10691
|
+
# @!attribute [rw] contact_id
|
|
10692
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
|
10693
|
+
# @return [String]
|
|
10694
|
+
#
|
|
10695
|
+
# @!attribute [rw] evaluator_arn
|
|
10696
|
+
# The Amazon Resource Name (ARN) of the person who evaluated the
|
|
10697
|
+
# contact.
|
|
10698
|
+
# @return [String]
|
|
10699
|
+
#
|
|
10700
|
+
# @!attribute [rw] contact_agent_id
|
|
10701
|
+
# The unique ID of the agent who handled the contact.
|
|
10702
|
+
# @return [String]
|
|
10703
|
+
#
|
|
10704
|
+
# @!attribute [rw] calibration_session_id
|
|
10705
|
+
# The calibration session ID that this evaluation belongs to.
|
|
10706
|
+
# @return [String]
|
|
10707
|
+
#
|
|
10708
|
+
# @!attribute [rw] score_percentage
|
|
10709
|
+
# The total evaluation score expressed as a percentage.
|
|
10710
|
+
# @return [Float]
|
|
10711
|
+
#
|
|
10712
|
+
# @!attribute [rw] score_automatic_fail
|
|
10713
|
+
# The flag that marks the item as automatic fail. If the item or a
|
|
10714
|
+
# child item gets an automatic fail answer, this flag is true.
|
|
10715
|
+
# @return [Boolean]
|
|
10716
|
+
#
|
|
10717
|
+
# @!attribute [rw] score_not_applicable
|
|
10718
|
+
# The flag to mark the item as not applicable for scoring.
|
|
10719
|
+
# @return [Boolean]
|
|
10720
|
+
#
|
|
10721
|
+
# @!attribute [rw] auto_evaluation_enabled
|
|
10722
|
+
# Whether auto-evaluation is enabled.
|
|
10723
|
+
# @return [Boolean]
|
|
10724
|
+
#
|
|
10725
|
+
# @!attribute [rw] auto_evaluation_status
|
|
10726
|
+
# The status of the contact auto evaluation.
|
|
10727
|
+
# @return [String]
|
|
10728
|
+
#
|
|
10729
|
+
# @!attribute [rw] acknowledged_time
|
|
10730
|
+
# When the evaluation was acknowledged by the agent.
|
|
10731
|
+
# @return [Time]
|
|
10732
|
+
#
|
|
10733
|
+
# @!attribute [rw] acknowledged_by
|
|
10734
|
+
# The agent who acknowledged the evaluation.
|
|
10735
|
+
# @return [String]
|
|
10736
|
+
#
|
|
10737
|
+
# @!attribute [rw] acknowledger_comment
|
|
10738
|
+
# The comment from the agent when they acknowledged the evaluation.
|
|
10739
|
+
# @return [String]
|
|
10740
|
+
#
|
|
10741
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationSearchMetadata AWS API Documentation
|
|
10742
|
+
#
|
|
10743
|
+
class EvaluationSearchMetadata < Struct.new(
|
|
10744
|
+
:contact_id,
|
|
10745
|
+
:evaluator_arn,
|
|
10746
|
+
:contact_agent_id,
|
|
10747
|
+
:calibration_session_id,
|
|
10748
|
+
:score_percentage,
|
|
10749
|
+
:score_automatic_fail,
|
|
10750
|
+
:score_not_applicable,
|
|
10751
|
+
:auto_evaluation_enabled,
|
|
10752
|
+
:auto_evaluation_status,
|
|
10753
|
+
:acknowledged_time,
|
|
10754
|
+
:acknowledged_by,
|
|
10755
|
+
:acknowledger_comment)
|
|
10756
|
+
SENSITIVE = []
|
|
10757
|
+
include Aws::Structure
|
|
10758
|
+
end
|
|
10759
|
+
|
|
10760
|
+
# Summary of evaluation obtained from the search operation.
|
|
10761
|
+
#
|
|
10762
|
+
# @!attribute [rw] evaluation_id
|
|
10763
|
+
# A unique identifier for the contact evaluation.
|
|
10764
|
+
# @return [String]
|
|
10765
|
+
#
|
|
10766
|
+
# @!attribute [rw] evaluation_arn
|
|
10767
|
+
# The Amazon Resource Name (ARN) for the contact evaluation resource.
|
|
9781
10768
|
# @return [String]
|
|
9782
10769
|
#
|
|
9783
10770
|
# @!attribute [rw] evaluation_form_id
|
|
@@ -9788,123 +10775,95 @@ module Aws::Connect
|
|
|
9788
10775
|
# A version of the evaluation form.
|
|
9789
10776
|
# @return [Integer]
|
|
9790
10777
|
#
|
|
9791
|
-
# @!attribute [rw]
|
|
9792
|
-
#
|
|
9793
|
-
#
|
|
9794
|
-
# @return [Boolean]
|
|
10778
|
+
# @!attribute [rw] metadata
|
|
10779
|
+
# Summary information about the evaluation search.
|
|
10780
|
+
# @return [Types::EvaluationSearchMetadata]
|
|
9795
10781
|
#
|
|
9796
10782
|
# @!attribute [rw] status
|
|
9797
|
-
# The status of the evaluation
|
|
10783
|
+
# The status of the evaluation.
|
|
10784
|
+
# @return [String]
|
|
10785
|
+
#
|
|
10786
|
+
# @!attribute [rw] evaluation_type
|
|
10787
|
+
# Type of the evaluation.
|
|
9798
10788
|
# @return [String]
|
|
9799
10789
|
#
|
|
9800
10790
|
# @!attribute [rw] created_time
|
|
9801
|
-
# The
|
|
10791
|
+
# The date and time when the evaluation was created, in UTC time.
|
|
9802
10792
|
# @return [Time]
|
|
9803
10793
|
#
|
|
9804
|
-
# @!attribute [rw] created_by
|
|
9805
|
-
# The Amazon Resource Name (ARN) of the user who created the
|
|
9806
|
-
# evaluation form.
|
|
9807
|
-
# @return [String]
|
|
9808
|
-
#
|
|
9809
10794
|
# @!attribute [rw] last_modified_time
|
|
9810
|
-
# The
|
|
10795
|
+
# The date and time when the evaluation was modified last time, in UTC
|
|
10796
|
+
# time.
|
|
9811
10797
|
# @return [Time]
|
|
9812
10798
|
#
|
|
9813
|
-
# @!attribute [rw]
|
|
9814
|
-
# The
|
|
9815
|
-
#
|
|
9816
|
-
#
|
|
10799
|
+
# @!attribute [rw] tags
|
|
10800
|
+
# The tags used to organize, track, or control access for this
|
|
10801
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
|
10802
|
+
# "key2":"value2"} }.
|
|
10803
|
+
# @return [Hash<String,String>]
|
|
9817
10804
|
#
|
|
9818
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/
|
|
10805
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationSearchSummary AWS API Documentation
|
|
9819
10806
|
#
|
|
9820
|
-
class
|
|
9821
|
-
:
|
|
10807
|
+
class EvaluationSearchSummary < Struct.new(
|
|
10808
|
+
:evaluation_id,
|
|
10809
|
+
:evaluation_arn,
|
|
9822
10810
|
:evaluation_form_id,
|
|
9823
10811
|
:evaluation_form_version,
|
|
9824
|
-
:
|
|
10812
|
+
:metadata,
|
|
9825
10813
|
:status,
|
|
10814
|
+
:evaluation_type,
|
|
9826
10815
|
:created_time,
|
|
9827
|
-
:created_by,
|
|
9828
10816
|
:last_modified_time,
|
|
9829
|
-
:
|
|
10817
|
+
:tags)
|
|
9830
10818
|
SENSITIVE = []
|
|
9831
10819
|
include Aws::Structure
|
|
9832
10820
|
end
|
|
9833
10821
|
|
|
9834
|
-
#
|
|
9835
|
-
#
|
|
9836
|
-
# @!attribute [rw] contact_id
|
|
9837
|
-
# The identifier of the contact in this instance of Amazon Connect.
|
|
9838
|
-
# @return [String]
|
|
10822
|
+
# The information about the suggested answer for the question.
|
|
9839
10823
|
#
|
|
9840
|
-
# @!attribute [rw]
|
|
9841
|
-
#
|
|
9842
|
-
#
|
|
9843
|
-
# @return [
|
|
10824
|
+
# @!attribute [rw] value
|
|
10825
|
+
# Information about answer data for a contact evaluation. Answer data
|
|
10826
|
+
# must be either string, numeric, or not applicable.
|
|
10827
|
+
# @return [Types::EvaluationAnswerData]
|
|
9844
10828
|
#
|
|
9845
|
-
# @!attribute [rw]
|
|
9846
|
-
# The
|
|
10829
|
+
# @!attribute [rw] status
|
|
10830
|
+
# The status of the suggested answer. D
|
|
9847
10831
|
# @return [String]
|
|
9848
10832
|
#
|
|
9849
|
-
# @!attribute [rw]
|
|
9850
|
-
#
|
|
9851
|
-
# @return [Types::
|
|
9852
|
-
#
|
|
9853
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationMetadata AWS API Documentation
|
|
9854
|
-
#
|
|
9855
|
-
class EvaluationMetadata < Struct.new(
|
|
9856
|
-
:contact_id,
|
|
9857
|
-
:evaluator_arn,
|
|
9858
|
-
:contact_agent_id,
|
|
9859
|
-
:score)
|
|
9860
|
-
SENSITIVE = []
|
|
9861
|
-
include Aws::Structure
|
|
9862
|
-
end
|
|
9863
|
-
|
|
9864
|
-
# Information about notes for a contact evaluation.
|
|
9865
|
-
#
|
|
9866
|
-
# @!attribute [rw] value
|
|
9867
|
-
# The note for an item (section or question) in a contact evaluation.
|
|
9868
|
-
#
|
|
9869
|
-
# <note markdown="1"> Even though a note in an evaluation can have up to 3072 chars, there
|
|
9870
|
-
# is also a limit on the total number of chars for all the notes in
|
|
9871
|
-
# the evaluation combined. Assuming there are N questions in the
|
|
9872
|
-
# evaluation being submitted, then the max char limit for all notes
|
|
9873
|
-
# combined is N x 1024.
|
|
10833
|
+
# @!attribute [rw] input
|
|
10834
|
+
# Details about the input used to question automation.
|
|
10835
|
+
# @return [Types::EvaluationQuestionInputDetails]
|
|
9874
10836
|
#
|
|
9875
|
-
#
|
|
10837
|
+
# @!attribute [rw] analysis_type
|
|
10838
|
+
# Type of analysis used to provide suggested answer.
|
|
9876
10839
|
# @return [String]
|
|
9877
10840
|
#
|
|
9878
|
-
#
|
|
10841
|
+
# @!attribute [rw] analysis_details
|
|
10842
|
+
# Detailed analysis results.
|
|
10843
|
+
# @return [Types::EvaluationQuestionAnswerAnalysisDetails]
|
|
9879
10844
|
#
|
|
9880
|
-
|
|
9881
|
-
|
|
10845
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationSuggestedAnswer AWS API Documentation
|
|
10846
|
+
#
|
|
10847
|
+
class EvaluationSuggestedAnswer < Struct.new(
|
|
10848
|
+
:value,
|
|
10849
|
+
:status,
|
|
10850
|
+
:input,
|
|
10851
|
+
:analysis_type,
|
|
10852
|
+
:analysis_details)
|
|
9882
10853
|
SENSITIVE = []
|
|
9883
10854
|
include Aws::Structure
|
|
9884
10855
|
end
|
|
9885
10856
|
|
|
9886
|
-
#
|
|
9887
|
-
# question).
|
|
9888
|
-
#
|
|
9889
|
-
# @!attribute [rw] percentage
|
|
9890
|
-
# The score percentage for an item in a contact evaluation.
|
|
9891
|
-
# @return [Float]
|
|
9892
|
-
#
|
|
9893
|
-
# @!attribute [rw] not_applicable
|
|
9894
|
-
# The flag to mark the item as not applicable for scoring.
|
|
9895
|
-
# @return [Boolean]
|
|
10857
|
+
# The milliseconds offset for transcript reference in suggested answer.
|
|
9896
10858
|
#
|
|
9897
|
-
# @!attribute [rw]
|
|
9898
|
-
#
|
|
9899
|
-
#
|
|
9900
|
-
# @return [Boolean]
|
|
10859
|
+
# @!attribute [rw] begin_offset_millis
|
|
10860
|
+
# Offset in milliseconds from the beginning of the transcript.
|
|
10861
|
+
# @return [Integer]
|
|
9901
10862
|
#
|
|
9902
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/
|
|
10863
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationSuggestedAnswerTranscriptMillisecondOffsets AWS API Documentation
|
|
9903
10864
|
#
|
|
9904
|
-
class
|
|
9905
|
-
:
|
|
9906
|
-
:not_applicable,
|
|
9907
|
-
:automatic_fail)
|
|
10865
|
+
class EvaluationSuggestedAnswerTranscriptMillisecondOffsets < Struct.new(
|
|
10866
|
+
:begin_offset_millis)
|
|
9908
10867
|
SENSITIVE = []
|
|
9909
10868
|
include Aws::Structure
|
|
9910
10869
|
end
|
|
@@ -9927,10 +10886,22 @@ module Aws::Connect
|
|
|
9927
10886
|
# The unique identifier for the evaluation form.
|
|
9928
10887
|
# @return [String]
|
|
9929
10888
|
#
|
|
10889
|
+
# @!attribute [rw] calibration_session_id
|
|
10890
|
+
# The calibration session ID that this evaluation belongs to.
|
|
10891
|
+
# @return [String]
|
|
10892
|
+
#
|
|
9930
10893
|
# @!attribute [rw] status
|
|
9931
10894
|
# The status of the contact evaluation.
|
|
9932
10895
|
# @return [String]
|
|
9933
10896
|
#
|
|
10897
|
+
# @!attribute [rw] auto_evaluation_enabled
|
|
10898
|
+
# Whether automated evaluation is enabled.
|
|
10899
|
+
# @return [Boolean]
|
|
10900
|
+
#
|
|
10901
|
+
# @!attribute [rw] auto_evaluation_status
|
|
10902
|
+
# The status of the contact auto evaluation.
|
|
10903
|
+
# @return [String]
|
|
10904
|
+
#
|
|
9934
10905
|
# @!attribute [rw] evaluator_arn
|
|
9935
10906
|
# The Amazon Resource Name (ARN) of the user who last updated the
|
|
9936
10907
|
# evaluation.
|
|
@@ -9940,6 +10911,14 @@ module Aws::Connect
|
|
|
9940
10911
|
# The overall score of the contact evaluation.
|
|
9941
10912
|
# @return [Types::EvaluationScore]
|
|
9942
10913
|
#
|
|
10914
|
+
# @!attribute [rw] acknowledgement
|
|
10915
|
+
# Information related to evaluation acknowledgement.
|
|
10916
|
+
# @return [Types::EvaluationAcknowledgementSummary]
|
|
10917
|
+
#
|
|
10918
|
+
# @!attribute [rw] evaluation_type
|
|
10919
|
+
# Type of the evaluation.
|
|
10920
|
+
# @return [String]
|
|
10921
|
+
#
|
|
9943
10922
|
# @!attribute [rw] created_time
|
|
9944
10923
|
# The timestamp for when the evaluation was created.
|
|
9945
10924
|
# @return [Time]
|
|
@@ -9955,15 +10934,61 @@ module Aws::Connect
|
|
|
9955
10934
|
:evaluation_arn,
|
|
9956
10935
|
:evaluation_form_title,
|
|
9957
10936
|
:evaluation_form_id,
|
|
10937
|
+
:calibration_session_id,
|
|
9958
10938
|
:status,
|
|
10939
|
+
:auto_evaluation_enabled,
|
|
10940
|
+
:auto_evaluation_status,
|
|
9959
10941
|
:evaluator_arn,
|
|
9960
10942
|
:score,
|
|
10943
|
+
:acknowledgement,
|
|
10944
|
+
:evaluation_type,
|
|
9961
10945
|
:created_time,
|
|
9962
10946
|
:last_modified_time)
|
|
9963
10947
|
SENSITIVE = []
|
|
9964
10948
|
include Aws::Structure
|
|
9965
10949
|
end
|
|
9966
10950
|
|
|
10951
|
+
# Information about the point of interest in transcript provided to
|
|
10952
|
+
# evaluation.
|
|
10953
|
+
#
|
|
10954
|
+
# @!attribute [rw] millisecond_offsets
|
|
10955
|
+
# Offset in milliseconds from the beginning of transcript.
|
|
10956
|
+
# @return [Types::EvaluationSuggestedAnswerTranscriptMillisecondOffsets]
|
|
10957
|
+
#
|
|
10958
|
+
# @!attribute [rw] transcript_segment
|
|
10959
|
+
# Segment of transcript.
|
|
10960
|
+
# @return [String]
|
|
10961
|
+
#
|
|
10962
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationTranscriptPointOfInterest AWS API Documentation
|
|
10963
|
+
#
|
|
10964
|
+
class EvaluationTranscriptPointOfInterest < Struct.new(
|
|
10965
|
+
:millisecond_offsets,
|
|
10966
|
+
:transcript_segment)
|
|
10967
|
+
SENSITIVE = []
|
|
10968
|
+
include Aws::Structure
|
|
10969
|
+
end
|
|
10970
|
+
|
|
10971
|
+
# Represents the entity that performed the action on the evaluation.
|
|
10972
|
+
#
|
|
10973
|
+
# @note EvaluatorUserUnion is a union - when making an API calls you must set exactly one of the members.
|
|
10974
|
+
#
|
|
10975
|
+
# @!attribute [rw] connect_user_arn
|
|
10976
|
+
# Represents the Amazon Connect ARN of the user.
|
|
10977
|
+
# @return [String]
|
|
10978
|
+
#
|
|
10979
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluatorUserUnion AWS API Documentation
|
|
10980
|
+
#
|
|
10981
|
+
class EvaluatorUserUnion < Struct.new(
|
|
10982
|
+
:connect_user_arn,
|
|
10983
|
+
:unknown)
|
|
10984
|
+
SENSITIVE = []
|
|
10985
|
+
include Aws::Structure
|
|
10986
|
+
include Aws::Structure::Union
|
|
10987
|
+
|
|
10988
|
+
class ConnectUserArn < EvaluatorUserUnion; end
|
|
10989
|
+
class Unknown < EvaluatorUserUnion; end
|
|
10990
|
+
end
|
|
10991
|
+
|
|
9967
10992
|
# The EventBridge action definition.
|
|
9968
10993
|
#
|
|
9969
10994
|
# @!attribute [rw] name
|
|
@@ -21549,6 +22574,69 @@ module Aws::Connect
|
|
|
21549
22574
|
include Aws::Structure
|
|
21550
22575
|
end
|
|
21551
22576
|
|
|
22577
|
+
# @!attribute [rw] instance_id
|
|
22578
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
22579
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
22580
|
+
#
|
|
22581
|
+
#
|
|
22582
|
+
#
|
|
22583
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
22584
|
+
# @return [String]
|
|
22585
|
+
#
|
|
22586
|
+
# @!attribute [rw] next_token
|
|
22587
|
+
# The token for the next set of results. Use the value returned in the
|
|
22588
|
+
# previous response in the next request to retrieve the next set of
|
|
22589
|
+
# results.
|
|
22590
|
+
# @return [String]
|
|
22591
|
+
#
|
|
22592
|
+
# @!attribute [rw] max_results
|
|
22593
|
+
# The maximum number of results to return per page.
|
|
22594
|
+
# @return [Integer]
|
|
22595
|
+
#
|
|
22596
|
+
# @!attribute [rw] search_criteria
|
|
22597
|
+
# The search criteria to be used to return contact evaluations.
|
|
22598
|
+
# @return [Types::EvaluationSearchCriteria]
|
|
22599
|
+
#
|
|
22600
|
+
# @!attribute [rw] search_filter
|
|
22601
|
+
# Filters to be applied to search results.
|
|
22602
|
+
# @return [Types::EvaluationSearchFilter]
|
|
22603
|
+
#
|
|
22604
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactEvaluationsRequest AWS API Documentation
|
|
22605
|
+
#
|
|
22606
|
+
class SearchContactEvaluationsRequest < Struct.new(
|
|
22607
|
+
:instance_id,
|
|
22608
|
+
:next_token,
|
|
22609
|
+
:max_results,
|
|
22610
|
+
:search_criteria,
|
|
22611
|
+
:search_filter)
|
|
22612
|
+
SENSITIVE = []
|
|
22613
|
+
include Aws::Structure
|
|
22614
|
+
end
|
|
22615
|
+
|
|
22616
|
+
# @!attribute [rw] evaluation_search_summary_list
|
|
22617
|
+
# Contains information about contact evaluations.
|
|
22618
|
+
# @return [Array<Types::EvaluationSearchSummary>]
|
|
22619
|
+
#
|
|
22620
|
+
# @!attribute [rw] next_token
|
|
22621
|
+
# If there are additional results, this is the token for the next set
|
|
22622
|
+
# of results.
|
|
22623
|
+
# @return [String]
|
|
22624
|
+
#
|
|
22625
|
+
# @!attribute [rw] approximate_total_count
|
|
22626
|
+
# The total number of contact evaluations that matched your search
|
|
22627
|
+
# query.
|
|
22628
|
+
# @return [Integer]
|
|
22629
|
+
#
|
|
22630
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactEvaluationsResponse AWS API Documentation
|
|
22631
|
+
#
|
|
22632
|
+
class SearchContactEvaluationsResponse < Struct.new(
|
|
22633
|
+
:evaluation_search_summary_list,
|
|
22634
|
+
:next_token,
|
|
22635
|
+
:approximate_total_count)
|
|
22636
|
+
SENSITIVE = []
|
|
22637
|
+
include Aws::Structure
|
|
22638
|
+
end
|
|
22639
|
+
|
|
21552
22640
|
# @!attribute [rw] instance_id
|
|
21553
22641
|
# The identifier of the Amazon Connect instance. You can find the
|
|
21554
22642
|
# instance ID in the Amazon Resource Name (ARN) of the instance.
|
|
@@ -21976,6 +23064,68 @@ module Aws::Connect
|
|
|
21976
23064
|
include Aws::Structure
|
|
21977
23065
|
end
|
|
21978
23066
|
|
|
23067
|
+
# @!attribute [rw] instance_id
|
|
23068
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
23069
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
23070
|
+
#
|
|
23071
|
+
#
|
|
23072
|
+
#
|
|
23073
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
23074
|
+
# @return [String]
|
|
23075
|
+
#
|
|
23076
|
+
# @!attribute [rw] next_token
|
|
23077
|
+
# The token for the next set of results. Use the value returned in the
|
|
23078
|
+
# previous response in the next request to retrieve the next set of
|
|
23079
|
+
# results.
|
|
23080
|
+
# @return [String]
|
|
23081
|
+
#
|
|
23082
|
+
# @!attribute [rw] max_results
|
|
23083
|
+
# The maximum number of results to return per page.
|
|
23084
|
+
# @return [Integer]
|
|
23085
|
+
#
|
|
23086
|
+
# @!attribute [rw] search_criteria
|
|
23087
|
+
# The search criteria to be used to return evaluation forms.
|
|
23088
|
+
# @return [Types::EvaluationFormSearchCriteria]
|
|
23089
|
+
#
|
|
23090
|
+
# @!attribute [rw] search_filter
|
|
23091
|
+
# Filters to be applied to search results.
|
|
23092
|
+
# @return [Types::EvaluationFormSearchFilter]
|
|
23093
|
+
#
|
|
23094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchEvaluationFormsRequest AWS API Documentation
|
|
23095
|
+
#
|
|
23096
|
+
class SearchEvaluationFormsRequest < Struct.new(
|
|
23097
|
+
:instance_id,
|
|
23098
|
+
:next_token,
|
|
23099
|
+
:max_results,
|
|
23100
|
+
:search_criteria,
|
|
23101
|
+
:search_filter)
|
|
23102
|
+
SENSITIVE = []
|
|
23103
|
+
include Aws::Structure
|
|
23104
|
+
end
|
|
23105
|
+
|
|
23106
|
+
# @!attribute [rw] evaluation_form_search_summary_list
|
|
23107
|
+
# Information about the returned evaluation forms.
|
|
23108
|
+
# @return [Array<Types::EvaluationFormSearchSummary>]
|
|
23109
|
+
#
|
|
23110
|
+
# @!attribute [rw] next_token
|
|
23111
|
+
# If there are additional results, this is the token for the next set
|
|
23112
|
+
# of results.
|
|
23113
|
+
# @return [String]
|
|
23114
|
+
#
|
|
23115
|
+
# @!attribute [rw] approximate_total_count
|
|
23116
|
+
# The total number of evaluation forms that matched your search query.
|
|
23117
|
+
# @return [Integer]
|
|
23118
|
+
#
|
|
23119
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchEvaluationFormsResponse AWS API Documentation
|
|
23120
|
+
#
|
|
23121
|
+
class SearchEvaluationFormsResponse < Struct.new(
|
|
23122
|
+
:evaluation_form_search_summary_list,
|
|
23123
|
+
:next_token,
|
|
23124
|
+
:approximate_total_count)
|
|
23125
|
+
SENSITIVE = []
|
|
23126
|
+
include Aws::Structure
|
|
23127
|
+
end
|
|
23128
|
+
|
|
21979
23129
|
# @!attribute [rw] instance_id
|
|
21980
23130
|
# The identifier of the Amazon Connect instance.
|
|
21981
23131
|
# @return [String]
|
|
@@ -23803,6 +24953,10 @@ module Aws::Connect
|
|
|
23803
24953
|
# The unique identifier for the evaluation form.
|
|
23804
24954
|
# @return [String]
|
|
23805
24955
|
#
|
|
24956
|
+
# @!attribute [rw] auto_evaluation_configuration
|
|
24957
|
+
# Whether automated evaluations are enabled.
|
|
24958
|
+
# @return [Types::AutoEvaluationConfiguration]
|
|
24959
|
+
#
|
|
23806
24960
|
# @!attribute [rw] client_token
|
|
23807
24961
|
# A unique, case-sensitive identifier that you provide to ensure the
|
|
23808
24962
|
# idempotency of the request. If not provided, the Amazon Web Services
|
|
@@ -23817,13 +24971,21 @@ module Aws::Connect
|
|
|
23817
24971
|
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
23818
24972
|
# @return [String]
|
|
23819
24973
|
#
|
|
24974
|
+
# @!attribute [rw] tags
|
|
24975
|
+
# The tags used to organize, track, or control access for this
|
|
24976
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
|
24977
|
+
# "key2":"value2"} }.
|
|
24978
|
+
# @return [Hash<String,String>]
|
|
24979
|
+
#
|
|
23820
24980
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartContactEvaluationRequest AWS API Documentation
|
|
23821
24981
|
#
|
|
23822
24982
|
class StartContactEvaluationRequest < Struct.new(
|
|
23823
24983
|
:instance_id,
|
|
23824
24984
|
:contact_id,
|
|
23825
24985
|
:evaluation_form_id,
|
|
23826
|
-
:
|
|
24986
|
+
:auto_evaluation_configuration,
|
|
24987
|
+
:client_token,
|
|
24988
|
+
:tags)
|
|
23827
24989
|
SENSITIVE = []
|
|
23828
24990
|
include Aws::Structure
|
|
23829
24991
|
end
|
|
@@ -25003,13 +26165,18 @@ module Aws::Connect
|
|
|
25003
26165
|
# A map of question identifiers to note value.
|
|
25004
26166
|
# @return [Hash<String,Types::EvaluationNote>]
|
|
25005
26167
|
#
|
|
26168
|
+
# @!attribute [rw] submitted_by
|
|
26169
|
+
# The ID of the user who submitted the contact evaluation.
|
|
26170
|
+
# @return [Types::EvaluatorUserUnion]
|
|
26171
|
+
#
|
|
25006
26172
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SubmitContactEvaluationRequest AWS API Documentation
|
|
25007
26173
|
#
|
|
25008
26174
|
class SubmitContactEvaluationRequest < Struct.new(
|
|
25009
26175
|
:instance_id,
|
|
25010
26176
|
:evaluation_id,
|
|
25011
26177
|
:answers,
|
|
25012
|
-
:notes
|
|
26178
|
+
:notes,
|
|
26179
|
+
:submitted_by)
|
|
25013
26180
|
SENSITIVE = []
|
|
25014
26181
|
include Aws::Structure
|
|
25015
26182
|
end
|
|
@@ -26114,13 +27281,18 @@ module Aws::Connect
|
|
|
26114
27281
|
# A map of question identifiers to note value.
|
|
26115
27282
|
# @return [Hash<String,Types::EvaluationNote>]
|
|
26116
27283
|
#
|
|
27284
|
+
# @!attribute [rw] updated_by
|
|
27285
|
+
# The ID of the user who updated the contact evaluation.
|
|
27286
|
+
# @return [Types::EvaluatorUserUnion]
|
|
27287
|
+
#
|
|
26117
27288
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactEvaluationRequest AWS API Documentation
|
|
26118
27289
|
#
|
|
26119
27290
|
class UpdateContactEvaluationRequest < Struct.new(
|
|
26120
27291
|
:instance_id,
|
|
26121
27292
|
:evaluation_id,
|
|
26122
27293
|
:answers,
|
|
26123
|
-
:notes
|
|
27294
|
+
:notes,
|
|
27295
|
+
:updated_by)
|
|
26124
27296
|
SENSITIVE = []
|
|
26125
27297
|
include Aws::Structure
|
|
26126
27298
|
end
|
|
@@ -26617,6 +27789,10 @@ module Aws::Connect
|
|
|
26617
27789
|
# A scoring strategy of the evaluation form.
|
|
26618
27790
|
# @return [Types::EvaluationFormScoringStrategy]
|
|
26619
27791
|
#
|
|
27792
|
+
# @!attribute [rw] auto_evaluation_configuration
|
|
27793
|
+
# Whether automated evaluations are enabled.
|
|
27794
|
+
# @return [Types::EvaluationFormAutoEvaluationConfiguration]
|
|
27795
|
+
#
|
|
26620
27796
|
# @!attribute [rw] client_token
|
|
26621
27797
|
# A unique, case-sensitive identifier that you provide to ensure the
|
|
26622
27798
|
# idempotency of the request. If not provided, the Amazon Web Services
|
|
@@ -26642,6 +27818,7 @@ module Aws::Connect
|
|
|
26642
27818
|
:description,
|
|
26643
27819
|
:items,
|
|
26644
27820
|
:scoring_strategy,
|
|
27821
|
+
:auto_evaluation_configuration,
|
|
26645
27822
|
:client_token)
|
|
26646
27823
|
SENSITIVE = []
|
|
26647
27824
|
include Aws::Structure
|
|
@@ -26773,7 +27950,7 @@ module Aws::Connect
|
|
|
26773
27950
|
# The type of attribute.
|
|
26774
27951
|
#
|
|
26775
27952
|
# <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
|
|
26776
|
-
# access this feature, contact Amazon Web
|
|
27953
|
+
# access this feature, contact Amazon Web Services Support for
|
|
26777
27954
|
# allowlisting.
|
|
26778
27955
|
#
|
|
26779
27956
|
# </note>
|