aws-sdk-connect 1.259.0 → 1.261.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +529 -11
- data/lib/aws-sdk-connect/client_api.rb +261 -0
- data/lib/aws-sdk-connect/types.rb +770 -23
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +105 -11
- data/sig/params.rbs +80 -6
- data/sig/types.rbs +192 -4
- metadata +1 -1
|
@@ -745,6 +745,40 @@ module Aws::Connect
|
|
|
745
745
|
include Aws::Structure
|
|
746
746
|
end
|
|
747
747
|
|
|
748
|
+
# The configuration for conversational analytics.
|
|
749
|
+
#
|
|
750
|
+
# @!attribute [rw] language_configuration
|
|
751
|
+
# The language configuration for conversational analytics.
|
|
752
|
+
# @return [Types::LanguageConfiguration]
|
|
753
|
+
#
|
|
754
|
+
# @!attribute [rw] redaction_configuration
|
|
755
|
+
# The redaction configuration for conversational analytics.
|
|
756
|
+
# @return [Types::RedactionConfiguration]
|
|
757
|
+
#
|
|
758
|
+
# @!attribute [rw] sentiment_configuration
|
|
759
|
+
# The sentiment configuration for conversational analytics.
|
|
760
|
+
# @return [Types::SentimentConfiguration]
|
|
761
|
+
#
|
|
762
|
+
# @!attribute [rw] summary_configuration
|
|
763
|
+
# The summary configuration for conversational analytics.
|
|
764
|
+
# @return [Types::SummaryConfiguration]
|
|
765
|
+
#
|
|
766
|
+
# @!attribute [rw] rules_configuration
|
|
767
|
+
# The rules configuration for conversational analytics.
|
|
768
|
+
# @return [Types::RulesConfiguration]
|
|
769
|
+
#
|
|
770
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AnalyticsConfiguration AWS API Documentation
|
|
771
|
+
#
|
|
772
|
+
class AnalyticsConfiguration < Struct.new(
|
|
773
|
+
:language_configuration,
|
|
774
|
+
:redaction_configuration,
|
|
775
|
+
:sentiment_configuration,
|
|
776
|
+
:summary_configuration,
|
|
777
|
+
:rules_configuration)
|
|
778
|
+
SENSITIVE = []
|
|
779
|
+
include Aws::Structure
|
|
780
|
+
end
|
|
781
|
+
|
|
748
782
|
# This API is in preview release for Connect Customer and is subject to
|
|
749
783
|
# change.
|
|
750
784
|
#
|
|
@@ -4060,6 +4094,103 @@ module Aws::Connect
|
|
|
4060
4094
|
include Aws::Structure
|
|
4061
4095
|
end
|
|
4062
4096
|
|
|
4097
|
+
# A list of conditions which would be applied together with an `AND`
|
|
4098
|
+
# condition.
|
|
4099
|
+
#
|
|
4100
|
+
# @!attribute [rw] tag_conditions
|
|
4101
|
+
# A list of tag conditions to apply.
|
|
4102
|
+
# @return [Array<Types::TagCondition>]
|
|
4103
|
+
#
|
|
4104
|
+
# @!attribute [rw] attribute_conditions
|
|
4105
|
+
# A list of attribute conditions to apply.
|
|
4106
|
+
# @return [Array<Types::ContactEvaluationAttributeCondition>]
|
|
4107
|
+
#
|
|
4108
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactEvaluationAttributeAndCondition AWS API Documentation
|
|
4109
|
+
#
|
|
4110
|
+
class ContactEvaluationAttributeAndCondition < Struct.new(
|
|
4111
|
+
:tag_conditions,
|
|
4112
|
+
:attribute_conditions)
|
|
4113
|
+
SENSITIVE = []
|
|
4114
|
+
include Aws::Structure
|
|
4115
|
+
end
|
|
4116
|
+
|
|
4117
|
+
# An attribute condition for contact evaluation filtering.
|
|
4118
|
+
#
|
|
4119
|
+
# @!attribute [rw] attribute_key
|
|
4120
|
+
# The key of the attribute.
|
|
4121
|
+
# @return [String]
|
|
4122
|
+
#
|
|
4123
|
+
# @!attribute [rw] attribute_value
|
|
4124
|
+
# The value of the attribute.
|
|
4125
|
+
# @return [Types::ContactEvaluationAttributeValue]
|
|
4126
|
+
#
|
|
4127
|
+
# @!attribute [rw] comparison_type
|
|
4128
|
+
# The comparison type for the condition.
|
|
4129
|
+
# @return [String]
|
|
4130
|
+
#
|
|
4131
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactEvaluationAttributeCondition AWS API Documentation
|
|
4132
|
+
#
|
|
4133
|
+
class ContactEvaluationAttributeCondition < Struct.new(
|
|
4134
|
+
:attribute_key,
|
|
4135
|
+
:attribute_value,
|
|
4136
|
+
:comparison_type)
|
|
4137
|
+
SENSITIVE = []
|
|
4138
|
+
include Aws::Structure
|
|
4139
|
+
end
|
|
4140
|
+
|
|
4141
|
+
# An object that can be used to specify tag conditions and attribute
|
|
4142
|
+
# conditions inside the `SearchFilter` for contact evaluations. This
|
|
4143
|
+
# accepts an `OR` or `AND` (List of List) input where:
|
|
4144
|
+
#
|
|
4145
|
+
# * The top level list specifies conditions that need to be applied with
|
|
4146
|
+
# `OR` operator.
|
|
4147
|
+
#
|
|
4148
|
+
# * The inner list specifies conditions that need to be applied with
|
|
4149
|
+
# `AND` operator.
|
|
4150
|
+
#
|
|
4151
|
+
# @!attribute [rw] or_conditions
|
|
4152
|
+
# A list of conditions which would be applied together with an `OR`
|
|
4153
|
+
# condition.
|
|
4154
|
+
# @return [Array<Types::ContactEvaluationAttributeAndCondition>]
|
|
4155
|
+
#
|
|
4156
|
+
# @!attribute [rw] and_condition
|
|
4157
|
+
# A list of conditions which would be applied together with an `AND`
|
|
4158
|
+
# condition.
|
|
4159
|
+
# @return [Types::ContactEvaluationAttributeAndCondition]
|
|
4160
|
+
#
|
|
4161
|
+
# @!attribute [rw] tag_condition
|
|
4162
|
+
# A tag condition to apply.
|
|
4163
|
+
# @return [Types::TagCondition]
|
|
4164
|
+
#
|
|
4165
|
+
# @!attribute [rw] contact_evaluation_attribute_condition
|
|
4166
|
+
# An attribute condition to apply.
|
|
4167
|
+
# @return [Types::ContactEvaluationAttributeCondition]
|
|
4168
|
+
#
|
|
4169
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactEvaluationAttributeFilter AWS API Documentation
|
|
4170
|
+
#
|
|
4171
|
+
class ContactEvaluationAttributeFilter < Struct.new(
|
|
4172
|
+
:or_conditions,
|
|
4173
|
+
:and_condition,
|
|
4174
|
+
:tag_condition,
|
|
4175
|
+
:contact_evaluation_attribute_condition)
|
|
4176
|
+
SENSITIVE = []
|
|
4177
|
+
include Aws::Structure
|
|
4178
|
+
end
|
|
4179
|
+
|
|
4180
|
+
# The value of a contact evaluation attribute condition.
|
|
4181
|
+
#
|
|
4182
|
+
# @!attribute [rw] string_value
|
|
4183
|
+
# A string value for the attribute.
|
|
4184
|
+
# @return [String]
|
|
4185
|
+
#
|
|
4186
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactEvaluationAttributeValue AWS API Documentation
|
|
4187
|
+
#
|
|
4188
|
+
class ContactEvaluationAttributeValue < Struct.new(
|
|
4189
|
+
:string_value)
|
|
4190
|
+
SENSITIVE = []
|
|
4191
|
+
include Aws::Structure
|
|
4192
|
+
end
|
|
4193
|
+
|
|
4063
4194
|
# Filters user data based on the contact information that is associated
|
|
4064
4195
|
# to the users. It contains a list of [contact states][1].
|
|
4065
4196
|
#
|
|
@@ -5133,6 +5264,100 @@ module Aws::Connect
|
|
|
5133
5264
|
include Aws::Structure
|
|
5134
5265
|
end
|
|
5135
5266
|
|
|
5267
|
+
# @!attribute [rw] client_token
|
|
5268
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
5269
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
|
5270
|
+
# SDK populates this field. For more information about idempotency,
|
|
5271
|
+
# see [Making retries safe with idempotent APIs][1].
|
|
5272
|
+
#
|
|
5273
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
5274
|
+
# not need to pass this option.
|
|
5275
|
+
#
|
|
5276
|
+
#
|
|
5277
|
+
#
|
|
5278
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
5279
|
+
# @return [String]
|
|
5280
|
+
#
|
|
5281
|
+
# @!attribute [rw] instance_id
|
|
5282
|
+
# The identifier of the Connect Customer instance. You can [find the
|
|
5283
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
5284
|
+
#
|
|
5285
|
+
#
|
|
5286
|
+
#
|
|
5287
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
5288
|
+
# @return [String]
|
|
5289
|
+
#
|
|
5290
|
+
# @!attribute [rw] file_use_case_type
|
|
5291
|
+
# The use case for the file.
|
|
5292
|
+
#
|
|
5293
|
+
# Only `VOICE_RECORDING` is supported.
|
|
5294
|
+
# @return [String]
|
|
5295
|
+
#
|
|
5296
|
+
# @!attribute [rw] file_source_uri
|
|
5297
|
+
# The S3 URI of the file to be attached. Only S3 source URIs are
|
|
5298
|
+
# supported.
|
|
5299
|
+
# @return [String]
|
|
5300
|
+
#
|
|
5301
|
+
# @!attribute [rw] associated_resource_arn
|
|
5302
|
+
# The ARN of the completed voice contact to attach the file to. Only
|
|
5303
|
+
# voice contacts with Telephony subtype are supported.
|
|
5304
|
+
#
|
|
5305
|
+
# <note markdown="1"> This value must be a valid ARN.
|
|
5306
|
+
#
|
|
5307
|
+
# </note>
|
|
5308
|
+
# @return [String]
|
|
5309
|
+
#
|
|
5310
|
+
# @!attribute [rw] tags
|
|
5311
|
+
# The tags used to organize, track, or control access for this
|
|
5312
|
+
# resource. For example, `{ "Tags": {"key1":"value1", "key2":"value2"}
|
|
5313
|
+
# }`.
|
|
5314
|
+
# @return [Hash<String,String>]
|
|
5315
|
+
#
|
|
5316
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateAttachedFileRequest AWS API Documentation
|
|
5317
|
+
#
|
|
5318
|
+
class CreateAttachedFileRequest < Struct.new(
|
|
5319
|
+
:client_token,
|
|
5320
|
+
:instance_id,
|
|
5321
|
+
:file_use_case_type,
|
|
5322
|
+
:file_source_uri,
|
|
5323
|
+
:associated_resource_arn,
|
|
5324
|
+
:tags)
|
|
5325
|
+
SENSITIVE = []
|
|
5326
|
+
include Aws::Structure
|
|
5327
|
+
end
|
|
5328
|
+
|
|
5329
|
+
# Response from CreateAttachedFile API.
|
|
5330
|
+
#
|
|
5331
|
+
# @!attribute [rw] file_arn
|
|
5332
|
+
# The unique identifier of the attached file resource (ARN).
|
|
5333
|
+
# @return [String]
|
|
5334
|
+
#
|
|
5335
|
+
# @!attribute [rw] file_id
|
|
5336
|
+
# The unique identifier of the attached file resource.
|
|
5337
|
+
# @return [String]
|
|
5338
|
+
#
|
|
5339
|
+
# @!attribute [rw] creation_time
|
|
5340
|
+
# The time of Creation of the file resource as an ISO timestamp. It's
|
|
5341
|
+
# specified in ISO 8601 format: `yyyy-MM-ddThh:mm:ss.SSSZ`. For
|
|
5342
|
+
# example, `2024-05-03T02:41:28.172Z`.
|
|
5343
|
+
# @return [String]
|
|
5344
|
+
#
|
|
5345
|
+
# @!attribute [rw] file_status
|
|
5346
|
+
# The current status of the attached file. Valid values: `PROCESSING`
|
|
5347
|
+
# \| `APPROVED` \| `REJECTED` \| `FAILED`.
|
|
5348
|
+
# @return [String]
|
|
5349
|
+
#
|
|
5350
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateAttachedFileResponse AWS API Documentation
|
|
5351
|
+
#
|
|
5352
|
+
class CreateAttachedFileResponse < Struct.new(
|
|
5353
|
+
:file_arn,
|
|
5354
|
+
:file_id,
|
|
5355
|
+
:creation_time,
|
|
5356
|
+
:file_status)
|
|
5357
|
+
SENSITIVE = []
|
|
5358
|
+
include Aws::Structure
|
|
5359
|
+
end
|
|
5360
|
+
|
|
5136
5361
|
# The `CreateCase` action definition.
|
|
5137
5362
|
#
|
|
5138
5363
|
# @!attribute [rw] fields
|
|
@@ -12668,6 +12893,16 @@ module Aws::Connect
|
|
|
12668
12893
|
# Configuration for language settings of this evaluation form.
|
|
12669
12894
|
# @return [Types::EvaluationFormLanguageConfiguration]
|
|
12670
12895
|
#
|
|
12896
|
+
# @!attribute [rw] latest_validation_status
|
|
12897
|
+
# The status of the most recent validation run for this evaluation
|
|
12898
|
+
# form. Valid values: `IN_PROGRESS`, `COMPLETED`, `FAILED`.
|
|
12899
|
+
# @return [String]
|
|
12900
|
+
#
|
|
12901
|
+
# @!attribute [rw] last_validation_time
|
|
12902
|
+
# The timestamp when the most recent validation was started for this
|
|
12903
|
+
# evaluation form.
|
|
12904
|
+
# @return [Time]
|
|
12905
|
+
#
|
|
12671
12906
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationForm AWS API Documentation
|
|
12672
12907
|
#
|
|
12673
12908
|
class EvaluationForm < Struct.new(
|
|
@@ -12688,7 +12923,9 @@ module Aws::Connect
|
|
|
12688
12923
|
:review_configuration,
|
|
12689
12924
|
:tags,
|
|
12690
12925
|
:target_configuration,
|
|
12691
|
-
:language_configuration
|
|
12926
|
+
:language_configuration,
|
|
12927
|
+
:latest_validation_status,
|
|
12928
|
+
:last_validation_time)
|
|
12692
12929
|
SENSITIVE = []
|
|
12693
12930
|
include Aws::Structure
|
|
12694
12931
|
end
|
|
@@ -13012,11 +13249,33 @@ module Aws::Connect
|
|
|
13012
13249
|
# Display text for this option.
|
|
13013
13250
|
# @return [String]
|
|
13014
13251
|
#
|
|
13252
|
+
# @!attribute [rw] score
|
|
13253
|
+
# The score assigned to the answer option.
|
|
13254
|
+
# @return [Integer]
|
|
13255
|
+
#
|
|
13256
|
+
# @!attribute [rw] automatic_fail
|
|
13257
|
+
# The flag to mark the option as automatic fail. If an automatic fail
|
|
13258
|
+
# answer is provided, the overall evaluation gets a score of 0.
|
|
13259
|
+
# @return [Boolean]
|
|
13260
|
+
#
|
|
13261
|
+
# @!attribute [rw] automatic_fail_configuration
|
|
13262
|
+
# Information about automatic fail configuration for an evaluation
|
|
13263
|
+
# form.
|
|
13264
|
+
# @return [Types::AutomaticFailConfiguration]
|
|
13265
|
+
#
|
|
13266
|
+
# @!attribute [rw] points_configuration
|
|
13267
|
+
# The points configuration for point-based scoring.
|
|
13268
|
+
# @return [Types::QuestionOptionPointsConfiguration]
|
|
13269
|
+
#
|
|
13015
13270
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormMultiSelectQuestionOption AWS API Documentation
|
|
13016
13271
|
#
|
|
13017
13272
|
class EvaluationFormMultiSelectQuestionOption < Struct.new(
|
|
13018
13273
|
:ref_id,
|
|
13019
|
-
:text
|
|
13274
|
+
:text,
|
|
13275
|
+
:score,
|
|
13276
|
+
:automatic_fail,
|
|
13277
|
+
:automatic_fail_configuration,
|
|
13278
|
+
:points_configuration)
|
|
13020
13279
|
SENSITIVE = []
|
|
13021
13280
|
include Aws::Structure
|
|
13022
13281
|
end
|
|
@@ -13098,6 +13357,10 @@ module Aws::Connect
|
|
|
13098
13357
|
# A configuration for automatic fail.
|
|
13099
13358
|
# @return [Types::AutomaticFailConfiguration]
|
|
13100
13359
|
#
|
|
13360
|
+
# @!attribute [rw] points_configuration
|
|
13361
|
+
# The points configuration for point-based scoring.
|
|
13362
|
+
# @return [Types::QuestionOptionPointsConfiguration]
|
|
13363
|
+
#
|
|
13101
13364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormNumericQuestionOption AWS API Documentation
|
|
13102
13365
|
#
|
|
13103
13366
|
class EvaluationFormNumericQuestionOption < Struct.new(
|
|
@@ -13105,7 +13368,8 @@ module Aws::Connect
|
|
|
13105
13368
|
:max_value,
|
|
13106
13369
|
:score,
|
|
13107
13370
|
:automatic_fail,
|
|
13108
|
-
:automatic_fail_configuration
|
|
13371
|
+
:automatic_fail_configuration,
|
|
13372
|
+
:points_configuration)
|
|
13109
13373
|
SENSITIVE = []
|
|
13110
13374
|
include Aws::Structure
|
|
13111
13375
|
end
|
|
@@ -13176,6 +13440,10 @@ module Aws::Connect
|
|
|
13176
13440
|
# The scoring weight of the section.
|
|
13177
13441
|
# @return [Float]
|
|
13178
13442
|
#
|
|
13443
|
+
# @!attribute [rw] scoring_configuration
|
|
13444
|
+
# The scoring configuration of the question.
|
|
13445
|
+
# @return [Types::EvaluationFormQuestionScoringConfiguration]
|
|
13446
|
+
#
|
|
13179
13447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormQuestion AWS API Documentation
|
|
13180
13448
|
#
|
|
13181
13449
|
class EvaluationFormQuestion < Struct.new(
|
|
@@ -13186,7 +13454,8 @@ module Aws::Connect
|
|
|
13186
13454
|
:question_type,
|
|
13187
13455
|
:question_type_properties,
|
|
13188
13456
|
:enablement,
|
|
13189
|
-
:weight
|
|
13457
|
+
:weight,
|
|
13458
|
+
:scoring_configuration)
|
|
13190
13459
|
SENSITIVE = []
|
|
13191
13460
|
include Aws::Structure
|
|
13192
13461
|
end
|
|
@@ -13205,6 +13474,30 @@ module Aws::Connect
|
|
|
13205
13474
|
include Aws::Structure
|
|
13206
13475
|
end
|
|
13207
13476
|
|
|
13477
|
+
# Scoring configuration for a question in an evaluation form.
|
|
13478
|
+
#
|
|
13479
|
+
# @!attribute [rw] points_configuration
|
|
13480
|
+
# The points configuration for point-based scoring.
|
|
13481
|
+
# @return [Types::QuestionPointsConfiguration]
|
|
13482
|
+
#
|
|
13483
|
+
# @!attribute [rw] is_excluded_from_scoring
|
|
13484
|
+
# The flag to exclude the question from scoring.
|
|
13485
|
+
# @return [Boolean]
|
|
13486
|
+
#
|
|
13487
|
+
# @!attribute [rw] score_thresholds
|
|
13488
|
+
# The score thresholds for performance categories.
|
|
13489
|
+
# @return [Array<Types::EvaluationFormScoreThreshold>]
|
|
13490
|
+
#
|
|
13491
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormQuestionScoringConfiguration AWS API Documentation
|
|
13492
|
+
#
|
|
13493
|
+
class EvaluationFormQuestionScoringConfiguration < Struct.new(
|
|
13494
|
+
:points_configuration,
|
|
13495
|
+
:is_excluded_from_scoring,
|
|
13496
|
+
:score_thresholds)
|
|
13497
|
+
SENSITIVE = []
|
|
13498
|
+
include Aws::Structure
|
|
13499
|
+
end
|
|
13500
|
+
|
|
13208
13501
|
# Information about properties for a question in an evaluation form. The
|
|
13209
13502
|
# question type properties must be either for a numeric question or a
|
|
13210
13503
|
# single select question.
|
|
@@ -13248,6 +13541,30 @@ module Aws::Connect
|
|
|
13248
13541
|
class Unknown < EvaluationFormQuestionTypeProperties; end
|
|
13249
13542
|
end
|
|
13250
13543
|
|
|
13544
|
+
# Information about a score threshold for a performance category.
|
|
13545
|
+
#
|
|
13546
|
+
# @!attribute [rw] performance_category
|
|
13547
|
+
# The performance category name.
|
|
13548
|
+
# @return [String]
|
|
13549
|
+
#
|
|
13550
|
+
# @!attribute [rw] min_score_percentage
|
|
13551
|
+
# The minimum score percentage for the performance category.
|
|
13552
|
+
# @return [Float]
|
|
13553
|
+
#
|
|
13554
|
+
# @!attribute [rw] max_score_percentage
|
|
13555
|
+
# The maximum score percentage for the performance category.
|
|
13556
|
+
# @return [Float]
|
|
13557
|
+
#
|
|
13558
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormScoreThreshold AWS API Documentation
|
|
13559
|
+
#
|
|
13560
|
+
class EvaluationFormScoreThreshold < Struct.new(
|
|
13561
|
+
:performance_category,
|
|
13562
|
+
:min_score_percentage,
|
|
13563
|
+
:max_score_percentage)
|
|
13564
|
+
SENSITIVE = []
|
|
13565
|
+
include Aws::Structure
|
|
13566
|
+
end
|
|
13567
|
+
|
|
13251
13568
|
# Information about scoring strategy for an evaluation form.
|
|
13252
13569
|
#
|
|
13253
13570
|
# @!attribute [rw] mode
|
|
@@ -13258,11 +13575,16 @@ module Aws::Connect
|
|
|
13258
13575
|
# The scoring status of the evaluation form.
|
|
13259
13576
|
# @return [String]
|
|
13260
13577
|
#
|
|
13578
|
+
# @!attribute [rw] score_thresholds
|
|
13579
|
+
# The score thresholds for performance categories.
|
|
13580
|
+
# @return [Array<Types::EvaluationFormScoreThreshold>]
|
|
13581
|
+
#
|
|
13261
13582
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormScoringStrategy AWS API Documentation
|
|
13262
13583
|
#
|
|
13263
13584
|
class EvaluationFormScoringStrategy < Struct.new(
|
|
13264
13585
|
:mode,
|
|
13265
|
-
:status
|
|
13586
|
+
:status,
|
|
13587
|
+
:score_thresholds)
|
|
13266
13588
|
SENSITIVE = []
|
|
13267
13589
|
include Aws::Structure
|
|
13268
13590
|
end
|
|
@@ -13457,6 +13779,14 @@ module Aws::Connect
|
|
|
13457
13779
|
# The scoring weight of the section.
|
|
13458
13780
|
# @return [Float]
|
|
13459
13781
|
#
|
|
13782
|
+
# @!attribute [rw] is_excluded_from_scoring
|
|
13783
|
+
# The flag to exclude the section from scoring.
|
|
13784
|
+
# @return [Boolean]
|
|
13785
|
+
#
|
|
13786
|
+
# @!attribute [rw] score_thresholds
|
|
13787
|
+
# The score thresholds for performance categories.
|
|
13788
|
+
# @return [Array<Types::EvaluationFormScoreThreshold>]
|
|
13789
|
+
#
|
|
13460
13790
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormSection AWS API Documentation
|
|
13461
13791
|
#
|
|
13462
13792
|
class EvaluationFormSection < Struct.new(
|
|
@@ -13464,7 +13794,9 @@ module Aws::Connect
|
|
|
13464
13794
|
:ref_id,
|
|
13465
13795
|
:instructions,
|
|
13466
13796
|
:items,
|
|
13467
|
-
:weight
|
|
13797
|
+
:weight,
|
|
13798
|
+
:is_excluded_from_scoring,
|
|
13799
|
+
:score_thresholds)
|
|
13468
13800
|
SENSITIVE = []
|
|
13469
13801
|
include Aws::Structure
|
|
13470
13802
|
end
|
|
@@ -13546,6 +13878,10 @@ module Aws::Connect
|
|
|
13546
13878
|
# Whether automatic fail is configured on a single select question.
|
|
13547
13879
|
# @return [Types::AutomaticFailConfiguration]
|
|
13548
13880
|
#
|
|
13881
|
+
# @!attribute [rw] points_configuration
|
|
13882
|
+
# The points configuration for point-based scoring.
|
|
13883
|
+
# @return [Types::QuestionOptionPointsConfiguration]
|
|
13884
|
+
#
|
|
13549
13885
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormSingleSelectQuestionOption AWS API Documentation
|
|
13550
13886
|
#
|
|
13551
13887
|
class EvaluationFormSingleSelectQuestionOption < Struct.new(
|
|
@@ -13553,7 +13889,8 @@ module Aws::Connect
|
|
|
13553
13889
|
:text,
|
|
13554
13890
|
:score,
|
|
13555
13891
|
:automatic_fail,
|
|
13556
|
-
:automatic_fail_configuration
|
|
13892
|
+
:automatic_fail_configuration,
|
|
13893
|
+
:points_configuration)
|
|
13557
13894
|
SENSITIVE = []
|
|
13558
13895
|
include Aws::Structure
|
|
13559
13896
|
end
|
|
@@ -13692,6 +14029,64 @@ module Aws::Connect
|
|
|
13692
14029
|
include Aws::Structure
|
|
13693
14030
|
end
|
|
13694
14031
|
|
|
14032
|
+
# Information about a finding from the evaluation form validation
|
|
14033
|
+
# process. Each finding identifies a structural issue or quality
|
|
14034
|
+
# improvement opportunity for the evaluation form.
|
|
14035
|
+
#
|
|
14036
|
+
# @!attribute [rw] issue_code
|
|
14037
|
+
# A code that identifies the type of validation issue found.
|
|
14038
|
+
# @return [String]
|
|
14039
|
+
#
|
|
14040
|
+
# @!attribute [rw] items
|
|
14041
|
+
# A list of evaluation form items affected by this finding.
|
|
14042
|
+
# @return [Array<Types::EvaluationFormValidationFindingItem>]
|
|
14043
|
+
#
|
|
14044
|
+
# @!attribute [rw] description
|
|
14045
|
+
# A description of the validation issue.
|
|
14046
|
+
# @return [String]
|
|
14047
|
+
#
|
|
14048
|
+
# @!attribute [rw] suggestion
|
|
14049
|
+
# A suggested fix for the validation issue.
|
|
14050
|
+
# @return [String]
|
|
14051
|
+
#
|
|
14052
|
+
# @!attribute [rw] severity
|
|
14053
|
+
# The severity of the finding. Valid values: `WARNING`, `ERROR`.
|
|
14054
|
+
# @return [String]
|
|
14055
|
+
#
|
|
14056
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormValidationFinding AWS API Documentation
|
|
14057
|
+
#
|
|
14058
|
+
class EvaluationFormValidationFinding < Struct.new(
|
|
14059
|
+
:issue_code,
|
|
14060
|
+
:items,
|
|
14061
|
+
:description,
|
|
14062
|
+
:suggestion,
|
|
14063
|
+
:severity)
|
|
14064
|
+
SENSITIVE = []
|
|
14065
|
+
include Aws::Structure
|
|
14066
|
+
end
|
|
14067
|
+
|
|
14068
|
+
# Information about an evaluation form item affected by a validation
|
|
14069
|
+
# finding.
|
|
14070
|
+
#
|
|
14071
|
+
# @!attribute [rw] ref_id
|
|
14072
|
+
# The identifier of the evaluation form item (question or section)
|
|
14073
|
+
# affected by the finding.
|
|
14074
|
+
# @return [String]
|
|
14075
|
+
#
|
|
14076
|
+
# @!attribute [rw] property
|
|
14077
|
+
# The specific property of the evaluation form item that the finding
|
|
14078
|
+
# relates to.
|
|
14079
|
+
# @return [String]
|
|
14080
|
+
#
|
|
14081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormValidationFindingItem AWS API Documentation
|
|
14082
|
+
#
|
|
14083
|
+
class EvaluationFormValidationFindingItem < Struct.new(
|
|
14084
|
+
:ref_id,
|
|
14085
|
+
:property)
|
|
14086
|
+
SENSITIVE = []
|
|
14087
|
+
include Aws::Structure
|
|
14088
|
+
end
|
|
14089
|
+
|
|
13695
14090
|
# Summary information about an evaluation form.
|
|
13696
14091
|
#
|
|
13697
14092
|
# @!attribute [rw] evaluation_form_arn
|
|
@@ -14031,13 +14426,28 @@ module Aws::Connect
|
|
|
14031
14426
|
# Weight applied to this evaluation score.
|
|
14032
14427
|
# @return [Float]
|
|
14033
14428
|
#
|
|
14429
|
+
# @!attribute [rw] earned_points
|
|
14430
|
+
# The points earned for the item.
|
|
14431
|
+
# @return [Integer]
|
|
14432
|
+
#
|
|
14433
|
+
# @!attribute [rw] max_base_point
|
|
14434
|
+
# The maximum base points possible for the item.
|
|
14435
|
+
# @return [Integer]
|
|
14436
|
+
#
|
|
14437
|
+
# @!attribute [rw] performance_category
|
|
14438
|
+
# The performance category for the score.
|
|
14439
|
+
# @return [String]
|
|
14440
|
+
#
|
|
14034
14441
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationScore AWS API Documentation
|
|
14035
14442
|
#
|
|
14036
14443
|
class EvaluationScore < Struct.new(
|
|
14037
14444
|
:percentage,
|
|
14038
14445
|
:not_applicable,
|
|
14039
14446
|
:automatic_fail,
|
|
14040
|
-
:applied_weight
|
|
14447
|
+
:applied_weight,
|
|
14448
|
+
:earned_points,
|
|
14449
|
+
:max_base_point,
|
|
14450
|
+
:performance_category)
|
|
14041
14451
|
SENSITIVE = []
|
|
14042
14452
|
include Aws::Structure
|
|
14043
14453
|
end
|
|
@@ -14097,21 +14507,19 @@ module Aws::Connect
|
|
|
14097
14507
|
# Filters to be applied to search results.
|
|
14098
14508
|
#
|
|
14099
14509
|
# @!attribute [rw] attribute_filter
|
|
14100
|
-
# An object that can be used to specify
|
|
14101
|
-
# `SearchFilter`. This accepts an `OR` or `AND` (List of List) input
|
|
14102
|
-
# where:
|
|
14103
|
-
#
|
|
14104
|
-
# * The top level list specifies conditions that need to be applied
|
|
14105
|
-
# with `OR` operator.
|
|
14106
|
-
#
|
|
14107
|
-
# * The inner list specifies conditions that need to be applied with
|
|
14108
|
-
# `AND` operator.
|
|
14510
|
+
# An object that can be used to specify tag conditions.
|
|
14109
14511
|
# @return [Types::ControlPlaneAttributeFilter]
|
|
14110
14512
|
#
|
|
14513
|
+
# @!attribute [rw] contact_evaluation_attribute_filter
|
|
14514
|
+
# An object that can be used to specify tag conditions and attribute
|
|
14515
|
+
# conditions for contact evaluations.
|
|
14516
|
+
# @return [Types::ContactEvaluationAttributeFilter]
|
|
14517
|
+
#
|
|
14111
14518
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationSearchFilter AWS API Documentation
|
|
14112
14519
|
#
|
|
14113
14520
|
class EvaluationSearchFilter < Struct.new(
|
|
14114
|
-
:attribute_filter
|
|
14521
|
+
:attribute_filter,
|
|
14522
|
+
:contact_evaluation_attribute_filter)
|
|
14115
14523
|
SENSITIVE = []
|
|
14116
14524
|
include Aws::Structure
|
|
14117
14525
|
end
|
|
@@ -14184,6 +14592,18 @@ module Aws::Connect
|
|
|
14184
14592
|
# Identifier for a contact participant in the evaluation.
|
|
14185
14593
|
# @return [String]
|
|
14186
14594
|
#
|
|
14595
|
+
# @!attribute [rw] earned_points
|
|
14596
|
+
# The points earned for the evaluation.
|
|
14597
|
+
# @return [Integer]
|
|
14598
|
+
#
|
|
14599
|
+
# @!attribute [rw] max_base_point
|
|
14600
|
+
# The maximum base points possible for the evaluation.
|
|
14601
|
+
# @return [Integer]
|
|
14602
|
+
#
|
|
14603
|
+
# @!attribute [rw] performance_category
|
|
14604
|
+
# The performance category for the evaluation score.
|
|
14605
|
+
# @return [String]
|
|
14606
|
+
#
|
|
14187
14607
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationSearchMetadata AWS API Documentation
|
|
14188
14608
|
#
|
|
14189
14609
|
class EvaluationSearchMetadata < Struct.new(
|
|
@@ -14202,7 +14622,10 @@ module Aws::Connect
|
|
|
14202
14622
|
:sampling_job_id,
|
|
14203
14623
|
:review_id,
|
|
14204
14624
|
:contact_participant_role,
|
|
14205
|
-
:contact_participant_id
|
|
14625
|
+
:contact_participant_id,
|
|
14626
|
+
:earned_points,
|
|
14627
|
+
:max_base_point,
|
|
14628
|
+
:performance_category)
|
|
14206
14629
|
SENSITIVE = []
|
|
14207
14630
|
include Aws::Structure
|
|
14208
14631
|
end
|
|
@@ -14745,7 +15168,10 @@ module Aws::Connect
|
|
|
14745
15168
|
#
|
|
14746
15169
|
# @!attribute [rw] routing_step_expressions
|
|
14747
15170
|
# A list of expressions as a filter, in which an expression is an
|
|
14748
|
-
# object of a step in a routing criteria.
|
|
15171
|
+
# object of a step in a routing criteria. Accepts filter values up to
|
|
15172
|
+
# 3,000 characters in length. Filter values are case-sensitive. JSON
|
|
15173
|
+
# object key order and whitespace may be arbitrary; array order and
|
|
15174
|
+
# tree structure must be preserved.
|
|
14749
15175
|
# @return [Array<String>]
|
|
14750
15176
|
#
|
|
14751
15177
|
# @!attribute [rw] agent_statuses
|
|
@@ -15472,6 +15898,76 @@ module Aws::Connect
|
|
|
15472
15898
|
include Aws::Structure
|
|
15473
15899
|
end
|
|
15474
15900
|
|
|
15901
|
+
# @!attribute [rw] instance_id
|
|
15902
|
+
# The identifier of the Connect Customer instance. You can [find the
|
|
15903
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
15904
|
+
#
|
|
15905
|
+
#
|
|
15906
|
+
#
|
|
15907
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
15908
|
+
# @return [String]
|
|
15909
|
+
#
|
|
15910
|
+
# @!attribute [rw] evaluation_form_id
|
|
15911
|
+
# The unique identifier for the evaluation form.
|
|
15912
|
+
# @return [String]
|
|
15913
|
+
#
|
|
15914
|
+
# @!attribute [rw] evaluation_form_version
|
|
15915
|
+
# The version of the evaluation form to retrieve validation results
|
|
15916
|
+
# for.
|
|
15917
|
+
# @return [Integer]
|
|
15918
|
+
#
|
|
15919
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetEvaluationFormValidationRequest AWS API Documentation
|
|
15920
|
+
#
|
|
15921
|
+
class GetEvaluationFormValidationRequest < Struct.new(
|
|
15922
|
+
:instance_id,
|
|
15923
|
+
:evaluation_form_id,
|
|
15924
|
+
:evaluation_form_version)
|
|
15925
|
+
SENSITIVE = []
|
|
15926
|
+
include Aws::Structure
|
|
15927
|
+
end
|
|
15928
|
+
|
|
15929
|
+
# @!attribute [rw] status
|
|
15930
|
+
# The current status of the validation process. Valid values:
|
|
15931
|
+
# `IN_PROGRESS`, `COMPLETED`, `FAILED`.
|
|
15932
|
+
# @return [String]
|
|
15933
|
+
#
|
|
15934
|
+
# @!attribute [rw] failure_reason
|
|
15935
|
+
# The reason the validation failed. This field is populated only when
|
|
15936
|
+
# the status is `FAILED`.
|
|
15937
|
+
# @return [String]
|
|
15938
|
+
#
|
|
15939
|
+
# @!attribute [rw] evaluation_form_id
|
|
15940
|
+
# The unique identifier for the evaluation form.
|
|
15941
|
+
# @return [String]
|
|
15942
|
+
#
|
|
15943
|
+
# @!attribute [rw] evaluation_form_version
|
|
15944
|
+
# A version of the evaluation form.
|
|
15945
|
+
# @return [Integer]
|
|
15946
|
+
#
|
|
15947
|
+
# @!attribute [rw] started_time
|
|
15948
|
+
# The timestamp when the validation process was started.
|
|
15949
|
+
# @return [Time]
|
|
15950
|
+
#
|
|
15951
|
+
# @!attribute [rw] findings
|
|
15952
|
+
# A list of findings from the validation process. Each finding
|
|
15953
|
+
# identifies a structural issue or quality improvement for the
|
|
15954
|
+
# evaluation form, and may include a suggested fix. This field is
|
|
15955
|
+
# populated when the status is `COMPLETED`.
|
|
15956
|
+
# @return [Array<Types::EvaluationFormValidationFinding>]
|
|
15957
|
+
#
|
|
15958
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetEvaluationFormValidationResponse AWS API Documentation
|
|
15959
|
+
#
|
|
15960
|
+
class GetEvaluationFormValidationResponse < Struct.new(
|
|
15961
|
+
:status,
|
|
15962
|
+
:failure_reason,
|
|
15963
|
+
:evaluation_form_id,
|
|
15964
|
+
:evaluation_form_version,
|
|
15965
|
+
:started_time,
|
|
15966
|
+
:findings)
|
|
15967
|
+
SENSITIVE = []
|
|
15968
|
+
include Aws::Structure
|
|
15969
|
+
end
|
|
15970
|
+
|
|
15475
15971
|
# @!attribute [rw] instance_id
|
|
15476
15972
|
# The identifier of the Connect Customer instance. You can [find the
|
|
15477
15973
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
@@ -16049,9 +16545,9 @@ module Aws::Connect
|
|
|
16049
16545
|
# for the `contact/segmentAttributes/connect:Subtype` filter key.
|
|
16050
16546
|
#
|
|
16051
16547
|
# * `ROUTING_STEP_EXPRESSION` accepts a filter value up to 3,000
|
|
16052
|
-
# characters in length.
|
|
16053
|
-
# order
|
|
16054
|
-
#
|
|
16548
|
+
# characters in length. Filter values are case-sensitive. JSON
|
|
16549
|
+
# object key order and whitespace may be arbitrary; array order and
|
|
16550
|
+
# tree structure must be preserved.
|
|
16055
16551
|
#
|
|
16056
16552
|
# * TRUE and FALSE are the only valid filter values for the
|
|
16057
16553
|
# `Q_CONNECT_ENABLED` filter key.
|
|
@@ -20225,6 +20721,20 @@ module Aws::Connect
|
|
|
20225
20721
|
include Aws::Structure
|
|
20226
20722
|
end
|
|
20227
20723
|
|
|
20724
|
+
# The language configuration for conversational analytics.
|
|
20725
|
+
#
|
|
20726
|
+
# @!attribute [rw] language_locale
|
|
20727
|
+
# The language locale setting for conversational analytics.
|
|
20728
|
+
# @return [String]
|
|
20729
|
+
#
|
|
20730
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/LanguageConfiguration AWS API Documentation
|
|
20731
|
+
#
|
|
20732
|
+
class LanguageConfiguration < Struct.new(
|
|
20733
|
+
:language_locale)
|
|
20734
|
+
SENSITIVE = []
|
|
20735
|
+
include Aws::Structure
|
|
20736
|
+
end
|
|
20737
|
+
|
|
20228
20738
|
# Configuration information of an Amazon Lex bot.
|
|
20229
20739
|
#
|
|
20230
20740
|
# @!attribute [rw] name
|
|
@@ -26263,6 +26773,49 @@ module Aws::Connect
|
|
|
26263
26773
|
include Aws::Structure
|
|
26264
26774
|
end
|
|
26265
26775
|
|
|
26776
|
+
# Information about the points configuration for an answer option.
|
|
26777
|
+
#
|
|
26778
|
+
# @!attribute [rw] point_value
|
|
26779
|
+
# The point value assigned to the answer option.
|
|
26780
|
+
# @return [Integer]
|
|
26781
|
+
#
|
|
26782
|
+
# @!attribute [rw] is_bonus
|
|
26783
|
+
# The flag to mark the option as a bonus option.
|
|
26784
|
+
# @return [Boolean]
|
|
26785
|
+
#
|
|
26786
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QuestionOptionPointsConfiguration AWS API Documentation
|
|
26787
|
+
#
|
|
26788
|
+
class QuestionOptionPointsConfiguration < Struct.new(
|
|
26789
|
+
:point_value,
|
|
26790
|
+
:is_bonus)
|
|
26791
|
+
SENSITIVE = []
|
|
26792
|
+
include Aws::Structure
|
|
26793
|
+
end
|
|
26794
|
+
|
|
26795
|
+
# Information about the points configuration for a question.
|
|
26796
|
+
#
|
|
26797
|
+
# @!attribute [rw] max_point_value
|
|
26798
|
+
# The maximum point value.
|
|
26799
|
+
# @return [Integer]
|
|
26800
|
+
#
|
|
26801
|
+
# @!attribute [rw] min_point_value
|
|
26802
|
+
# The minimum point value.
|
|
26803
|
+
# @return [Integer]
|
|
26804
|
+
#
|
|
26805
|
+
# @!attribute [rw] is_bonus
|
|
26806
|
+
# The flag to mark the question as a bonus question.
|
|
26807
|
+
# @return [Boolean]
|
|
26808
|
+
#
|
|
26809
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QuestionPointsConfiguration AWS API Documentation
|
|
26810
|
+
#
|
|
26811
|
+
class QuestionPointsConfiguration < Struct.new(
|
|
26812
|
+
:max_point_value,
|
|
26813
|
+
:min_point_value,
|
|
26814
|
+
:is_bonus)
|
|
26815
|
+
SENSITIVE = []
|
|
26816
|
+
include Aws::Structure
|
|
26817
|
+
end
|
|
26818
|
+
|
|
26266
26819
|
# Contains information about a queue.
|
|
26267
26820
|
#
|
|
26268
26821
|
# @!attribute [rw] name
|
|
@@ -27434,6 +27987,42 @@ module Aws::Connect
|
|
|
27434
27987
|
include Aws::Structure
|
|
27435
27988
|
end
|
|
27436
27989
|
|
|
27990
|
+
# The redaction configuration for conversational analytics.
|
|
27991
|
+
#
|
|
27992
|
+
# @!attribute [rw] behavior
|
|
27993
|
+
# Controls whether redaction is applied to the analytics output. Valid
|
|
27994
|
+
# values: `Enable` \| `Disable`.
|
|
27995
|
+
# @return [String]
|
|
27996
|
+
#
|
|
27997
|
+
# @!attribute [rw] policy
|
|
27998
|
+
# The redaction output policy that determines which versions of the
|
|
27999
|
+
# transcript are stored. Valid values: `None` \| `RedactedOnly` \|
|
|
28000
|
+
# `RedactedAndOriginal`.
|
|
28001
|
+
# @return [String]
|
|
28002
|
+
#
|
|
28003
|
+
# @!attribute [rw] entities
|
|
28004
|
+
# The list of PII entity types to redact from the transcript (for
|
|
28005
|
+
# example, `NAME`, `ADDRESS`, `CREDIT_DEBIT_NUMBER`).
|
|
28006
|
+
# @return [Array<String>]
|
|
28007
|
+
#
|
|
28008
|
+
# @!attribute [rw] mask_mode
|
|
28009
|
+
# The masking mode that determines how redacted content is replaced in
|
|
28010
|
+
# the output. Valid values: `PII` (replaces with the literal string
|
|
28011
|
+
# \[PII\]) \| `EntityType` (replaces with the entity type name, for
|
|
28012
|
+
# example \[NAME\]).
|
|
28013
|
+
# @return [String]
|
|
28014
|
+
#
|
|
28015
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RedactionConfiguration AWS API Documentation
|
|
28016
|
+
#
|
|
28017
|
+
class RedactionConfiguration < Struct.new(
|
|
28018
|
+
:behavior,
|
|
28019
|
+
:policy,
|
|
28020
|
+
:entities,
|
|
28021
|
+
:mask_mode)
|
|
28022
|
+
SENSITIVE = []
|
|
28023
|
+
include Aws::Structure
|
|
28024
|
+
end
|
|
28025
|
+
|
|
27437
28026
|
# Well-formed data on a contact, used by agents to complete a contact
|
|
27438
28027
|
# request. You can have up to 4,096 UTF-8 bytes across all references
|
|
27439
28028
|
# for a contact.
|
|
@@ -28590,6 +29179,22 @@ module Aws::Connect
|
|
|
28590
29179
|
include Aws::Structure
|
|
28591
29180
|
end
|
|
28592
29181
|
|
|
29182
|
+
# The rules configuration for conversational analytics. Controls whether
|
|
29183
|
+
# Contact Lens rules are evaluated against the analytics output.
|
|
29184
|
+
#
|
|
29185
|
+
# @!attribute [rw] behavior
|
|
29186
|
+
# Controls whether Contact Lens rules are evaluated for the contact.
|
|
29187
|
+
# Valid values: `Enable` \| `Disable`.
|
|
29188
|
+
# @return [String]
|
|
29189
|
+
#
|
|
29190
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RulesConfiguration AWS API Documentation
|
|
29191
|
+
#
|
|
29192
|
+
class RulesConfiguration < Struct.new(
|
|
29193
|
+
:behavior)
|
|
29194
|
+
SENSITIVE = []
|
|
29195
|
+
include Aws::Structure
|
|
29196
|
+
end
|
|
29197
|
+
|
|
28593
29198
|
# Information about the Amazon Simple Storage Service (Amazon S3)
|
|
28594
29199
|
# storage type.
|
|
28595
29200
|
#
|
|
@@ -31093,6 +31698,21 @@ module Aws::Connect
|
|
|
31093
31698
|
#
|
|
31094
31699
|
class SendOutboundEmailResponse < Aws::EmptyStructure; end
|
|
31095
31700
|
|
|
31701
|
+
# The sentiment configuration for conversational analytics.
|
|
31702
|
+
#
|
|
31703
|
+
# @!attribute [rw] behavior
|
|
31704
|
+
# Controls whether sentiment analysis is applied to the analytics
|
|
31705
|
+
# output. Valid values: `Enable` \| `Disable`.
|
|
31706
|
+
# @return [String]
|
|
31707
|
+
#
|
|
31708
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SentimentConfiguration AWS API Documentation
|
|
31709
|
+
#
|
|
31710
|
+
class SentimentConfiguration < Struct.new(
|
|
31711
|
+
:behavior)
|
|
31712
|
+
SENSITIVE = []
|
|
31713
|
+
include Aws::Structure
|
|
31714
|
+
end
|
|
31715
|
+
|
|
31096
31716
|
# The service quota has been exceeded.
|
|
31097
31717
|
#
|
|
31098
31718
|
# @!attribute [rw] message
|
|
@@ -31544,6 +32164,68 @@ module Aws::Connect
|
|
|
31544
32164
|
include Aws::Structure
|
|
31545
32165
|
end
|
|
31546
32166
|
|
|
32167
|
+
# @!attribute [rw] instance_id
|
|
32168
|
+
# The identifier of the Connect Customer instance. You can [find the
|
|
32169
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
32170
|
+
#
|
|
32171
|
+
#
|
|
32172
|
+
#
|
|
32173
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
32174
|
+
# @return [String]
|
|
32175
|
+
#
|
|
32176
|
+
# @!attribute [rw] contact_id
|
|
32177
|
+
# The identifier of the contact in this instance of Connect Customer.
|
|
32178
|
+
# @return [String]
|
|
32179
|
+
#
|
|
32180
|
+
# @!attribute [rw] analytics_modes
|
|
32181
|
+
# The analytics modes to run for the contact. Valid values:
|
|
32182
|
+
# `PostContact`.
|
|
32183
|
+
# @return [Array<String>]
|
|
32184
|
+
#
|
|
32185
|
+
# @!attribute [rw] analytics_configuration
|
|
32186
|
+
# The configuration for the conversational analytics job.
|
|
32187
|
+
# @return [Types::AnalyticsConfiguration]
|
|
32188
|
+
#
|
|
32189
|
+
# @!attribute [rw] client_token
|
|
32190
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
32191
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
|
32192
|
+
# SDK populates this field. For more information about idempotency,
|
|
32193
|
+
# see [Making retries safe with idempotent APIs][1].
|
|
32194
|
+
#
|
|
32195
|
+
#
|
|
32196
|
+
#
|
|
32197
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
32198
|
+
# @return [String]
|
|
32199
|
+
#
|
|
32200
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartContactConversationalAnalyticsJobRequest AWS API Documentation
|
|
32201
|
+
#
|
|
32202
|
+
class StartContactConversationalAnalyticsJobRequest < Struct.new(
|
|
32203
|
+
:instance_id,
|
|
32204
|
+
:contact_id,
|
|
32205
|
+
:analytics_modes,
|
|
32206
|
+
:analytics_configuration,
|
|
32207
|
+
:client_token)
|
|
32208
|
+
SENSITIVE = []
|
|
32209
|
+
include Aws::Structure
|
|
32210
|
+
end
|
|
32211
|
+
|
|
32212
|
+
# @!attribute [rw] instance_id
|
|
32213
|
+
# The identifier of the Connect Customer instance.
|
|
32214
|
+
# @return [String]
|
|
32215
|
+
#
|
|
32216
|
+
# @!attribute [rw] contact_id
|
|
32217
|
+
# The identifier of the contact.
|
|
32218
|
+
# @return [String]
|
|
32219
|
+
#
|
|
32220
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartContactConversationalAnalyticsJobResponse AWS API Documentation
|
|
32221
|
+
#
|
|
32222
|
+
class StartContactConversationalAnalyticsJobResponse < Struct.new(
|
|
32223
|
+
:instance_id,
|
|
32224
|
+
:contact_id)
|
|
32225
|
+
SENSITIVE = []
|
|
32226
|
+
include Aws::Structure
|
|
32227
|
+
end
|
|
32228
|
+
|
|
31547
32229
|
# @!attribute [rw] instance_id
|
|
31548
32230
|
# The identifier of the Connect Customer instance. You can [find the
|
|
31549
32231
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
@@ -31887,6 +32569,55 @@ module Aws::Connect
|
|
|
31887
32569
|
include Aws::Structure
|
|
31888
32570
|
end
|
|
31889
32571
|
|
|
32572
|
+
# @!attribute [rw] instance_id
|
|
32573
|
+
# The identifier of the Connect Customer instance. You can [find the
|
|
32574
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
32575
|
+
#
|
|
32576
|
+
#
|
|
32577
|
+
#
|
|
32578
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
32579
|
+
# @return [String]
|
|
32580
|
+
#
|
|
32581
|
+
# @!attribute [rw] evaluation_form_id
|
|
32582
|
+
# The unique identifier for the evaluation form.
|
|
32583
|
+
# @return [String]
|
|
32584
|
+
#
|
|
32585
|
+
# @!attribute [rw] evaluation_form_version
|
|
32586
|
+
# The version of the evaluation form to validate.
|
|
32587
|
+
# @return [Integer]
|
|
32588
|
+
#
|
|
32589
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartEvaluationFormValidationRequest AWS API Documentation
|
|
32590
|
+
#
|
|
32591
|
+
class StartEvaluationFormValidationRequest < Struct.new(
|
|
32592
|
+
:instance_id,
|
|
32593
|
+
:evaluation_form_id,
|
|
32594
|
+
:evaluation_form_version)
|
|
32595
|
+
SENSITIVE = []
|
|
32596
|
+
include Aws::Structure
|
|
32597
|
+
end
|
|
32598
|
+
|
|
32599
|
+
# @!attribute [rw] evaluation_form_id
|
|
32600
|
+
# The unique identifier for the evaluation form.
|
|
32601
|
+
# @return [String]
|
|
32602
|
+
#
|
|
32603
|
+
# @!attribute [rw] evaluation_form_arn
|
|
32604
|
+
# The Amazon Resource Name (ARN) for the evaluation form resource.
|
|
32605
|
+
# @return [String]
|
|
32606
|
+
#
|
|
32607
|
+
# @!attribute [rw] evaluation_form_version
|
|
32608
|
+
# A version of the evaluation form.
|
|
32609
|
+
# @return [Integer]
|
|
32610
|
+
#
|
|
32611
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartEvaluationFormValidationResponse AWS API Documentation
|
|
32612
|
+
#
|
|
32613
|
+
class StartEvaluationFormValidationResponse < Struct.new(
|
|
32614
|
+
:evaluation_form_id,
|
|
32615
|
+
:evaluation_form_arn,
|
|
32616
|
+
:evaluation_form_version)
|
|
32617
|
+
SENSITIVE = []
|
|
32618
|
+
include Aws::Structure
|
|
32619
|
+
end
|
|
32620
|
+
|
|
31890
32621
|
# @!attribute [rw] source_endpoint
|
|
31891
32622
|
# Information about the endpoint.
|
|
31892
32623
|
# @return [Types::Endpoint]
|
|
@@ -33017,6 +33748,22 @@ module Aws::Connect
|
|
|
33017
33748
|
include Aws::Structure
|
|
33018
33749
|
end
|
|
33019
33750
|
|
|
33751
|
+
# The summary configuration for conversational analytics.
|
|
33752
|
+
#
|
|
33753
|
+
# @!attribute [rw] summary_modes
|
|
33754
|
+
# The summary modes that determine what type of summarization is
|
|
33755
|
+
# generated. Valid values: `PostContact` \| `AutomatedInteraction` \|
|
|
33756
|
+
# `ContactChain`.
|
|
33757
|
+
# @return [Array<String>]
|
|
33758
|
+
#
|
|
33759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SummaryConfiguration AWS API Documentation
|
|
33760
|
+
#
|
|
33761
|
+
class SummaryConfiguration < Struct.new(
|
|
33762
|
+
:summary_modes)
|
|
33763
|
+
SENSITIVE = []
|
|
33764
|
+
include Aws::Structure
|
|
33765
|
+
end
|
|
33766
|
+
|
|
33020
33767
|
# @!attribute [rw] instance_id
|
|
33021
33768
|
# The identifier of the Connect Customer instance. You can [find the
|
|
33022
33769
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|