aws-sdk-connect 1.235.0 → 1.237.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 +698 -4
- data/lib/aws-sdk-connect/client_api.rb +457 -0
- data/lib/aws-sdk-connect/errors.rb +16 -0
- data/lib/aws-sdk-connect/types.rb +1030 -20
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +235 -0
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +284 -3
- metadata +3 -3
|
@@ -5613,6 +5613,10 @@ module Aws::Connect
|
|
|
5613
5613
|
# "key2":"value2"} }.
|
|
5614
5614
|
# @return [Hash<String,String>]
|
|
5615
5615
|
#
|
|
5616
|
+
# @!attribute [rw] review_configuration
|
|
5617
|
+
# Configuration information about evaluation reviews.
|
|
5618
|
+
# @return [Types::EvaluationReviewConfiguration]
|
|
5619
|
+
#
|
|
5616
5620
|
# @!attribute [rw] target_configuration
|
|
5617
5621
|
# Configuration that specifies the target for the evaluation form.
|
|
5618
5622
|
# @return [Types::EvaluationFormTargetConfiguration]
|
|
@@ -5633,6 +5637,7 @@ module Aws::Connect
|
|
|
5633
5637
|
:client_token,
|
|
5634
5638
|
:as_draft,
|
|
5635
5639
|
:tags,
|
|
5640
|
+
:review_configuration,
|
|
5636
5641
|
:target_configuration,
|
|
5637
5642
|
:language_configuration)
|
|
5638
5643
|
SENSITIVE = []
|
|
@@ -6810,6 +6815,89 @@ module Aws::Connect
|
|
|
6810
6815
|
include Aws::Structure
|
|
6811
6816
|
end
|
|
6812
6817
|
|
|
6818
|
+
# @!attribute [rw] instance_id
|
|
6819
|
+
# The identifier of the Amazon Connect instance.
|
|
6820
|
+
# @return [String]
|
|
6821
|
+
#
|
|
6822
|
+
# @!attribute [rw] name
|
|
6823
|
+
# The name of the test.
|
|
6824
|
+
# @return [String]
|
|
6825
|
+
#
|
|
6826
|
+
# @!attribute [rw] description
|
|
6827
|
+
# The description of the test.
|
|
6828
|
+
# @return [String]
|
|
6829
|
+
#
|
|
6830
|
+
# @!attribute [rw] content
|
|
6831
|
+
# The JSON string that represents the content of the test.
|
|
6832
|
+
# @return [String]
|
|
6833
|
+
#
|
|
6834
|
+
# @!attribute [rw] entry_point
|
|
6835
|
+
# Defines the starting point for your test.
|
|
6836
|
+
# @return [Types::TestCaseEntryPoint]
|
|
6837
|
+
#
|
|
6838
|
+
# @!attribute [rw] initialization_data
|
|
6839
|
+
# Defines the initial custom attributes for your test.
|
|
6840
|
+
# @return [String]
|
|
6841
|
+
#
|
|
6842
|
+
# @!attribute [rw] status
|
|
6843
|
+
# Indicates the test status as either SAVED or PUBLISHED. The
|
|
6844
|
+
# PUBLISHED status will initiate validation on the content. The SAVED
|
|
6845
|
+
# status does not initiate validation of the content.
|
|
6846
|
+
# @return [String]
|
|
6847
|
+
#
|
|
6848
|
+
# @!attribute [rw] test_case_id
|
|
6849
|
+
# Id of the test case if you want to create it in a replica region
|
|
6850
|
+
# using Amazon Connect Global Resiliency
|
|
6851
|
+
# @return [String]
|
|
6852
|
+
#
|
|
6853
|
+
# @!attribute [rw] tags
|
|
6854
|
+
# The tags used to organize, track, or control access for this
|
|
6855
|
+
# resource.
|
|
6856
|
+
# @return [Hash<String,String>]
|
|
6857
|
+
#
|
|
6858
|
+
# @!attribute [rw] last_modified_time
|
|
6859
|
+
# The time at which the resource was last modified.
|
|
6860
|
+
# @return [Time]
|
|
6861
|
+
#
|
|
6862
|
+
# @!attribute [rw] last_modified_region
|
|
6863
|
+
# The region in which the resource was last modified
|
|
6864
|
+
# @return [String]
|
|
6865
|
+
#
|
|
6866
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateTestCaseRequest AWS API Documentation
|
|
6867
|
+
#
|
|
6868
|
+
class CreateTestCaseRequest < Struct.new(
|
|
6869
|
+
:instance_id,
|
|
6870
|
+
:name,
|
|
6871
|
+
:description,
|
|
6872
|
+
:content,
|
|
6873
|
+
:entry_point,
|
|
6874
|
+
:initialization_data,
|
|
6875
|
+
:status,
|
|
6876
|
+
:test_case_id,
|
|
6877
|
+
:tags,
|
|
6878
|
+
:last_modified_time,
|
|
6879
|
+
:last_modified_region)
|
|
6880
|
+
SENSITIVE = []
|
|
6881
|
+
include Aws::Structure
|
|
6882
|
+
end
|
|
6883
|
+
|
|
6884
|
+
# @!attribute [rw] test_case_id
|
|
6885
|
+
# The identifier of the test.
|
|
6886
|
+
# @return [String]
|
|
6887
|
+
#
|
|
6888
|
+
# @!attribute [rw] test_case_arn
|
|
6889
|
+
# The Amazon Resource Name (ARN) of the test.
|
|
6890
|
+
# @return [String]
|
|
6891
|
+
#
|
|
6892
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateTestCaseResponse AWS API Documentation
|
|
6893
|
+
#
|
|
6894
|
+
class CreateTestCaseResponse < Struct.new(
|
|
6895
|
+
:test_case_id,
|
|
6896
|
+
:test_case_arn)
|
|
6897
|
+
SENSITIVE = []
|
|
6898
|
+
include Aws::Structure
|
|
6899
|
+
end
|
|
6900
|
+
|
|
6813
6901
|
# @!attribute [rw] name
|
|
6814
6902
|
# The name for the traffic distribution group.
|
|
6815
6903
|
# @return [String]
|
|
@@ -8971,6 +9059,27 @@ module Aws::Connect
|
|
|
8971
9059
|
#
|
|
8972
9060
|
class DeleteTaskTemplateResponse < Aws::EmptyStructure; end
|
|
8973
9061
|
|
|
9062
|
+
# @!attribute [rw] instance_id
|
|
9063
|
+
# The identifier of the Amazon Connect instance.
|
|
9064
|
+
# @return [String]
|
|
9065
|
+
#
|
|
9066
|
+
# @!attribute [rw] test_case_id
|
|
9067
|
+
# The identifier of the test case to delete.
|
|
9068
|
+
# @return [String]
|
|
9069
|
+
#
|
|
9070
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteTestCaseRequest AWS API Documentation
|
|
9071
|
+
#
|
|
9072
|
+
class DeleteTestCaseRequest < Struct.new(
|
|
9073
|
+
:instance_id,
|
|
9074
|
+
:test_case_id)
|
|
9075
|
+
SENSITIVE = []
|
|
9076
|
+
include Aws::Structure
|
|
9077
|
+
end
|
|
9078
|
+
|
|
9079
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteTestCaseResponse AWS API Documentation
|
|
9080
|
+
#
|
|
9081
|
+
class DeleteTestCaseResponse < Aws::EmptyStructure; end
|
|
9082
|
+
|
|
8974
9083
|
# @!attribute [rw] traffic_distribution_group_id
|
|
8975
9084
|
# The identifier of the traffic distribution group. This can be the ID
|
|
8976
9085
|
# or the ARN of the traffic distribution group.
|
|
@@ -10116,6 +10225,42 @@ module Aws::Connect
|
|
|
10116
10225
|
include Aws::Structure
|
|
10117
10226
|
end
|
|
10118
10227
|
|
|
10228
|
+
# @!attribute [rw] instance_id
|
|
10229
|
+
# The identifier of the Amazon Connect instance.
|
|
10230
|
+
# @return [String]
|
|
10231
|
+
#
|
|
10232
|
+
# @!attribute [rw] test_case_id
|
|
10233
|
+
# The identifier of the test case.
|
|
10234
|
+
# @return [String]
|
|
10235
|
+
#
|
|
10236
|
+
# @!attribute [rw] status
|
|
10237
|
+
# The status of the test case version to retrieve. If not specified,
|
|
10238
|
+
# returns the published version if available, otherwise returns the
|
|
10239
|
+
# saved version.
|
|
10240
|
+
# @return [String]
|
|
10241
|
+
#
|
|
10242
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeTestCaseRequest AWS API Documentation
|
|
10243
|
+
#
|
|
10244
|
+
class DescribeTestCaseRequest < Struct.new(
|
|
10245
|
+
:instance_id,
|
|
10246
|
+
:test_case_id,
|
|
10247
|
+
:status)
|
|
10248
|
+
SENSITIVE = []
|
|
10249
|
+
include Aws::Structure
|
|
10250
|
+
end
|
|
10251
|
+
|
|
10252
|
+
# @!attribute [rw] test_case
|
|
10253
|
+
# The test case object containing all test case information.
|
|
10254
|
+
# @return [Types::TestCase]
|
|
10255
|
+
#
|
|
10256
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeTestCaseResponse AWS API Documentation
|
|
10257
|
+
#
|
|
10258
|
+
class DescribeTestCaseResponse < Struct.new(
|
|
10259
|
+
:test_case)
|
|
10260
|
+
SENSITIVE = []
|
|
10261
|
+
include Aws::Structure
|
|
10262
|
+
end
|
|
10263
|
+
|
|
10119
10264
|
# @!attribute [rw] traffic_distribution_group_id
|
|
10120
10265
|
# The identifier of the traffic distribution group. This can be the ID
|
|
10121
10266
|
# or the ARN if the API is being called in the Region where the
|
|
@@ -11862,6 +12007,11 @@ module Aws::Connect
|
|
|
11862
12007
|
# The automatic evaluation configuration of an evaluation form.
|
|
11863
12008
|
# @return [Types::EvaluationFormAutoEvaluationConfiguration]
|
|
11864
12009
|
#
|
|
12010
|
+
# @!attribute [rw] review_configuration
|
|
12011
|
+
# Configuration for evaluation review settings of this evaluation
|
|
12012
|
+
# form.
|
|
12013
|
+
# @return [Types::EvaluationReviewConfiguration]
|
|
12014
|
+
#
|
|
11865
12015
|
# @!attribute [rw] tags
|
|
11866
12016
|
# The tags used to organize, track, or control access for this
|
|
11867
12017
|
# resource. For example, \{ "Tags": \{"key1":"value1",
|
|
@@ -11893,6 +12043,7 @@ module Aws::Connect
|
|
|
11893
12043
|
:last_modified_time,
|
|
11894
12044
|
:last_modified_by,
|
|
11895
12045
|
:auto_evaluation_configuration,
|
|
12046
|
+
:review_configuration,
|
|
11896
12047
|
:tags,
|
|
11897
12048
|
:target_configuration,
|
|
11898
12049
|
:language_configuration)
|
|
@@ -11959,6 +12110,11 @@ module Aws::Connect
|
|
|
11959
12110
|
# Configuration for language settings of this evaluation form content.
|
|
11960
12111
|
# @return [Types::EvaluationFormLanguageConfiguration]
|
|
11961
12112
|
#
|
|
12113
|
+
# @!attribute [rw] review_configuration
|
|
12114
|
+
# Configuration for evaluation review settings of this evaluation form
|
|
12115
|
+
# content.
|
|
12116
|
+
# @return [Types::EvaluationReviewConfiguration]
|
|
12117
|
+
#
|
|
11962
12118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormContent AWS API Documentation
|
|
11963
12119
|
#
|
|
11964
12120
|
class EvaluationFormContent < Struct.new(
|
|
@@ -11971,7 +12127,8 @@ module Aws::Connect
|
|
|
11971
12127
|
:scoring_strategy,
|
|
11972
12128
|
:auto_evaluation_configuration,
|
|
11973
12129
|
:target_configuration,
|
|
11974
|
-
:language_configuration
|
|
12130
|
+
:language_configuration,
|
|
12131
|
+
:review_configuration)
|
|
11975
12132
|
SENSITIVE = []
|
|
11976
12133
|
include Aws::Structure
|
|
11977
12134
|
end
|
|
@@ -13000,6 +13157,10 @@ module Aws::Connect
|
|
|
13000
13157
|
# Information related to evaluation acknowledgement.
|
|
13001
13158
|
# @return [Types::EvaluationAcknowledgement]
|
|
13002
13159
|
#
|
|
13160
|
+
# @!attribute [rw] review
|
|
13161
|
+
# Information about reviews of this evaluation.
|
|
13162
|
+
# @return [Types::EvaluationReviewMetadata]
|
|
13163
|
+
#
|
|
13003
13164
|
# @!attribute [rw] contact_participant
|
|
13004
13165
|
# Information about a contact participant in this evaluation.
|
|
13005
13166
|
# @return [Types::EvaluationContactParticipant]
|
|
@@ -13018,6 +13179,7 @@ module Aws::Connect
|
|
|
13018
13179
|
:score,
|
|
13019
13180
|
:auto_evaluation,
|
|
13020
13181
|
:acknowledgement,
|
|
13182
|
+
:review,
|
|
13021
13183
|
:contact_participant,
|
|
13022
13184
|
:sampling_job_id)
|
|
13023
13185
|
SENSITIVE = []
|
|
@@ -13088,6 +13250,114 @@ module Aws::Connect
|
|
|
13088
13250
|
include Aws::Structure
|
|
13089
13251
|
end
|
|
13090
13252
|
|
|
13253
|
+
# Configuration settings for evaluation reviews.
|
|
13254
|
+
#
|
|
13255
|
+
# @!attribute [rw] review_notification_recipients
|
|
13256
|
+
# List of recipients who should be notified when a review is
|
|
13257
|
+
# requested.
|
|
13258
|
+
# @return [Array<Types::EvaluationReviewNotificationRecipient>]
|
|
13259
|
+
#
|
|
13260
|
+
# @!attribute [rw] eligibility_days
|
|
13261
|
+
# Number of days during which a request for review can be submitted
|
|
13262
|
+
# for evaluations created from this form.
|
|
13263
|
+
# @return [Integer]
|
|
13264
|
+
#
|
|
13265
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewConfiguration AWS API Documentation
|
|
13266
|
+
#
|
|
13267
|
+
class EvaluationReviewConfiguration < Struct.new(
|
|
13268
|
+
:review_notification_recipients,
|
|
13269
|
+
:eligibility_days)
|
|
13270
|
+
SENSITIVE = []
|
|
13271
|
+
include Aws::Structure
|
|
13272
|
+
end
|
|
13273
|
+
|
|
13274
|
+
# Metadata information about an evaluation review.
|
|
13275
|
+
#
|
|
13276
|
+
# @!attribute [rw] review_id
|
|
13277
|
+
# The unique identifier for the evaluation review.
|
|
13278
|
+
# @return [String]
|
|
13279
|
+
#
|
|
13280
|
+
# @!attribute [rw] created_time
|
|
13281
|
+
# The timestamp when the evaluation review was created.
|
|
13282
|
+
# @return [Time]
|
|
13283
|
+
#
|
|
13284
|
+
# @!attribute [rw] created_by
|
|
13285
|
+
# The user who created the evaluation review.
|
|
13286
|
+
# @return [String]
|
|
13287
|
+
#
|
|
13288
|
+
# @!attribute [rw] review_request_comments
|
|
13289
|
+
# Comments provided when requesting the evaluation review.
|
|
13290
|
+
# @return [Array<Types::EvaluationReviewRequestComment>]
|
|
13291
|
+
#
|
|
13292
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewMetadata AWS API Documentation
|
|
13293
|
+
#
|
|
13294
|
+
class EvaluationReviewMetadata < Struct.new(
|
|
13295
|
+
:review_id,
|
|
13296
|
+
:created_time,
|
|
13297
|
+
:created_by,
|
|
13298
|
+
:review_request_comments)
|
|
13299
|
+
SENSITIVE = []
|
|
13300
|
+
include Aws::Structure
|
|
13301
|
+
end
|
|
13302
|
+
|
|
13303
|
+
# Information about a recipient who should be notified when an
|
|
13304
|
+
# evaluation review is requested.
|
|
13305
|
+
#
|
|
13306
|
+
# @!attribute [rw] type
|
|
13307
|
+
# The type of notification recipient.
|
|
13308
|
+
# @return [String]
|
|
13309
|
+
#
|
|
13310
|
+
# @!attribute [rw] value
|
|
13311
|
+
# The value associated with the notification recipient type.
|
|
13312
|
+
# @return [Types::EvaluationReviewNotificationRecipientValue]
|
|
13313
|
+
#
|
|
13314
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewNotificationRecipient AWS API Documentation
|
|
13315
|
+
#
|
|
13316
|
+
class EvaluationReviewNotificationRecipient < Struct.new(
|
|
13317
|
+
:type,
|
|
13318
|
+
:value)
|
|
13319
|
+
SENSITIVE = []
|
|
13320
|
+
include Aws::Structure
|
|
13321
|
+
end
|
|
13322
|
+
|
|
13323
|
+
# The value information for an evaluation review notification recipient.
|
|
13324
|
+
#
|
|
13325
|
+
# @!attribute [rw] user_id
|
|
13326
|
+
# The user identifier for the notification recipient.
|
|
13327
|
+
# @return [String]
|
|
13328
|
+
#
|
|
13329
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewNotificationRecipientValue AWS API Documentation
|
|
13330
|
+
#
|
|
13331
|
+
class EvaluationReviewNotificationRecipientValue < Struct.new(
|
|
13332
|
+
:user_id)
|
|
13333
|
+
SENSITIVE = []
|
|
13334
|
+
include Aws::Structure
|
|
13335
|
+
end
|
|
13336
|
+
|
|
13337
|
+
# A comment provided when requesting an evaluation review.
|
|
13338
|
+
#
|
|
13339
|
+
# @!attribute [rw] comment
|
|
13340
|
+
# The text content of the review request comment.
|
|
13341
|
+
# @return [String]
|
|
13342
|
+
#
|
|
13343
|
+
# @!attribute [rw] created_time
|
|
13344
|
+
# The timestamp when the review request comment was created.
|
|
13345
|
+
# @return [Time]
|
|
13346
|
+
#
|
|
13347
|
+
# @!attribute [rw] created_by
|
|
13348
|
+
# The user who created the review request comment.
|
|
13349
|
+
# @return [String]
|
|
13350
|
+
#
|
|
13351
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewRequestComment AWS API Documentation
|
|
13352
|
+
#
|
|
13353
|
+
class EvaluationReviewRequestComment < Struct.new(
|
|
13354
|
+
:comment,
|
|
13355
|
+
:created_time,
|
|
13356
|
+
:created_by)
|
|
13357
|
+
SENSITIVE = []
|
|
13358
|
+
include Aws::Structure
|
|
13359
|
+
end
|
|
13360
|
+
|
|
13091
13361
|
# Information about scores of a contact evaluation item (section or
|
|
13092
13362
|
# question).
|
|
13093
13363
|
#
|
|
@@ -13540,6 +13810,35 @@ module Aws::Connect
|
|
|
13540
13810
|
include Aws::Structure
|
|
13541
13811
|
end
|
|
13542
13812
|
|
|
13813
|
+
# Contains information about a test case execution record.
|
|
13814
|
+
#
|
|
13815
|
+
# @!attribute [rw] observation_id
|
|
13816
|
+
# The identifier of the execution record.
|
|
13817
|
+
# @return [String]
|
|
13818
|
+
#
|
|
13819
|
+
# @!attribute [rw] status
|
|
13820
|
+
# The status of the action execution.
|
|
13821
|
+
# @return [String]
|
|
13822
|
+
#
|
|
13823
|
+
# @!attribute [rw] timestamp
|
|
13824
|
+
# The timestamp when the action was executed.
|
|
13825
|
+
# @return [Time]
|
|
13826
|
+
#
|
|
13827
|
+
# @!attribute [rw] record
|
|
13828
|
+
# The details of the executed record.
|
|
13829
|
+
# @return [String]
|
|
13830
|
+
#
|
|
13831
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ExecutionRecord AWS API Documentation
|
|
13832
|
+
#
|
|
13833
|
+
class ExecutionRecord < Struct.new(
|
|
13834
|
+
:observation_id,
|
|
13835
|
+
:status,
|
|
13836
|
+
:timestamp,
|
|
13837
|
+
:record)
|
|
13838
|
+
SENSITIVE = []
|
|
13839
|
+
include Aws::Structure
|
|
13840
|
+
end
|
|
13841
|
+
|
|
13543
13842
|
# An object to specify the expiration of a routing step.
|
|
13544
13843
|
#
|
|
13545
13844
|
# @!attribute [rw] duration_in_seconds
|
|
@@ -17211,6 +17510,55 @@ module Aws::Connect
|
|
|
17211
17510
|
include Aws::Structure
|
|
17212
17511
|
end
|
|
17213
17512
|
|
|
17513
|
+
# @!attribute [rw] instance_id
|
|
17514
|
+
# The identifier of the Amazon Connect instance.
|
|
17515
|
+
# @return [String]
|
|
17516
|
+
#
|
|
17517
|
+
# @!attribute [rw] test_case_id
|
|
17518
|
+
# The identifier of the test case.
|
|
17519
|
+
# @return [String]
|
|
17520
|
+
#
|
|
17521
|
+
# @!attribute [rw] test_case_execution_id
|
|
17522
|
+
# The identifier of the test case execution.
|
|
17523
|
+
# @return [String]
|
|
17524
|
+
#
|
|
17525
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetTestCaseExecutionSummaryRequest AWS API Documentation
|
|
17526
|
+
#
|
|
17527
|
+
class GetTestCaseExecutionSummaryRequest < Struct.new(
|
|
17528
|
+
:instance_id,
|
|
17529
|
+
:test_case_id,
|
|
17530
|
+
:test_case_execution_id)
|
|
17531
|
+
SENSITIVE = []
|
|
17532
|
+
include Aws::Structure
|
|
17533
|
+
end
|
|
17534
|
+
|
|
17535
|
+
# @!attribute [rw] start_time
|
|
17536
|
+
# The timestamp when the test case execution started.
|
|
17537
|
+
# @return [Time]
|
|
17538
|
+
#
|
|
17539
|
+
# @!attribute [rw] end_time
|
|
17540
|
+
# The timestamp when the test case execution ended.
|
|
17541
|
+
# @return [Time]
|
|
17542
|
+
#
|
|
17543
|
+
# @!attribute [rw] status
|
|
17544
|
+
# The status of the test case execution.
|
|
17545
|
+
# @return [String]
|
|
17546
|
+
#
|
|
17547
|
+
# @!attribute [rw] observation_summary
|
|
17548
|
+
# Summary statistics for the test case execution.
|
|
17549
|
+
# @return [Types::ObservationSummary]
|
|
17550
|
+
#
|
|
17551
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetTestCaseExecutionSummaryResponse AWS API Documentation
|
|
17552
|
+
#
|
|
17553
|
+
class GetTestCaseExecutionSummaryResponse < Struct.new(
|
|
17554
|
+
:start_time,
|
|
17555
|
+
:end_time,
|
|
17556
|
+
:status,
|
|
17557
|
+
:observation_summary)
|
|
17558
|
+
SENSITIVE = []
|
|
17559
|
+
include Aws::Structure
|
|
17560
|
+
end
|
|
17561
|
+
|
|
17214
17562
|
# @!attribute [rw] id
|
|
17215
17563
|
# The identifier of the traffic distribution group. This can be the ID
|
|
17216
17564
|
# or the ARN if the API is being called in the Region where the
|
|
@@ -18943,6 +19291,20 @@ module Aws::Connect
|
|
|
18943
19291
|
class Unknown < InvalidRequestExceptionReason; end
|
|
18944
19292
|
end
|
|
18945
19293
|
|
|
19294
|
+
# The test is not valid.
|
|
19295
|
+
#
|
|
19296
|
+
# @!attribute [rw] problems
|
|
19297
|
+
# The problems with the test. Please fix before trying again.
|
|
19298
|
+
# @return [Array<Types::ProblemDetail>]
|
|
19299
|
+
#
|
|
19300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InvalidTestCaseException AWS API Documentation
|
|
19301
|
+
#
|
|
19302
|
+
class InvalidTestCaseException < Struct.new(
|
|
19303
|
+
:problems)
|
|
19304
|
+
SENSITIVE = []
|
|
19305
|
+
include Aws::Structure
|
|
19306
|
+
end
|
|
19307
|
+
|
|
18946
19308
|
# A field that is invisible to an agent.
|
|
18947
19309
|
#
|
|
18948
19310
|
# @!attribute [rw] id
|
|
@@ -21946,16 +22308,21 @@ module Aws::Connect
|
|
|
21946
22308
|
include Aws::Structure
|
|
21947
22309
|
end
|
|
21948
22310
|
|
|
21949
|
-
# @!attribute [rw]
|
|
21950
|
-
# The identifier of the
|
|
21951
|
-
# or the ARN if the API is being called in the Region where the
|
|
21952
|
-
# traffic distribution group was created. The ARN must be provided if
|
|
21953
|
-
# the call is from the replicated Region.
|
|
22311
|
+
# @!attribute [rw] instance_id
|
|
22312
|
+
# The identifier of the Amazon Connect instance.
|
|
21954
22313
|
# @return [String]
|
|
21955
22314
|
#
|
|
21956
|
-
# @!attribute [rw]
|
|
21957
|
-
# The
|
|
21958
|
-
# @return [
|
|
22315
|
+
# @!attribute [rw] test_case_id
|
|
22316
|
+
# The identifier of the test case.
|
|
22317
|
+
# @return [String]
|
|
22318
|
+
#
|
|
22319
|
+
# @!attribute [rw] test_case_execution_id
|
|
22320
|
+
# The identifier of the test case execution.
|
|
22321
|
+
# @return [String]
|
|
22322
|
+
#
|
|
22323
|
+
# @!attribute [rw] status
|
|
22324
|
+
# Filter execution records by status.
|
|
22325
|
+
# @return [String]
|
|
21959
22326
|
#
|
|
21960
22327
|
# @!attribute [rw] next_token
|
|
21961
22328
|
# The token for the next set of results. Use the value returned in the
|
|
@@ -21963,28 +22330,189 @@ module Aws::Connect
|
|
|
21963
22330
|
# results.
|
|
21964
22331
|
# @return [String]
|
|
21965
22332
|
#
|
|
21966
|
-
#
|
|
22333
|
+
# @!attribute [rw] max_results
|
|
22334
|
+
# The maximum number of results to return per page.
|
|
22335
|
+
# @return [Integer]
|
|
21967
22336
|
#
|
|
21968
|
-
|
|
21969
|
-
|
|
21970
|
-
|
|
21971
|
-
:
|
|
22337
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTestCaseExecutionRecordsRequest AWS API Documentation
|
|
22338
|
+
#
|
|
22339
|
+
class ListTestCaseExecutionRecordsRequest < Struct.new(
|
|
22340
|
+
:instance_id,
|
|
22341
|
+
:test_case_id,
|
|
22342
|
+
:test_case_execution_id,
|
|
22343
|
+
:status,
|
|
22344
|
+
:next_token,
|
|
22345
|
+
:max_results)
|
|
21972
22346
|
SENSITIVE = []
|
|
21973
22347
|
include Aws::Structure
|
|
21974
22348
|
end
|
|
21975
22349
|
|
|
22350
|
+
# @!attribute [rw] execution_records
|
|
22351
|
+
# An array of test case execution record objects.
|
|
22352
|
+
# @return [Array<Types::ExecutionRecord>]
|
|
22353
|
+
#
|
|
21976
22354
|
# @!attribute [rw] next_token
|
|
21977
22355
|
# If there are additional results, this is the token for the next set
|
|
21978
22356
|
# of results.
|
|
21979
22357
|
# @return [String]
|
|
21980
22358
|
#
|
|
21981
|
-
#
|
|
21982
|
-
# A list of traffic distribution group users.
|
|
21983
|
-
# @return [Array<Types::TrafficDistributionGroupUserSummary>]
|
|
21984
|
-
#
|
|
21985
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTrafficDistributionGroupUsersResponse AWS API Documentation
|
|
22359
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTestCaseExecutionRecordsResponse AWS API Documentation
|
|
21986
22360
|
#
|
|
21987
|
-
class
|
|
22361
|
+
class ListTestCaseExecutionRecordsResponse < Struct.new(
|
|
22362
|
+
:execution_records,
|
|
22363
|
+
:next_token)
|
|
22364
|
+
SENSITIVE = []
|
|
22365
|
+
include Aws::Structure
|
|
22366
|
+
end
|
|
22367
|
+
|
|
22368
|
+
# @!attribute [rw] instance_id
|
|
22369
|
+
# The identifier of the Amazon Connect instance.
|
|
22370
|
+
# @return [String]
|
|
22371
|
+
#
|
|
22372
|
+
# @!attribute [rw] test_case_id
|
|
22373
|
+
# Filter executions by test case identifier.
|
|
22374
|
+
# @return [String]
|
|
22375
|
+
#
|
|
22376
|
+
# @!attribute [rw] test_case_name
|
|
22377
|
+
# Filter executions by test case name.
|
|
22378
|
+
# @return [String]
|
|
22379
|
+
#
|
|
22380
|
+
# @!attribute [rw] start_time
|
|
22381
|
+
# Filter executions that started after this time.
|
|
22382
|
+
# @return [Time]
|
|
22383
|
+
#
|
|
22384
|
+
# @!attribute [rw] end_time
|
|
22385
|
+
# Filter executions that started before this time.
|
|
22386
|
+
# @return [Time]
|
|
22387
|
+
#
|
|
22388
|
+
# @!attribute [rw] status
|
|
22389
|
+
# Filter executions by status.
|
|
22390
|
+
# @return [String]
|
|
22391
|
+
#
|
|
22392
|
+
# @!attribute [rw] next_token
|
|
22393
|
+
# The token for the next set of results. Use the value returned in the
|
|
22394
|
+
# previous response in the next request to retrieve the next set of
|
|
22395
|
+
# results.
|
|
22396
|
+
# @return [String]
|
|
22397
|
+
#
|
|
22398
|
+
# @!attribute [rw] max_results
|
|
22399
|
+
# The maximum number of results to return per page.
|
|
22400
|
+
# @return [Integer]
|
|
22401
|
+
#
|
|
22402
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTestCaseExecutionsRequest AWS API Documentation
|
|
22403
|
+
#
|
|
22404
|
+
class ListTestCaseExecutionsRequest < Struct.new(
|
|
22405
|
+
:instance_id,
|
|
22406
|
+
:test_case_id,
|
|
22407
|
+
:test_case_name,
|
|
22408
|
+
:start_time,
|
|
22409
|
+
:end_time,
|
|
22410
|
+
:status,
|
|
22411
|
+
:next_token,
|
|
22412
|
+
:max_results)
|
|
22413
|
+
SENSITIVE = []
|
|
22414
|
+
include Aws::Structure
|
|
22415
|
+
end
|
|
22416
|
+
|
|
22417
|
+
# @!attribute [rw] test_case_executions
|
|
22418
|
+
# An array of test case execution summary objects.
|
|
22419
|
+
# @return [Array<Types::TestCaseExecution>]
|
|
22420
|
+
#
|
|
22421
|
+
# @!attribute [rw] next_token
|
|
22422
|
+
# If there are additional results, this is the token for the next set
|
|
22423
|
+
# of results.
|
|
22424
|
+
# @return [String]
|
|
22425
|
+
#
|
|
22426
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTestCaseExecutionsResponse AWS API Documentation
|
|
22427
|
+
#
|
|
22428
|
+
class ListTestCaseExecutionsResponse < Struct.new(
|
|
22429
|
+
:test_case_executions,
|
|
22430
|
+
:next_token)
|
|
22431
|
+
SENSITIVE = []
|
|
22432
|
+
include Aws::Structure
|
|
22433
|
+
end
|
|
22434
|
+
|
|
22435
|
+
# @!attribute [rw] instance_id
|
|
22436
|
+
# The identifier of the Amazon Connect instance.
|
|
22437
|
+
# @return [String]
|
|
22438
|
+
#
|
|
22439
|
+
# @!attribute [rw] next_token
|
|
22440
|
+
# The token for the next set of results. Use the value returned in the
|
|
22441
|
+
# previous response in the next request to retrieve the next set of
|
|
22442
|
+
# results.
|
|
22443
|
+
# @return [String]
|
|
22444
|
+
#
|
|
22445
|
+
# @!attribute [rw] max_results
|
|
22446
|
+
# The maximum number of results to return per page.
|
|
22447
|
+
# @return [Integer]
|
|
22448
|
+
#
|
|
22449
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTestCasesRequest AWS API Documentation
|
|
22450
|
+
#
|
|
22451
|
+
class ListTestCasesRequest < Struct.new(
|
|
22452
|
+
:instance_id,
|
|
22453
|
+
:next_token,
|
|
22454
|
+
:max_results)
|
|
22455
|
+
SENSITIVE = []
|
|
22456
|
+
include Aws::Structure
|
|
22457
|
+
end
|
|
22458
|
+
|
|
22459
|
+
# @!attribute [rw] test_case_summary_list
|
|
22460
|
+
# Information about the tests.
|
|
22461
|
+
# @return [Array<Types::TestCaseSummary>]
|
|
22462
|
+
#
|
|
22463
|
+
# @!attribute [rw] next_token
|
|
22464
|
+
# If there are additional results, this is the token for the next set
|
|
22465
|
+
# of results.
|
|
22466
|
+
# @return [String]
|
|
22467
|
+
#
|
|
22468
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTestCasesResponse AWS API Documentation
|
|
22469
|
+
#
|
|
22470
|
+
class ListTestCasesResponse < Struct.new(
|
|
22471
|
+
:test_case_summary_list,
|
|
22472
|
+
:next_token)
|
|
22473
|
+
SENSITIVE = []
|
|
22474
|
+
include Aws::Structure
|
|
22475
|
+
end
|
|
22476
|
+
|
|
22477
|
+
# @!attribute [rw] traffic_distribution_group_id
|
|
22478
|
+
# The identifier of the traffic distribution group. This can be the ID
|
|
22479
|
+
# or the ARN if the API is being called in the Region where the
|
|
22480
|
+
# traffic distribution group was created. The ARN must be provided if
|
|
22481
|
+
# the call is from the replicated Region.
|
|
22482
|
+
# @return [String]
|
|
22483
|
+
#
|
|
22484
|
+
# @!attribute [rw] max_results
|
|
22485
|
+
# The maximum number of results to return per page.
|
|
22486
|
+
# @return [Integer]
|
|
22487
|
+
#
|
|
22488
|
+
# @!attribute [rw] next_token
|
|
22489
|
+
# The token for the next set of results. Use the value returned in the
|
|
22490
|
+
# previous response in the next request to retrieve the next set of
|
|
22491
|
+
# results.
|
|
22492
|
+
# @return [String]
|
|
22493
|
+
#
|
|
22494
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTrafficDistributionGroupUsersRequest AWS API Documentation
|
|
22495
|
+
#
|
|
22496
|
+
class ListTrafficDistributionGroupUsersRequest < Struct.new(
|
|
22497
|
+
:traffic_distribution_group_id,
|
|
22498
|
+
:max_results,
|
|
22499
|
+
:next_token)
|
|
22500
|
+
SENSITIVE = []
|
|
22501
|
+
include Aws::Structure
|
|
22502
|
+
end
|
|
22503
|
+
|
|
22504
|
+
# @!attribute [rw] next_token
|
|
22505
|
+
# If there are additional results, this is the token for the next set
|
|
22506
|
+
# of results.
|
|
22507
|
+
# @return [String]
|
|
22508
|
+
#
|
|
22509
|
+
# @!attribute [rw] traffic_distribution_group_user_summary_list
|
|
22510
|
+
# A list of traffic distribution group users.
|
|
22511
|
+
# @return [Array<Types::TrafficDistributionGroupUserSummary>]
|
|
22512
|
+
#
|
|
22513
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTrafficDistributionGroupUsersResponse AWS API Documentation
|
|
22514
|
+
#
|
|
22515
|
+
class ListTrafficDistributionGroupUsersResponse < Struct.new(
|
|
21988
22516
|
:next_token,
|
|
21989
22517
|
:traffic_distribution_group_user_summary_list)
|
|
21990
22518
|
SENSITIVE = []
|
|
@@ -23121,6 +23649,30 @@ module Aws::Connect
|
|
|
23121
23649
|
include Aws::Structure
|
|
23122
23650
|
end
|
|
23123
23651
|
|
|
23652
|
+
# Contains summary statistics about a test case execution.
|
|
23653
|
+
#
|
|
23654
|
+
# @!attribute [rw] total_observations
|
|
23655
|
+
# The total number of observations in the test case.
|
|
23656
|
+
# @return [Integer]
|
|
23657
|
+
#
|
|
23658
|
+
# @!attribute [rw] observations_passed
|
|
23659
|
+
# The number of observations that passed during execution.
|
|
23660
|
+
# @return [Integer]
|
|
23661
|
+
#
|
|
23662
|
+
# @!attribute [rw] observations_failed
|
|
23663
|
+
# The number of observations that failed during execution.
|
|
23664
|
+
# @return [Integer]
|
|
23665
|
+
#
|
|
23666
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ObservationSummary AWS API Documentation
|
|
23667
|
+
#
|
|
23668
|
+
class ObservationSummary < Struct.new(
|
|
23669
|
+
:total_observations,
|
|
23670
|
+
:observations_passed,
|
|
23671
|
+
:observations_failed)
|
|
23672
|
+
SENSITIVE = []
|
|
23673
|
+
include Aws::Structure
|
|
23674
|
+
end
|
|
23675
|
+
|
|
23124
23676
|
# Information about the hours of operations with the effective override
|
|
23125
23677
|
# applied.
|
|
23126
23678
|
#
|
|
@@ -28108,6 +28660,64 @@ module Aws::Connect
|
|
|
28108
28660
|
include Aws::Structure
|
|
28109
28661
|
end
|
|
28110
28662
|
|
|
28663
|
+
# @!attribute [rw] instance_id
|
|
28664
|
+
# The identifier of the Amazon Connect instance. You can find the
|
|
28665
|
+
# instance ID in the Amazon Resource Name (ARN) of the instance.
|
|
28666
|
+
# @return [String]
|
|
28667
|
+
#
|
|
28668
|
+
# @!attribute [rw] next_token
|
|
28669
|
+
# The token for the next set of results. Use the value returned in the
|
|
28670
|
+
# previous response in the next request to retrieve the next set of
|
|
28671
|
+
# results.
|
|
28672
|
+
# @return [String]
|
|
28673
|
+
#
|
|
28674
|
+
# @!attribute [rw] max_results
|
|
28675
|
+
# The maximum number of results to return per page.
|
|
28676
|
+
# @return [Integer]
|
|
28677
|
+
#
|
|
28678
|
+
# @!attribute [rw] search_filter
|
|
28679
|
+
# Filters to be applied to search results.
|
|
28680
|
+
# @return [Types::TestCaseSearchFilter]
|
|
28681
|
+
#
|
|
28682
|
+
# @!attribute [rw] search_criteria
|
|
28683
|
+
# The search criteria to be used to return test cases.
|
|
28684
|
+
# @return [Types::TestCaseSearchCriteria]
|
|
28685
|
+
#
|
|
28686
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchTestCasesRequest AWS API Documentation
|
|
28687
|
+
#
|
|
28688
|
+
class SearchTestCasesRequest < Struct.new(
|
|
28689
|
+
:instance_id,
|
|
28690
|
+
:next_token,
|
|
28691
|
+
:max_results,
|
|
28692
|
+
:search_filter,
|
|
28693
|
+
:search_criteria)
|
|
28694
|
+
SENSITIVE = []
|
|
28695
|
+
include Aws::Structure
|
|
28696
|
+
end
|
|
28697
|
+
|
|
28698
|
+
# @!attribute [rw] test_cases
|
|
28699
|
+
# Information about the test cases.
|
|
28700
|
+
# @return [Array<Types::TestCase>]
|
|
28701
|
+
#
|
|
28702
|
+
# @!attribute [rw] next_token
|
|
28703
|
+
# If there are additional results, this is the token for the next set
|
|
28704
|
+
# of results.
|
|
28705
|
+
# @return [String]
|
|
28706
|
+
#
|
|
28707
|
+
# @!attribute [rw] approximate_total_count
|
|
28708
|
+
# The total number of test cases which matched your search query.
|
|
28709
|
+
# @return [Integer]
|
|
28710
|
+
#
|
|
28711
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchTestCasesResponse AWS API Documentation
|
|
28712
|
+
#
|
|
28713
|
+
class SearchTestCasesResponse < Struct.new(
|
|
28714
|
+
:test_cases,
|
|
28715
|
+
:next_token,
|
|
28716
|
+
:approximate_total_count)
|
|
28717
|
+
SENSITIVE = []
|
|
28718
|
+
include Aws::Structure
|
|
28719
|
+
end
|
|
28720
|
+
|
|
28111
28721
|
# @!attribute [rw] instance_id
|
|
28112
28722
|
# The identifier of the Amazon Connect instance. You can find the
|
|
28113
28723
|
# instanceId in the ARN of the instance.
|
|
@@ -30468,6 +31078,57 @@ module Aws::Connect
|
|
|
30468
31078
|
include Aws::Structure
|
|
30469
31079
|
end
|
|
30470
31080
|
|
|
31081
|
+
# @!attribute [rw] instance_id
|
|
31082
|
+
# The identifier of the Amazon Connect instance.
|
|
31083
|
+
# @return [String]
|
|
31084
|
+
#
|
|
31085
|
+
# @!attribute [rw] test_case_id
|
|
31086
|
+
# The identifier of the test case to execute.
|
|
31087
|
+
# @return [String]
|
|
31088
|
+
#
|
|
31089
|
+
# @!attribute [rw] client_token
|
|
31090
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
31091
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
|
31092
|
+
# SDK populates this field. For more information about idempotency,
|
|
31093
|
+
# see [Making retries safe with idempotent APIs][1].
|
|
31094
|
+
#
|
|
31095
|
+
#
|
|
31096
|
+
#
|
|
31097
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
31098
|
+
# @return [String]
|
|
31099
|
+
#
|
|
31100
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTestCaseExecutionRequest AWS API Documentation
|
|
31101
|
+
#
|
|
31102
|
+
class StartTestCaseExecutionRequest < Struct.new(
|
|
31103
|
+
:instance_id,
|
|
31104
|
+
:test_case_id,
|
|
31105
|
+
:client_token)
|
|
31106
|
+
SENSITIVE = []
|
|
31107
|
+
include Aws::Structure
|
|
31108
|
+
end
|
|
31109
|
+
|
|
31110
|
+
# @!attribute [rw] test_case_execution_id
|
|
31111
|
+
# The identifier of the test case execution.
|
|
31112
|
+
# @return [String]
|
|
31113
|
+
#
|
|
31114
|
+
# @!attribute [rw] test_case_id
|
|
31115
|
+
# The identifier of the test case resource that was executed.
|
|
31116
|
+
# @return [String]
|
|
31117
|
+
#
|
|
31118
|
+
# @!attribute [rw] status
|
|
31119
|
+
# The status of a test case execution.
|
|
31120
|
+
# @return [String]
|
|
31121
|
+
#
|
|
31122
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTestCaseExecutionResponse AWS API Documentation
|
|
31123
|
+
#
|
|
31124
|
+
class StartTestCaseExecutionResponse < Struct.new(
|
|
31125
|
+
:test_case_execution_id,
|
|
31126
|
+
:test_case_id,
|
|
31127
|
+
:status)
|
|
31128
|
+
SENSITIVE = []
|
|
31129
|
+
include Aws::Structure
|
|
31130
|
+
end
|
|
31131
|
+
|
|
30471
31132
|
# @!attribute [rw] attributes
|
|
30472
31133
|
# A custom key-value pair using an attribute map. The attributes are
|
|
30473
31134
|
# standard Amazon Connect attributes, and can be accessed in flows
|
|
@@ -30776,6 +31437,44 @@ module Aws::Connect
|
|
|
30776
31437
|
#
|
|
30777
31438
|
class StopContactStreamingResponse < Aws::EmptyStructure; end
|
|
30778
31439
|
|
|
31440
|
+
# @!attribute [rw] instance_id
|
|
31441
|
+
# The identifier of the Amazon Connect instance.
|
|
31442
|
+
# @return [String]
|
|
31443
|
+
#
|
|
31444
|
+
# @!attribute [rw] test_case_execution_id
|
|
31445
|
+
# The identifier of the test case execution to stop.
|
|
31446
|
+
# @return [String]
|
|
31447
|
+
#
|
|
31448
|
+
# @!attribute [rw] test_case_id
|
|
31449
|
+
# The identifier of the test case.
|
|
31450
|
+
# @return [String]
|
|
31451
|
+
#
|
|
31452
|
+
# @!attribute [rw] client_token
|
|
31453
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
31454
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
|
31455
|
+
# SDK populates this field. For more information about idempotency,
|
|
31456
|
+
# see [Making retries safe with idempotent APIs][1].
|
|
31457
|
+
#
|
|
31458
|
+
#
|
|
31459
|
+
#
|
|
31460
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
31461
|
+
# @return [String]
|
|
31462
|
+
#
|
|
31463
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopTestCaseExecutionRequest AWS API Documentation
|
|
31464
|
+
#
|
|
31465
|
+
class StopTestCaseExecutionRequest < Struct.new(
|
|
31466
|
+
:instance_id,
|
|
31467
|
+
:test_case_execution_id,
|
|
31468
|
+
:test_case_id,
|
|
31469
|
+
:client_token)
|
|
31470
|
+
SENSITIVE = []
|
|
31471
|
+
include Aws::Structure
|
|
31472
|
+
end
|
|
31473
|
+
|
|
31474
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopTestCaseExecutionResponse AWS API Documentation
|
|
31475
|
+
#
|
|
31476
|
+
class StopTestCaseExecutionResponse < Aws::EmptyStructure; end
|
|
31477
|
+
|
|
30779
31478
|
# A leaf node condition which can be used to specify a string condition.
|
|
30780
31479
|
#
|
|
30781
31480
|
# @!attribute [rw] field_name
|
|
@@ -31361,6 +32060,225 @@ module Aws::Connect
|
|
|
31361
32060
|
include Aws::Structure
|
|
31362
32061
|
end
|
|
31363
32062
|
|
|
32063
|
+
# Contains information about a test case.
|
|
32064
|
+
#
|
|
32065
|
+
# @!attribute [rw] arn
|
|
32066
|
+
# The Amazon Resource Name (ARN) of the test case.
|
|
32067
|
+
# @return [String]
|
|
32068
|
+
#
|
|
32069
|
+
# @!attribute [rw] id
|
|
32070
|
+
# The identifier of the test case.
|
|
32071
|
+
# @return [String]
|
|
32072
|
+
#
|
|
32073
|
+
# @!attribute [rw] name
|
|
32074
|
+
# The name of the test case.
|
|
32075
|
+
# @return [String]
|
|
32076
|
+
#
|
|
32077
|
+
# @!attribute [rw] content
|
|
32078
|
+
# The JSON string that represents the content of the test.
|
|
32079
|
+
# @return [String]
|
|
32080
|
+
#
|
|
32081
|
+
# @!attribute [rw] entry_point
|
|
32082
|
+
# Defines the starting point for the test, including channel type and
|
|
32083
|
+
# parameters.
|
|
32084
|
+
# @return [Types::TestCaseEntryPoint]
|
|
32085
|
+
#
|
|
32086
|
+
# @!attribute [rw] initialization_data
|
|
32087
|
+
# Defines the test attributes for precise data representation.
|
|
32088
|
+
# @return [String]
|
|
32089
|
+
#
|
|
32090
|
+
# @!attribute [rw] description
|
|
32091
|
+
# The description of the test case.
|
|
32092
|
+
# @return [String]
|
|
32093
|
+
#
|
|
32094
|
+
# @!attribute [rw] status
|
|
32095
|
+
# Indicates the test status as either SAVED or PUBLISHED.
|
|
32096
|
+
# @return [String]
|
|
32097
|
+
#
|
|
32098
|
+
# @!attribute [rw] last_modified_time
|
|
32099
|
+
# The time at which the test case was last modified.
|
|
32100
|
+
# @return [Time]
|
|
32101
|
+
#
|
|
32102
|
+
# @!attribute [rw] last_modified_region
|
|
32103
|
+
# The region in which the test case was last modified.
|
|
32104
|
+
# @return [String]
|
|
32105
|
+
#
|
|
32106
|
+
# @!attribute [rw] tags
|
|
32107
|
+
# The tags used to organize, track, or control access for this
|
|
32108
|
+
# resource.
|
|
32109
|
+
# @return [Hash<String,String>]
|
|
32110
|
+
#
|
|
32111
|
+
# @!attribute [rw] test_case_sha_256
|
|
32112
|
+
# The SHA256 hash of the test case content.
|
|
32113
|
+
# @return [String]
|
|
32114
|
+
#
|
|
32115
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCase AWS API Documentation
|
|
32116
|
+
#
|
|
32117
|
+
class TestCase < Struct.new(
|
|
32118
|
+
:arn,
|
|
32119
|
+
:id,
|
|
32120
|
+
:name,
|
|
32121
|
+
:content,
|
|
32122
|
+
:entry_point,
|
|
32123
|
+
:initialization_data,
|
|
32124
|
+
:description,
|
|
32125
|
+
:status,
|
|
32126
|
+
:last_modified_time,
|
|
32127
|
+
:last_modified_region,
|
|
32128
|
+
:tags,
|
|
32129
|
+
:test_case_sha_256)
|
|
32130
|
+
SENSITIVE = []
|
|
32131
|
+
include Aws::Structure
|
|
32132
|
+
end
|
|
32133
|
+
|
|
32134
|
+
# Defines the starting point for a test case.
|
|
32135
|
+
#
|
|
32136
|
+
# @!attribute [rw] type
|
|
32137
|
+
# The type of entry point.
|
|
32138
|
+
# @return [String]
|
|
32139
|
+
#
|
|
32140
|
+
# @!attribute [rw] voice_call_entry_point_parameters
|
|
32141
|
+
# Parameters for voice call entry point.
|
|
32142
|
+
# @return [Types::VoiceCallEntryPointParameters]
|
|
32143
|
+
#
|
|
32144
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseEntryPoint AWS API Documentation
|
|
32145
|
+
#
|
|
32146
|
+
class TestCaseEntryPoint < Struct.new(
|
|
32147
|
+
:type,
|
|
32148
|
+
:voice_call_entry_point_parameters)
|
|
32149
|
+
SENSITIVE = []
|
|
32150
|
+
include Aws::Structure
|
|
32151
|
+
end
|
|
32152
|
+
|
|
32153
|
+
# Contains information about a test case execution.
|
|
32154
|
+
#
|
|
32155
|
+
# @!attribute [rw] start_time
|
|
32156
|
+
# The timestamp when the test case execution started.
|
|
32157
|
+
# @return [Time]
|
|
32158
|
+
#
|
|
32159
|
+
# @!attribute [rw] end_time
|
|
32160
|
+
# The timestamp when the test case execution ended.
|
|
32161
|
+
# @return [Time]
|
|
32162
|
+
#
|
|
32163
|
+
# @!attribute [rw] test_case_execution_id
|
|
32164
|
+
# The identifier of the test case execution.
|
|
32165
|
+
# @return [String]
|
|
32166
|
+
#
|
|
32167
|
+
# @!attribute [rw] test_case_id
|
|
32168
|
+
# The identifier of the test case.
|
|
32169
|
+
# @return [String]
|
|
32170
|
+
#
|
|
32171
|
+
# @!attribute [rw] test_case_execution_status
|
|
32172
|
+
# The status of the test case execution.
|
|
32173
|
+
# @return [String]
|
|
32174
|
+
#
|
|
32175
|
+
# @!attribute [rw] tags
|
|
32176
|
+
# The tags used to organize, track, or control access for this
|
|
32177
|
+
# resource.
|
|
32178
|
+
# @return [Hash<String,String>]
|
|
32179
|
+
#
|
|
32180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseExecution AWS API Documentation
|
|
32181
|
+
#
|
|
32182
|
+
class TestCaseExecution < Struct.new(
|
|
32183
|
+
:start_time,
|
|
32184
|
+
:end_time,
|
|
32185
|
+
:test_case_execution_id,
|
|
32186
|
+
:test_case_id,
|
|
32187
|
+
:test_case_execution_status,
|
|
32188
|
+
:tags)
|
|
32189
|
+
SENSITIVE = []
|
|
32190
|
+
include Aws::Structure
|
|
32191
|
+
end
|
|
32192
|
+
|
|
32193
|
+
# The search criteria to be used to return test cases.
|
|
32194
|
+
#
|
|
32195
|
+
# @!attribute [rw] or_conditions
|
|
32196
|
+
# A list of conditions which would be applied together with an OR
|
|
32197
|
+
# condition.
|
|
32198
|
+
# @return [Array<Types::TestCaseSearchCriteria>]
|
|
32199
|
+
#
|
|
32200
|
+
# @!attribute [rw] and_conditions
|
|
32201
|
+
# A list of conditions which would be applied together with an AND
|
|
32202
|
+
# condition.
|
|
32203
|
+
# @return [Array<Types::TestCaseSearchCriteria>]
|
|
32204
|
+
#
|
|
32205
|
+
# @!attribute [rw] string_condition
|
|
32206
|
+
# A leaf node condition which can be used to specify a string
|
|
32207
|
+
# condition.
|
|
32208
|
+
# @return [Types::StringCondition]
|
|
32209
|
+
#
|
|
32210
|
+
# @!attribute [rw] status_condition
|
|
32211
|
+
# The status of the test case.
|
|
32212
|
+
# @return [String]
|
|
32213
|
+
#
|
|
32214
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseSearchCriteria AWS API Documentation
|
|
32215
|
+
#
|
|
32216
|
+
class TestCaseSearchCriteria < Struct.new(
|
|
32217
|
+
:or_conditions,
|
|
32218
|
+
:and_conditions,
|
|
32219
|
+
:string_condition,
|
|
32220
|
+
:status_condition)
|
|
32221
|
+
SENSITIVE = []
|
|
32222
|
+
include Aws::Structure
|
|
32223
|
+
end
|
|
32224
|
+
|
|
32225
|
+
# Filters to be applied to search results.
|
|
32226
|
+
#
|
|
32227
|
+
# @!attribute [rw] tag_filter
|
|
32228
|
+
# An object that can be used to specify Tag conditions inside the
|
|
32229
|
+
# SearchFilter. This accepts an OR of AND (List of List) input where:
|
|
32230
|
+
# Top level list specifies conditions that need to be applied with OR
|
|
32231
|
+
# operator. Inner list specifies conditions that need to be applied
|
|
32232
|
+
# with AND operator.
|
|
32233
|
+
# @return [Types::ControlPlaneTagFilter]
|
|
32234
|
+
#
|
|
32235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseSearchFilter AWS API Documentation
|
|
32236
|
+
#
|
|
32237
|
+
class TestCaseSearchFilter < Struct.new(
|
|
32238
|
+
:tag_filter)
|
|
32239
|
+
SENSITIVE = []
|
|
32240
|
+
include Aws::Structure
|
|
32241
|
+
end
|
|
32242
|
+
|
|
32243
|
+
# Contains summary information about a test case.
|
|
32244
|
+
#
|
|
32245
|
+
# @!attribute [rw] id
|
|
32246
|
+
# The identifier of the test case.
|
|
32247
|
+
# @return [String]
|
|
32248
|
+
#
|
|
32249
|
+
# @!attribute [rw] arn
|
|
32250
|
+
# The Amazon Resource Name (ARN) of the test case.
|
|
32251
|
+
# @return [String]
|
|
32252
|
+
#
|
|
32253
|
+
# @!attribute [rw] name
|
|
32254
|
+
# The name of the test case.
|
|
32255
|
+
# @return [String]
|
|
32256
|
+
#
|
|
32257
|
+
# @!attribute [rw] status
|
|
32258
|
+
# The status of the test case.
|
|
32259
|
+
# @return [String]
|
|
32260
|
+
#
|
|
32261
|
+
# @!attribute [rw] last_modified_time
|
|
32262
|
+
# The time at which the test case was last modified.
|
|
32263
|
+
# @return [Time]
|
|
32264
|
+
#
|
|
32265
|
+
# @!attribute [rw] last_modified_region
|
|
32266
|
+
# The region in which the test case was last modified.
|
|
32267
|
+
# @return [String]
|
|
32268
|
+
#
|
|
32269
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseSummary AWS API Documentation
|
|
32270
|
+
#
|
|
32271
|
+
class TestCaseSummary < Struct.new(
|
|
32272
|
+
:id,
|
|
32273
|
+
:arn,
|
|
32274
|
+
:name,
|
|
32275
|
+
:status,
|
|
32276
|
+
:last_modified_time,
|
|
32277
|
+
:last_modified_region)
|
|
32278
|
+
SENSITIVE = []
|
|
32279
|
+
include Aws::Structure
|
|
32280
|
+
end
|
|
32281
|
+
|
|
31364
32282
|
# Contains information about the threshold for service level metrics.
|
|
31365
32283
|
#
|
|
31366
32284
|
# @!attribute [rw] comparison
|
|
@@ -32744,6 +33662,10 @@ module Aws::Connect
|
|
|
32744
33662
|
# Whether automated evaluations are enabled.
|
|
32745
33663
|
# @return [Types::EvaluationFormAutoEvaluationConfiguration]
|
|
32746
33664
|
#
|
|
33665
|
+
# @!attribute [rw] review_configuration
|
|
33666
|
+
# Configuration for evaluation review settings of the evaluation form.
|
|
33667
|
+
# @return [Types::EvaluationReviewConfiguration]
|
|
33668
|
+
#
|
|
32747
33669
|
# @!attribute [rw] as_draft
|
|
32748
33670
|
# A boolean flag indicating whether to update evaluation form to draft
|
|
32749
33671
|
# state.
|
|
@@ -32783,6 +33705,7 @@ module Aws::Connect
|
|
|
32783
33705
|
:items,
|
|
32784
33706
|
:scoring_strategy,
|
|
32785
33707
|
:auto_evaluation_configuration,
|
|
33708
|
+
:review_configuration,
|
|
32786
33709
|
:as_draft,
|
|
32787
33710
|
:client_token,
|
|
32788
33711
|
:target_configuration,
|
|
@@ -33969,6 +34892,69 @@ module Aws::Connect
|
|
|
33969
34892
|
include Aws::Structure
|
|
33970
34893
|
end
|
|
33971
34894
|
|
|
34895
|
+
# @!attribute [rw] instance_id
|
|
34896
|
+
# The identifier of the Amazon Connect instance.
|
|
34897
|
+
# @return [String]
|
|
34898
|
+
#
|
|
34899
|
+
# @!attribute [rw] test_case_id
|
|
34900
|
+
# The identifier of the test case to update.
|
|
34901
|
+
# @return [String]
|
|
34902
|
+
#
|
|
34903
|
+
# @!attribute [rw] content
|
|
34904
|
+
# The JSON string that represents the content of the test.
|
|
34905
|
+
# @return [String]
|
|
34906
|
+
#
|
|
34907
|
+
# @!attribute [rw] entry_point
|
|
34908
|
+
# Defines the starting point for your test.
|
|
34909
|
+
# @return [Types::TestCaseEntryPoint]
|
|
34910
|
+
#
|
|
34911
|
+
# @!attribute [rw] initialization_data
|
|
34912
|
+
# Defines the test attributes for precise data representation.
|
|
34913
|
+
# @return [String]
|
|
34914
|
+
#
|
|
34915
|
+
# @!attribute [rw] name
|
|
34916
|
+
# The name of the test case.
|
|
34917
|
+
# @return [String]
|
|
34918
|
+
#
|
|
34919
|
+
# @!attribute [rw] description
|
|
34920
|
+
# The description of the test case.
|
|
34921
|
+
# @return [String]
|
|
34922
|
+
#
|
|
34923
|
+
# @!attribute [rw] status
|
|
34924
|
+
# Indicates the test status as either SAVED or PUBLISHED. The
|
|
34925
|
+
# PUBLISHED status will initiate validation on the content. The SAVED
|
|
34926
|
+
# status does not initiate validation of the content.
|
|
34927
|
+
# @return [String]
|
|
34928
|
+
#
|
|
34929
|
+
# @!attribute [rw] last_modified_time
|
|
34930
|
+
# The time at which the resource was last modified.
|
|
34931
|
+
# @return [Time]
|
|
34932
|
+
#
|
|
34933
|
+
# @!attribute [rw] last_modified_region
|
|
34934
|
+
# The region in which the resource was last modified
|
|
34935
|
+
# @return [String]
|
|
34936
|
+
#
|
|
34937
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateTestCaseRequest AWS API Documentation
|
|
34938
|
+
#
|
|
34939
|
+
class UpdateTestCaseRequest < Struct.new(
|
|
34940
|
+
:instance_id,
|
|
34941
|
+
:test_case_id,
|
|
34942
|
+
:content,
|
|
34943
|
+
:entry_point,
|
|
34944
|
+
:initialization_data,
|
|
34945
|
+
:name,
|
|
34946
|
+
:description,
|
|
34947
|
+
:status,
|
|
34948
|
+
:last_modified_time,
|
|
34949
|
+
:last_modified_region)
|
|
34950
|
+
SENSITIVE = []
|
|
34951
|
+
include Aws::Structure
|
|
34952
|
+
end
|
|
34953
|
+
|
|
34954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateTestCaseResponse AWS API Documentation
|
|
34955
|
+
#
|
|
34956
|
+
class UpdateTestCaseResponse < Aws::EmptyStructure; end
|
|
34957
|
+
|
|
33972
34958
|
# @!attribute [rw] id
|
|
33973
34959
|
# The identifier of the traffic distribution group. This can be the ID
|
|
33974
34960
|
# or the ARN if the API is being called in the Region where the
|
|
@@ -35687,6 +36673,30 @@ module Aws::Connect
|
|
|
35687
36673
|
include Aws::Structure
|
|
35688
36674
|
end
|
|
35689
36675
|
|
|
36676
|
+
# Parameters for initiating a voice call test.
|
|
36677
|
+
#
|
|
36678
|
+
# @!attribute [rw] source_phone_number
|
|
36679
|
+
# The source phone number for the test.
|
|
36680
|
+
# @return [String]
|
|
36681
|
+
#
|
|
36682
|
+
# @!attribute [rw] destination_phone_number
|
|
36683
|
+
# The destination phone number for the test.
|
|
36684
|
+
# @return [String]
|
|
36685
|
+
#
|
|
36686
|
+
# @!attribute [rw] flow_id
|
|
36687
|
+
# The flow identifier for the test.
|
|
36688
|
+
# @return [String]
|
|
36689
|
+
#
|
|
36690
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/VoiceCallEntryPointParameters AWS API Documentation
|
|
36691
|
+
#
|
|
36692
|
+
class VoiceCallEntryPointParameters < Struct.new(
|
|
36693
|
+
:source_phone_number,
|
|
36694
|
+
:destination_phone_number,
|
|
36695
|
+
:flow_id)
|
|
36696
|
+
SENSITIVE = []
|
|
36697
|
+
include Aws::Structure
|
|
36698
|
+
end
|
|
36699
|
+
|
|
35690
36700
|
# Contains information about the recording configuration settings.
|
|
35691
36701
|
#
|
|
35692
36702
|
# @!attribute [rw] voice_recording_track
|