aws-sdk-connect 1.234.0 → 1.236.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +318 -4
- data/lib/aws-sdk-connect/client_api.rb +192 -0
- data/lib/aws-sdk-connect/types.rb +522 -4
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +86 -2
- data/sig/types.rbs +119 -3
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ad0adb52aeadbc4fe965381a62d35d5f7cd809704fe44221992feba5b9ceb68
|
|
4
|
+
data.tar.gz: 54ad3d2b39a0f01cf40631b425845c59cef6d0f07fa07d57150e702001888079
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9ab9b2d4ff0651539e99fb574b759e299909d47a4e13c29f93506fd04f595227f70740838d5f7c940ade338c403ebe4809e1de65146c9ef6ee72f4534f19799
|
|
7
|
+
data.tar.gz: 8c2d6e374e7fa130d550ea6ea14ad6051da76fa47b559f461d624641a6042de659f322420f071776e5befc5261020cff34234aa5035a243bc2df9650fece3189
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.236.0 (2026-01-16)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support to allow customers to create form with Dispute configuration
|
|
8
|
+
|
|
9
|
+
1.235.0 (2026-01-14)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Amazon Connect makes it easier to manage contact center operating hours by enabling automated scheduling for recurring events like holidays and maintenance windows. Set up recurring patterns (weekly, monthly, etc.) or link to another hours of operation to inherit overrides.
|
|
13
|
+
|
|
4
14
|
1.234.0 (2026-01-08)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.236.0
|
|
@@ -974,6 +974,52 @@ module Aws::Connect
|
|
|
974
974
|
req.send_request(options)
|
|
975
975
|
end
|
|
976
976
|
|
|
977
|
+
# Associates a set of hours of operations with another hours of
|
|
978
|
+
# operation. Refer to Administrator Guide [ here ][1] for more
|
|
979
|
+
# information on inheriting overrides from parent hours of operation(s).
|
|
980
|
+
#
|
|
981
|
+
#
|
|
982
|
+
#
|
|
983
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
|
|
984
|
+
#
|
|
985
|
+
# @option params [required, String] :instance_id
|
|
986
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
987
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
988
|
+
#
|
|
989
|
+
#
|
|
990
|
+
#
|
|
991
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
992
|
+
#
|
|
993
|
+
# @option params [required, String] :hours_of_operation_id
|
|
994
|
+
# The identifier of the child hours of operation.
|
|
995
|
+
#
|
|
996
|
+
# @option params [required, Array<Types::ParentHoursOfOperationConfig>] :parent_hours_of_operation_configs
|
|
997
|
+
# The Amazon Resource Names (ARNs) of the parent hours of operation
|
|
998
|
+
# resources to associate with the child hours of operation resource.
|
|
999
|
+
#
|
|
1000
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1001
|
+
#
|
|
1002
|
+
# @example Request syntax with placeholder values
|
|
1003
|
+
#
|
|
1004
|
+
# resp = client.associate_hours_of_operations({
|
|
1005
|
+
# instance_id: "InstanceId", # required
|
|
1006
|
+
# hours_of_operation_id: "HoursOfOperationId", # required
|
|
1007
|
+
# parent_hours_of_operation_configs: [ # required
|
|
1008
|
+
# {
|
|
1009
|
+
# hours_of_operation_id: "HoursOfOperationId",
|
|
1010
|
+
# },
|
|
1011
|
+
# ],
|
|
1012
|
+
# })
|
|
1013
|
+
#
|
|
1014
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateHoursOfOperations AWS API Documentation
|
|
1015
|
+
#
|
|
1016
|
+
# @overload associate_hours_of_operations(params = {})
|
|
1017
|
+
# @param [Hash] params ({})
|
|
1018
|
+
def associate_hours_of_operations(params = {}, options = {})
|
|
1019
|
+
req = build_request(:associate_hours_of_operations, params)
|
|
1020
|
+
req.send_request(options)
|
|
1021
|
+
end
|
|
1022
|
+
|
|
977
1023
|
# This API is in preview release for Amazon Connect and is subject to
|
|
978
1024
|
# change.
|
|
979
1025
|
#
|
|
@@ -1289,6 +1335,9 @@ module Aws::Connect
|
|
|
1289
1335
|
# @option params [Array<Types::RoutingProfileManualAssignmentQueueConfig>] :manual_assignment_queue_configs
|
|
1290
1336
|
# The manual assignment queues to associate with this routing profile.
|
|
1291
1337
|
#
|
|
1338
|
+
# Note: Use this config for chat, email, and task contacts. It does not
|
|
1339
|
+
# support voice contacts.
|
|
1340
|
+
#
|
|
1292
1341
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1293
1342
|
#
|
|
1294
1343
|
# @example Request syntax with placeholder values
|
|
@@ -3206,6 +3255,9 @@ module Aws::Connect
|
|
|
3206
3255
|
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
|
3207
3256
|
# }.
|
|
3208
3257
|
#
|
|
3258
|
+
# @option params [Types::EvaluationReviewConfiguration] :review_configuration
|
|
3259
|
+
# Configuration information about evaluation reviews.
|
|
3260
|
+
#
|
|
3209
3261
|
# @option params [Types::EvaluationFormTargetConfiguration] :target_configuration
|
|
3210
3262
|
# Configuration that specifies the target for the evaluation form.
|
|
3211
3263
|
#
|
|
@@ -3368,6 +3420,17 @@ module Aws::Connect
|
|
|
3368
3420
|
# tags: {
|
|
3369
3421
|
# "TagKey" => "TagValue",
|
|
3370
3422
|
# },
|
|
3423
|
+
# review_configuration: {
|
|
3424
|
+
# review_notification_recipients: [ # required
|
|
3425
|
+
# {
|
|
3426
|
+
# type: "USER_ID", # required, accepts USER_ID
|
|
3427
|
+
# value: { # required
|
|
3428
|
+
# user_id: "ResourceId",
|
|
3429
|
+
# },
|
|
3430
|
+
# },
|
|
3431
|
+
# ],
|
|
3432
|
+
# eligibility_days: 1,
|
|
3433
|
+
# },
|
|
3371
3434
|
# target_configuration: {
|
|
3372
3435
|
# contact_interaction_type: "AGENT", # required, accepts AGENT, AUTOMATED
|
|
3373
3436
|
# },
|
|
@@ -3413,6 +3476,17 @@ module Aws::Connect
|
|
|
3413
3476
|
# Configuration information for the hours of operation: day, start time,
|
|
3414
3477
|
# and end time.
|
|
3415
3478
|
#
|
|
3479
|
+
# @option params [Array<Types::ParentHoursOfOperationConfig>] :parent_hours_of_operation_configs
|
|
3480
|
+
# Configuration for parent hours of operations. Eg: ResourceArn.
|
|
3481
|
+
#
|
|
3482
|
+
# For more information about parent hours of operations, see [Link
|
|
3483
|
+
# overrides from different hours of operation][1] in the <i>
|
|
3484
|
+
# Administrator Guide</i>.
|
|
3485
|
+
#
|
|
3486
|
+
#
|
|
3487
|
+
#
|
|
3488
|
+
# [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
|
|
3489
|
+
#
|
|
3416
3490
|
# @option params [Hash<String,String>] :tags
|
|
3417
3491
|
# The tags used to organize, track, or control access for this resource.
|
|
3418
3492
|
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
|
@@ -3443,6 +3517,11 @@ module Aws::Connect
|
|
|
3443
3517
|
# },
|
|
3444
3518
|
# },
|
|
3445
3519
|
# ],
|
|
3520
|
+
# parent_hours_of_operation_configs: [
|
|
3521
|
+
# {
|
|
3522
|
+
# hours_of_operation_id: "HoursOfOperationId",
|
|
3523
|
+
# },
|
|
3524
|
+
# ],
|
|
3446
3525
|
# tags: {
|
|
3447
3526
|
# "TagKey" => "TagValue",
|
|
3448
3527
|
# },
|
|
@@ -3487,6 +3566,20 @@ module Aws::Connect
|
|
|
3487
3566
|
# @option params [required, String] :effective_till
|
|
3488
3567
|
# The date until when the hours of operation override is effective.
|
|
3489
3568
|
#
|
|
3569
|
+
# @option params [Types::RecurrenceConfig] :recurrence_config
|
|
3570
|
+
# Configuration for a recurring event.
|
|
3571
|
+
#
|
|
3572
|
+
# @option params [String] :override_type
|
|
3573
|
+
# Whether the override will be defined as a *standard* or as a
|
|
3574
|
+
# *recurring event*.
|
|
3575
|
+
#
|
|
3576
|
+
# For more information about how override types are applied, see [Build
|
|
3577
|
+
# your list of overrides][1] in the <i> Administrator Guide</i>.
|
|
3578
|
+
#
|
|
3579
|
+
#
|
|
3580
|
+
#
|
|
3581
|
+
# [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
|
|
3582
|
+
#
|
|
3490
3583
|
# @return [Types::CreateHoursOfOperationOverrideResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3491
3584
|
#
|
|
3492
3585
|
# * {Types::CreateHoursOfOperationOverrideResponse#hours_of_operation_override_id #hours_of_operation_override_id} => String
|
|
@@ -3513,6 +3606,16 @@ module Aws::Connect
|
|
|
3513
3606
|
# ],
|
|
3514
3607
|
# effective_from: "HoursOfOperationOverrideYearMonthDayDateFormat", # required
|
|
3515
3608
|
# effective_till: "HoursOfOperationOverrideYearMonthDayDateFormat", # required
|
|
3609
|
+
# recurrence_config: {
|
|
3610
|
+
# recurrence_pattern: { # required
|
|
3611
|
+
# frequency: "WEEKLY", # required, accepts WEEKLY, MONTHLY, YEARLY
|
|
3612
|
+
# interval: 1, # required
|
|
3613
|
+
# by_month: [1],
|
|
3614
|
+
# by_month_day: [1],
|
|
3615
|
+
# by_weekday_occurrence: [1],
|
|
3616
|
+
# },
|
|
3617
|
+
# },
|
|
3618
|
+
# override_type: "STANDARD", # accepts STANDARD, OPEN, CLOSED
|
|
3516
3619
|
# })
|
|
3517
3620
|
#
|
|
3518
3621
|
# @example Response structure
|
|
@@ -4319,6 +4422,9 @@ module Aws::Connect
|
|
|
4319
4422
|
# quota of 50 queues per routing profile per instance that is listed in
|
|
4320
4423
|
# Amazon Connect service quotas.
|
|
4321
4424
|
#
|
|
4425
|
+
# Note: Use this config for chat, email, and task contacts. It does not
|
|
4426
|
+
# support voice contacts.
|
|
4427
|
+
#
|
|
4322
4428
|
# @option params [required, Array<Types::MediaConcurrency>] :media_concurrencies
|
|
4323
4429
|
# The channels that agents can handle in the Contact Control Panel (CCP)
|
|
4324
4430
|
# for this routing profile.
|
|
@@ -7218,6 +7324,13 @@ module Aws::Connect
|
|
|
7218
7324
|
# resp.evaluation.metadata.acknowledgement.acknowledged_time #=> Time
|
|
7219
7325
|
# resp.evaluation.metadata.acknowledgement.acknowledged_by #=> String
|
|
7220
7326
|
# resp.evaluation.metadata.acknowledgement.acknowledger_comment #=> String
|
|
7327
|
+
# resp.evaluation.metadata.review.review_id #=> String
|
|
7328
|
+
# resp.evaluation.metadata.review.created_time #=> Time
|
|
7329
|
+
# resp.evaluation.metadata.review.created_by #=> String
|
|
7330
|
+
# resp.evaluation.metadata.review.review_request_comments #=> Array
|
|
7331
|
+
# resp.evaluation.metadata.review.review_request_comments[0].comment #=> String
|
|
7332
|
+
# resp.evaluation.metadata.review.review_request_comments[0].created_time #=> Time
|
|
7333
|
+
# resp.evaluation.metadata.review.review_request_comments[0].created_by #=> String
|
|
7221
7334
|
# resp.evaluation.metadata.contact_participant.contact_participant_role #=> String, one of "AGENT", "SYSTEM", "CUSTOM_BOT"
|
|
7222
7335
|
# resp.evaluation.metadata.contact_participant.contact_participant_id #=> String
|
|
7223
7336
|
# resp.evaluation.metadata.sampling_job_id #=> String
|
|
@@ -7256,7 +7369,7 @@ module Aws::Connect
|
|
|
7256
7369
|
# resp.evaluation.answers["ResourceId"].suggested_answers[0].analysis_details.contact_lens.matched_rule_categories[0].points_of_interest[0].transcript_segment #=> String
|
|
7257
7370
|
# resp.evaluation.notes #=> Hash
|
|
7258
7371
|
# resp.evaluation.notes["ResourceId"].value #=> String
|
|
7259
|
-
# resp.evaluation.status #=> String, one of "DRAFT", "SUBMITTED"
|
|
7372
|
+
# resp.evaluation.status #=> String, one of "DRAFT", "SUBMITTED", "REVIEW_REQUESTED", "UNDER_REVIEW"
|
|
7260
7373
|
# resp.evaluation.scores #=> Hash
|
|
7261
7374
|
# resp.evaluation.scores["ResourceId"].percentage #=> Float
|
|
7262
7375
|
# resp.evaluation.scores["ResourceId"].not_applicable #=> Boolean
|
|
@@ -7336,6 +7449,10 @@ module Aws::Connect
|
|
|
7336
7449
|
# resp.evaluation_form.auto_evaluation_configuration.enabled #=> Boolean
|
|
7337
7450
|
# resp.evaluation_form.target_configuration.contact_interaction_type #=> String, one of "AGENT", "AUTOMATED"
|
|
7338
7451
|
# resp.evaluation_form.language_configuration.form_language #=> String, one of "de-DE", "en-US", "es-ES", "fr-FR", "it-IT", "pt-BR"
|
|
7452
|
+
# resp.evaluation_form.review_configuration.review_notification_recipients #=> Array
|
|
7453
|
+
# resp.evaluation_form.review_configuration.review_notification_recipients[0].type #=> String, one of "USER_ID"
|
|
7454
|
+
# resp.evaluation_form.review_configuration.review_notification_recipients[0].value.user_id #=> String
|
|
7455
|
+
# resp.evaluation_form.review_configuration.eligibility_days #=> Integer
|
|
7339
7456
|
#
|
|
7340
7457
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactEvaluation AWS API Documentation
|
|
7341
7458
|
#
|
|
@@ -7797,6 +7914,10 @@ module Aws::Connect
|
|
|
7797
7914
|
# resp.evaluation_form.last_modified_time #=> Time
|
|
7798
7915
|
# resp.evaluation_form.last_modified_by #=> String
|
|
7799
7916
|
# resp.evaluation_form.auto_evaluation_configuration.enabled #=> Boolean
|
|
7917
|
+
# resp.evaluation_form.review_configuration.review_notification_recipients #=> Array
|
|
7918
|
+
# resp.evaluation_form.review_configuration.review_notification_recipients[0].type #=> String, one of "USER_ID"
|
|
7919
|
+
# resp.evaluation_form.review_configuration.review_notification_recipients[0].value.user_id #=> String
|
|
7920
|
+
# resp.evaluation_form.review_configuration.eligibility_days #=> Integer
|
|
7800
7921
|
# resp.evaluation_form.tags #=> Hash
|
|
7801
7922
|
# resp.evaluation_form.tags["TagKey"] #=> String
|
|
7802
7923
|
# resp.evaluation_form.target_configuration.contact_interaction_type #=> String, one of "AGENT", "AUTOMATED"
|
|
@@ -7848,6 +7969,10 @@ module Aws::Connect
|
|
|
7848
7969
|
# resp.hours_of_operation.config[0].start_time.minutes #=> Integer
|
|
7849
7970
|
# resp.hours_of_operation.config[0].end_time.hours #=> Integer
|
|
7850
7971
|
# resp.hours_of_operation.config[0].end_time.minutes #=> Integer
|
|
7972
|
+
# resp.hours_of_operation.parent_hours_of_operations #=> Array
|
|
7973
|
+
# resp.hours_of_operation.parent_hours_of_operations[0].name #=> String
|
|
7974
|
+
# resp.hours_of_operation.parent_hours_of_operations[0].id #=> String
|
|
7975
|
+
# resp.hours_of_operation.parent_hours_of_operations[0].arn #=> String
|
|
7851
7976
|
# resp.hours_of_operation.tags #=> Hash
|
|
7852
7977
|
# resp.hours_of_operation.tags["TagKey"] #=> String
|
|
7853
7978
|
# resp.hours_of_operation.last_modified_time #=> Time
|
|
@@ -7900,6 +8025,15 @@ module Aws::Connect
|
|
|
7900
8025
|
# resp.hours_of_operation_override.config[0].end_time.minutes #=> Integer
|
|
7901
8026
|
# resp.hours_of_operation_override.effective_from #=> String
|
|
7902
8027
|
# resp.hours_of_operation_override.effective_till #=> String
|
|
8028
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.frequency #=> String, one of "WEEKLY", "MONTHLY", "YEARLY"
|
|
8029
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.interval #=> Integer
|
|
8030
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.by_month #=> Array
|
|
8031
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.by_month[0] #=> Integer
|
|
8032
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.by_month_day #=> Array
|
|
8033
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.by_month_day[0] #=> Integer
|
|
8034
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.by_weekday_occurrence #=> Array
|
|
8035
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.by_weekday_occurrence[0] #=> Integer
|
|
8036
|
+
# resp.hours_of_operation_override.override_type #=> String, one of "STANDARD", "OPEN", "CLOSED"
|
|
7903
8037
|
#
|
|
7904
8038
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeHoursOfOperationOverride AWS API Documentation
|
|
7905
8039
|
#
|
|
@@ -9301,6 +9435,48 @@ module Aws::Connect
|
|
|
9301
9435
|
req.send_request(options)
|
|
9302
9436
|
end
|
|
9303
9437
|
|
|
9438
|
+
# Disassociates a set of hours of operations with another hours of
|
|
9439
|
+
# operation. Refer to Administrator Guide [ here ][1] for more
|
|
9440
|
+
# information on inheriting overrides from parent hours of operation(s).
|
|
9441
|
+
#
|
|
9442
|
+
#
|
|
9443
|
+
#
|
|
9444
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
|
|
9445
|
+
#
|
|
9446
|
+
# @option params [required, String] :instance_id
|
|
9447
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
9448
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
9449
|
+
#
|
|
9450
|
+
#
|
|
9451
|
+
#
|
|
9452
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
9453
|
+
#
|
|
9454
|
+
# @option params [required, String] :hours_of_operation_id
|
|
9455
|
+
# The identifier of the child hours of operation.
|
|
9456
|
+
#
|
|
9457
|
+
# @option params [required, Array<String>] :parent_hours_of_operation_ids
|
|
9458
|
+
# The Amazon Resource Names (ARNs) of the parent hours of operation
|
|
9459
|
+
# resources to disassociate with the child hours of operation resource.
|
|
9460
|
+
#
|
|
9461
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
9462
|
+
#
|
|
9463
|
+
# @example Request syntax with placeholder values
|
|
9464
|
+
#
|
|
9465
|
+
# resp = client.disassociate_hours_of_operations({
|
|
9466
|
+
# instance_id: "InstanceId", # required
|
|
9467
|
+
# hours_of_operation_id: "HoursOfOperationId", # required
|
|
9468
|
+
# parent_hours_of_operation_ids: ["HoursOfOperationId"], # required
|
|
9469
|
+
# })
|
|
9470
|
+
#
|
|
9471
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateHoursOfOperations AWS API Documentation
|
|
9472
|
+
#
|
|
9473
|
+
# @overload disassociate_hours_of_operations(params = {})
|
|
9474
|
+
# @param [Hash] params ({})
|
|
9475
|
+
def disassociate_hours_of_operations(params = {}, options = {})
|
|
9476
|
+
req = build_request(:disassociate_hours_of_operations, params)
|
|
9477
|
+
req.send_request(options)
|
|
9478
|
+
end
|
|
9479
|
+
|
|
9304
9480
|
# This API is in preview release for Amazon Connect and is subject to
|
|
9305
9481
|
# change.
|
|
9306
9482
|
#
|
|
@@ -10581,6 +10757,7 @@ module Aws::Connect
|
|
|
10581
10757
|
# @return [Types::GetEffectiveHoursOfOperationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10582
10758
|
#
|
|
10583
10759
|
# * {Types::GetEffectiveHoursOfOperationsResponse#effective_hours_of_operation_list #effective_hours_of_operation_list} => Array<Types::EffectiveHoursOfOperations>
|
|
10760
|
+
# * {Types::GetEffectiveHoursOfOperationsResponse#effective_override_hours_list #effective_override_hours_list} => Array<Types::EffectiveOverrideHours>
|
|
10584
10761
|
# * {Types::GetEffectiveHoursOfOperationsResponse#time_zone #time_zone} => String
|
|
10585
10762
|
#
|
|
10586
10763
|
# @example Request syntax with placeholder values
|
|
@@ -10601,6 +10778,15 @@ module Aws::Connect
|
|
|
10601
10778
|
# resp.effective_hours_of_operation_list[0].operational_hours[0].start.minutes #=> Integer
|
|
10602
10779
|
# resp.effective_hours_of_operation_list[0].operational_hours[0].end.hours #=> Integer
|
|
10603
10780
|
# resp.effective_hours_of_operation_list[0].operational_hours[0].end.minutes #=> Integer
|
|
10781
|
+
# resp.effective_override_hours_list #=> Array
|
|
10782
|
+
# resp.effective_override_hours_list[0].date #=> String
|
|
10783
|
+
# resp.effective_override_hours_list[0].override_hours #=> Array
|
|
10784
|
+
# resp.effective_override_hours_list[0].override_hours[0].start.hours #=> Integer
|
|
10785
|
+
# resp.effective_override_hours_list[0].override_hours[0].start.minutes #=> Integer
|
|
10786
|
+
# resp.effective_override_hours_list[0].override_hours[0].end.hours #=> Integer
|
|
10787
|
+
# resp.effective_override_hours_list[0].override_hours[0].end.minutes #=> Integer
|
|
10788
|
+
# resp.effective_override_hours_list[0].override_hours[0].override_name #=> String
|
|
10789
|
+
# resp.effective_override_hours_list[0].override_hours[0].operational_status #=> String, one of "OPEN", "CLOSED"
|
|
10604
10790
|
# resp.time_zone #=> String
|
|
10605
10791
|
#
|
|
10606
10792
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetEffectiveHoursOfOperations AWS API Documentation
|
|
@@ -13980,6 +14166,74 @@ module Aws::Connect
|
|
|
13980
14166
|
req.send_request(options)
|
|
13981
14167
|
end
|
|
13982
14168
|
|
|
14169
|
+
# Provides information about the child hours of operations for the
|
|
14170
|
+
# specified parent hours of operation.
|
|
14171
|
+
#
|
|
14172
|
+
# For more information about child hours of operations, see [Link
|
|
14173
|
+
# overrides from different hours of operation][1] in the <i>
|
|
14174
|
+
# Administrator Guide</i>.
|
|
14175
|
+
#
|
|
14176
|
+
#
|
|
14177
|
+
#
|
|
14178
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
|
14179
|
+
#
|
|
14180
|
+
# @option params [required, String] :instance_id
|
|
14181
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
14182
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
14183
|
+
#
|
|
14184
|
+
#
|
|
14185
|
+
#
|
|
14186
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
14187
|
+
#
|
|
14188
|
+
# @option params [required, String] :hours_of_operation_id
|
|
14189
|
+
# The identifier of the parent hours of operation.
|
|
14190
|
+
#
|
|
14191
|
+
# @option params [String] :next_token
|
|
14192
|
+
# The token for the next set of results. Use the value returned in the
|
|
14193
|
+
# previous response in the next request to retrieve the next set of
|
|
14194
|
+
# results.
|
|
14195
|
+
#
|
|
14196
|
+
# @option params [Integer] :max_results
|
|
14197
|
+
# The maximum number of results to return per page. The default
|
|
14198
|
+
# MaxResult size is 100.
|
|
14199
|
+
#
|
|
14200
|
+
# @return [Types::ListChildHoursOfOperationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
14201
|
+
#
|
|
14202
|
+
# * {Types::ListChildHoursOfOperationsResponse#next_token #next_token} => String
|
|
14203
|
+
# * {Types::ListChildHoursOfOperationsResponse#child_hours_of_operations_summary_list #child_hours_of_operations_summary_list} => Array<Types::HoursOfOperationsIdentifier>
|
|
14204
|
+
# * {Types::ListChildHoursOfOperationsResponse#last_modified_time #last_modified_time} => Time
|
|
14205
|
+
# * {Types::ListChildHoursOfOperationsResponse#last_modified_region #last_modified_region} => String
|
|
14206
|
+
#
|
|
14207
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
14208
|
+
#
|
|
14209
|
+
# @example Request syntax with placeholder values
|
|
14210
|
+
#
|
|
14211
|
+
# resp = client.list_child_hours_of_operations({
|
|
14212
|
+
# instance_id: "InstanceId", # required
|
|
14213
|
+
# hours_of_operation_id: "HoursOfOperationId", # required
|
|
14214
|
+
# next_token: "NextToken",
|
|
14215
|
+
# max_results: 1,
|
|
14216
|
+
# })
|
|
14217
|
+
#
|
|
14218
|
+
# @example Response structure
|
|
14219
|
+
#
|
|
14220
|
+
# resp.next_token #=> String
|
|
14221
|
+
# resp.child_hours_of_operations_summary_list #=> Array
|
|
14222
|
+
# resp.child_hours_of_operations_summary_list[0].name #=> String
|
|
14223
|
+
# resp.child_hours_of_operations_summary_list[0].id #=> String
|
|
14224
|
+
# resp.child_hours_of_operations_summary_list[0].arn #=> String
|
|
14225
|
+
# resp.last_modified_time #=> Time
|
|
14226
|
+
# resp.last_modified_region #=> String
|
|
14227
|
+
#
|
|
14228
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListChildHoursOfOperations AWS API Documentation
|
|
14229
|
+
#
|
|
14230
|
+
# @overload list_child_hours_of_operations(params = {})
|
|
14231
|
+
# @param [Hash] params ({})
|
|
14232
|
+
def list_child_hours_of_operations(params = {}, options = {})
|
|
14233
|
+
req = build_request(:list_child_hours_of_operations, params)
|
|
14234
|
+
req.send_request(options)
|
|
14235
|
+
end
|
|
14236
|
+
|
|
13983
14237
|
# Lists contact evaluations in the specified Amazon Connect instance.
|
|
13984
14238
|
#
|
|
13985
14239
|
# @option params [required, String] :instance_id
|
|
@@ -14024,7 +14278,7 @@ module Aws::Connect
|
|
|
14024
14278
|
# resp.evaluation_summary_list[0].evaluation_form_title #=> String
|
|
14025
14279
|
# resp.evaluation_summary_list[0].evaluation_form_id #=> String
|
|
14026
14280
|
# resp.evaluation_summary_list[0].calibration_session_id #=> String
|
|
14027
|
-
# resp.evaluation_summary_list[0].status #=> String, one of "DRAFT", "SUBMITTED"
|
|
14281
|
+
# resp.evaluation_summary_list[0].status #=> String, one of "DRAFT", "SUBMITTED", "REVIEW_REQUESTED", "UNDER_REVIEW"
|
|
14028
14282
|
# resp.evaluation_summary_list[0].auto_evaluation_enabled #=> Boolean
|
|
14029
14283
|
# resp.evaluation_summary_list[0].auto_evaluation_status #=> String, one of "IN_PROGRESS", "FAILED", "SUCCEEDED"
|
|
14030
14284
|
# resp.evaluation_summary_list[0].evaluator_arn #=> String
|
|
@@ -15039,6 +15293,15 @@ module Aws::Connect
|
|
|
15039
15293
|
# resp.hours_of_operation_override_list[0].config[0].end_time.minutes #=> Integer
|
|
15040
15294
|
# resp.hours_of_operation_override_list[0].effective_from #=> String
|
|
15041
15295
|
# resp.hours_of_operation_override_list[0].effective_till #=> String
|
|
15296
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.frequency #=> String, one of "WEEKLY", "MONTHLY", "YEARLY"
|
|
15297
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.interval #=> Integer
|
|
15298
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.by_month #=> Array
|
|
15299
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.by_month[0] #=> Integer
|
|
15300
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.by_month_day #=> Array
|
|
15301
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.by_month_day[0] #=> Integer
|
|
15302
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.by_weekday_occurrence #=> Array
|
|
15303
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.by_weekday_occurrence[0] #=> Integer
|
|
15304
|
+
# resp.hours_of_operation_override_list[0].override_type #=> String, one of "STANDARD", "OPEN", "CLOSED"
|
|
15042
15305
|
# resp.last_modified_region #=> String
|
|
15043
15306
|
# resp.last_modified_time #=> Time
|
|
15044
15307
|
#
|
|
@@ -18044,7 +18307,7 @@ module Aws::Connect
|
|
|
18044
18307
|
# resp.evaluation_search_summary_list[0].metadata.review_id #=> String
|
|
18045
18308
|
# resp.evaluation_search_summary_list[0].metadata.contact_participant_role #=> String, one of "AGENT", "SYSTEM", "CUSTOM_BOT"
|
|
18046
18309
|
# resp.evaluation_search_summary_list[0].metadata.contact_participant_id #=> String
|
|
18047
|
-
# resp.evaluation_search_summary_list[0].status #=> String, one of "DRAFT", "SUBMITTED"
|
|
18310
|
+
# resp.evaluation_search_summary_list[0].status #=> String, one of "DRAFT", "SUBMITTED", "REVIEW_REQUESTED", "UNDER_REVIEW"
|
|
18048
18311
|
# resp.evaluation_search_summary_list[0].evaluation_type #=> String, one of "STANDARD", "CALIBRATION"
|
|
18049
18312
|
# resp.evaluation_search_summary_list[0].created_time #=> Time
|
|
18050
18313
|
# resp.evaluation_search_summary_list[0].last_modified_time #=> Time
|
|
@@ -18984,6 +19247,15 @@ module Aws::Connect
|
|
|
18984
19247
|
# resp.hours_of_operation_overrides[0].config[0].end_time.minutes #=> Integer
|
|
18985
19248
|
# resp.hours_of_operation_overrides[0].effective_from #=> String
|
|
18986
19249
|
# resp.hours_of_operation_overrides[0].effective_till #=> String
|
|
19250
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.frequency #=> String, one of "WEEKLY", "MONTHLY", "YEARLY"
|
|
19251
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.interval #=> Integer
|
|
19252
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.by_month #=> Array
|
|
19253
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.by_month[0] #=> Integer
|
|
19254
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.by_month_day #=> Array
|
|
19255
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.by_month_day[0] #=> Integer
|
|
19256
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.by_weekday_occurrence #=> Array
|
|
19257
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.by_weekday_occurrence[0] #=> Integer
|
|
19258
|
+
# resp.hours_of_operation_overrides[0].override_type #=> String, one of "STANDARD", "OPEN", "CLOSED"
|
|
18987
19259
|
# resp.next_token #=> String
|
|
18988
19260
|
# resp.approximate_total_count #=> Integer
|
|
18989
19261
|
#
|
|
@@ -19090,6 +19362,10 @@ module Aws::Connect
|
|
|
19090
19362
|
# resp.hours_of_operations[0].config[0].start_time.minutes #=> Integer
|
|
19091
19363
|
# resp.hours_of_operations[0].config[0].end_time.hours #=> Integer
|
|
19092
19364
|
# resp.hours_of_operations[0].config[0].end_time.minutes #=> Integer
|
|
19365
|
+
# resp.hours_of_operations[0].parent_hours_of_operations #=> Array
|
|
19366
|
+
# resp.hours_of_operations[0].parent_hours_of_operations[0].name #=> String
|
|
19367
|
+
# resp.hours_of_operations[0].parent_hours_of_operations[0].id #=> String
|
|
19368
|
+
# resp.hours_of_operations[0].parent_hours_of_operations[0].arn #=> String
|
|
19093
19369
|
# resp.hours_of_operations[0].tags #=> Hash
|
|
19094
19370
|
# resp.hours_of_operations[0].tags["TagKey"] #=> String
|
|
19095
19371
|
# resp.hours_of_operations[0].last_modified_time #=> Time
|
|
@@ -24254,6 +24530,9 @@ module Aws::Connect
|
|
|
24254
24530
|
# @option params [Types::EvaluationFormAutoEvaluationConfiguration] :auto_evaluation_configuration
|
|
24255
24531
|
# Whether automated evaluations are enabled.
|
|
24256
24532
|
#
|
|
24533
|
+
# @option params [Types::EvaluationReviewConfiguration] :review_configuration
|
|
24534
|
+
# Configuration for evaluation review settings of the evaluation form.
|
|
24535
|
+
#
|
|
24257
24536
|
# @option params [Boolean] :as_draft
|
|
24258
24537
|
# A boolean flag indicating whether to update evaluation form to draft
|
|
24259
24538
|
# state.
|
|
@@ -24432,6 +24711,17 @@ module Aws::Connect
|
|
|
24432
24711
|
# auto_evaluation_configuration: {
|
|
24433
24712
|
# enabled: false, # required
|
|
24434
24713
|
# },
|
|
24714
|
+
# review_configuration: {
|
|
24715
|
+
# review_notification_recipients: [ # required
|
|
24716
|
+
# {
|
|
24717
|
+
# type: "USER_ID", # required, accepts USER_ID
|
|
24718
|
+
# value: { # required
|
|
24719
|
+
# user_id: "ResourceId",
|
|
24720
|
+
# },
|
|
24721
|
+
# },
|
|
24722
|
+
# ],
|
|
24723
|
+
# eligibility_days: 1,
|
|
24724
|
+
# },
|
|
24435
24725
|
# as_draft: false,
|
|
24436
24726
|
# client_token: "ClientToken",
|
|
24437
24727
|
# target_configuration: {
|
|
@@ -24543,6 +24833,20 @@ module Aws::Connect
|
|
|
24543
24833
|
# @option params [String] :effective_till
|
|
24544
24834
|
# The date until the hours of operation override is effective.
|
|
24545
24835
|
#
|
|
24836
|
+
# @option params [Types::RecurrenceConfig] :recurrence_config
|
|
24837
|
+
# Configuration for a recurring event.
|
|
24838
|
+
#
|
|
24839
|
+
# @option params [String] :override_type
|
|
24840
|
+
# Whether the override will be defined as a *standard* or as a
|
|
24841
|
+
# *recurring event*.
|
|
24842
|
+
#
|
|
24843
|
+
# For more information about how override types are applied, see [Build
|
|
24844
|
+
# your list of overrides][1] in the <i> Administrator Guide</i>.
|
|
24845
|
+
#
|
|
24846
|
+
#
|
|
24847
|
+
#
|
|
24848
|
+
# [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
|
|
24849
|
+
#
|
|
24546
24850
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
24547
24851
|
#
|
|
24548
24852
|
# @example Request syntax with placeholder values
|
|
@@ -24568,6 +24872,16 @@ module Aws::Connect
|
|
|
24568
24872
|
# ],
|
|
24569
24873
|
# effective_from: "HoursOfOperationOverrideYearMonthDayDateFormat",
|
|
24570
24874
|
# effective_till: "HoursOfOperationOverrideYearMonthDayDateFormat",
|
|
24875
|
+
# recurrence_config: {
|
|
24876
|
+
# recurrence_pattern: { # required
|
|
24877
|
+
# frequency: "WEEKLY", # required, accepts WEEKLY, MONTHLY, YEARLY
|
|
24878
|
+
# interval: 1, # required
|
|
24879
|
+
# by_month: [1],
|
|
24880
|
+
# by_month_day: [1],
|
|
24881
|
+
# by_weekday_occurrence: [1],
|
|
24882
|
+
# },
|
|
24883
|
+
# },
|
|
24884
|
+
# override_type: "STANDARD", # accepts STANDARD, OPEN, CLOSED
|
|
24571
24885
|
# })
|
|
24572
24886
|
#
|
|
24573
24887
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateHoursOfOperationOverride AWS API Documentation
|
|
@@ -26859,7 +27173,7 @@ module Aws::Connect
|
|
|
26859
27173
|
tracer: tracer
|
|
26860
27174
|
)
|
|
26861
27175
|
context[:gem_name] = 'aws-sdk-connect'
|
|
26862
|
-
context[:gem_version] = '1.
|
|
27176
|
+
context[:gem_version] = '1.236.0'
|
|
26863
27177
|
Seahorse::Client::Request.new(handlers, context)
|
|
26864
27178
|
end
|
|
26865
27179
|
|