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
|
@@ -1073,6 +1073,34 @@ module Aws::Connect
|
|
|
1073
1073
|
#
|
|
1074
1074
|
class AssociateFlowResponse < Aws::EmptyStructure; end
|
|
1075
1075
|
|
|
1076
|
+
# @!attribute [rw] instance_id
|
|
1077
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
1078
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
1079
|
+
#
|
|
1080
|
+
#
|
|
1081
|
+
#
|
|
1082
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
1083
|
+
# @return [String]
|
|
1084
|
+
#
|
|
1085
|
+
# @!attribute [rw] hours_of_operation_id
|
|
1086
|
+
# The identifier of the child hours of operation.
|
|
1087
|
+
# @return [String]
|
|
1088
|
+
#
|
|
1089
|
+
# @!attribute [rw] parent_hours_of_operation_configs
|
|
1090
|
+
# The Amazon Resource Names (ARNs) of the parent hours of operation
|
|
1091
|
+
# resources to associate with the child hours of operation resource.
|
|
1092
|
+
# @return [Array<Types::ParentHoursOfOperationConfig>]
|
|
1093
|
+
#
|
|
1094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateHoursOfOperationsRequest AWS API Documentation
|
|
1095
|
+
#
|
|
1096
|
+
class AssociateHoursOfOperationsRequest < Struct.new(
|
|
1097
|
+
:instance_id,
|
|
1098
|
+
:hours_of_operation_id,
|
|
1099
|
+
:parent_hours_of_operation_configs)
|
|
1100
|
+
SENSITIVE = []
|
|
1101
|
+
include Aws::Structure
|
|
1102
|
+
end
|
|
1103
|
+
|
|
1076
1104
|
# @!attribute [rw] instance_id
|
|
1077
1105
|
# The identifier of the Amazon Connect instance. You can [find the
|
|
1078
1106
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
@@ -1297,6 +1325,9 @@ module Aws::Connect
|
|
|
1297
1325
|
#
|
|
1298
1326
|
# @!attribute [rw] manual_assignment_queue_configs
|
|
1299
1327
|
# The manual assignment queues to associate with this routing profile.
|
|
1328
|
+
#
|
|
1329
|
+
# Note: Use this config for chat, email, and task contacts. It does
|
|
1330
|
+
# not support voice contacts.
|
|
1300
1331
|
# @return [Array<Types::RoutingProfileManualAssignmentQueueConfig>]
|
|
1301
1332
|
#
|
|
1302
1333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateRoutingProfileQueuesRequest AWS API Documentation
|
|
@@ -5582,6 +5613,10 @@ module Aws::Connect
|
|
|
5582
5613
|
# "key2":"value2"} }.
|
|
5583
5614
|
# @return [Hash<String,String>]
|
|
5584
5615
|
#
|
|
5616
|
+
# @!attribute [rw] review_configuration
|
|
5617
|
+
# Configuration information about evaluation reviews.
|
|
5618
|
+
# @return [Types::EvaluationReviewConfiguration]
|
|
5619
|
+
#
|
|
5585
5620
|
# @!attribute [rw] target_configuration
|
|
5586
5621
|
# Configuration that specifies the target for the evaluation form.
|
|
5587
5622
|
# @return [Types::EvaluationFormTargetConfiguration]
|
|
@@ -5602,6 +5637,7 @@ module Aws::Connect
|
|
|
5602
5637
|
:client_token,
|
|
5603
5638
|
:as_draft,
|
|
5604
5639
|
:tags,
|
|
5640
|
+
:review_configuration,
|
|
5605
5641
|
:target_configuration,
|
|
5606
5642
|
:language_configuration)
|
|
5607
5643
|
SENSITIVE = []
|
|
@@ -5654,6 +5690,23 @@ module Aws::Connect
|
|
|
5654
5690
|
# The date until when the hours of operation override is effective.
|
|
5655
5691
|
# @return [String]
|
|
5656
5692
|
#
|
|
5693
|
+
# @!attribute [rw] recurrence_config
|
|
5694
|
+
# Configuration for a recurring event.
|
|
5695
|
+
# @return [Types::RecurrenceConfig]
|
|
5696
|
+
#
|
|
5697
|
+
# @!attribute [rw] override_type
|
|
5698
|
+
# Whether the override will be defined as a *standard* or as a
|
|
5699
|
+
# *recurring event*.
|
|
5700
|
+
#
|
|
5701
|
+
# For more information about how override types are applied, see
|
|
5702
|
+
# [Build your list of overrides][1] in the <i> Administrator
|
|
5703
|
+
# Guide</i>.
|
|
5704
|
+
#
|
|
5705
|
+
#
|
|
5706
|
+
#
|
|
5707
|
+
# [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
|
|
5708
|
+
# @return [String]
|
|
5709
|
+
#
|
|
5657
5710
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateHoursOfOperationOverrideRequest AWS API Documentation
|
|
5658
5711
|
#
|
|
5659
5712
|
class CreateHoursOfOperationOverrideRequest < Struct.new(
|
|
@@ -5663,7 +5716,9 @@ module Aws::Connect
|
|
|
5663
5716
|
:description,
|
|
5664
5717
|
:config,
|
|
5665
5718
|
:effective_from,
|
|
5666
|
-
:effective_till
|
|
5719
|
+
:effective_till,
|
|
5720
|
+
:recurrence_config,
|
|
5721
|
+
:override_type)
|
|
5667
5722
|
SENSITIVE = []
|
|
5668
5723
|
include Aws::Structure
|
|
5669
5724
|
end
|
|
@@ -5706,6 +5761,18 @@ module Aws::Connect
|
|
|
5706
5761
|
# time, and end time.
|
|
5707
5762
|
# @return [Array<Types::HoursOfOperationConfig>]
|
|
5708
5763
|
#
|
|
5764
|
+
# @!attribute [rw] parent_hours_of_operation_configs
|
|
5765
|
+
# Configuration for parent hours of operations. Eg: ResourceArn.
|
|
5766
|
+
#
|
|
5767
|
+
# For more information about parent hours of operations, see [Link
|
|
5768
|
+
# overrides from different hours of operation][1] in the <i>
|
|
5769
|
+
# Administrator Guide</i>.
|
|
5770
|
+
#
|
|
5771
|
+
#
|
|
5772
|
+
#
|
|
5773
|
+
# [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
|
|
5774
|
+
# @return [Array<Types::ParentHoursOfOperationConfig>]
|
|
5775
|
+
#
|
|
5709
5776
|
# @!attribute [rw] tags
|
|
5710
5777
|
# The tags used to organize, track, or control access for this
|
|
5711
5778
|
# resource. For example, \{ "Tags": \{"key1":"value1",
|
|
@@ -5720,6 +5787,7 @@ module Aws::Connect
|
|
|
5720
5787
|
:description,
|
|
5721
5788
|
:time_zone,
|
|
5722
5789
|
:config,
|
|
5790
|
+
:parent_hours_of_operation_configs,
|
|
5723
5791
|
:tags)
|
|
5724
5792
|
SENSITIVE = []
|
|
5725
5793
|
include Aws::Structure
|
|
@@ -6414,6 +6482,9 @@ module Aws::Connect
|
|
|
6414
6482
|
# during a CreateRoutingProfile API request. It is different from the
|
|
6415
6483
|
# quota of 50 queues per routing profile per instance that is listed
|
|
6416
6484
|
# in Amazon Connect service quotas.
|
|
6485
|
+
#
|
|
6486
|
+
# Note: Use this config for chat, email, and task contacts. It does
|
|
6487
|
+
# not support voice contacts.
|
|
6417
6488
|
# @return [Array<Types::RoutingProfileManualAssignmentQueueConfig>]
|
|
6418
6489
|
#
|
|
6419
6490
|
# @!attribute [rw] media_concurrencies
|
|
@@ -10552,6 +10623,35 @@ module Aws::Connect
|
|
|
10552
10623
|
#
|
|
10553
10624
|
class DisassociateFlowResponse < Aws::EmptyStructure; end
|
|
10554
10625
|
|
|
10626
|
+
# @!attribute [rw] instance_id
|
|
10627
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
10628
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
10629
|
+
#
|
|
10630
|
+
#
|
|
10631
|
+
#
|
|
10632
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
10633
|
+
# @return [String]
|
|
10634
|
+
#
|
|
10635
|
+
# @!attribute [rw] hours_of_operation_id
|
|
10636
|
+
# The identifier of the child hours of operation.
|
|
10637
|
+
# @return [String]
|
|
10638
|
+
#
|
|
10639
|
+
# @!attribute [rw] parent_hours_of_operation_ids
|
|
10640
|
+
# The Amazon Resource Names (ARNs) of the parent hours of operation
|
|
10641
|
+
# resources to disassociate with the child hours of operation
|
|
10642
|
+
# resource.
|
|
10643
|
+
# @return [Array<String>]
|
|
10644
|
+
#
|
|
10645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateHoursOfOperationsRequest AWS API Documentation
|
|
10646
|
+
#
|
|
10647
|
+
class DisassociateHoursOfOperationsRequest < Struct.new(
|
|
10648
|
+
:instance_id,
|
|
10649
|
+
:hours_of_operation_id,
|
|
10650
|
+
:parent_hours_of_operation_ids)
|
|
10651
|
+
SENSITIVE = []
|
|
10652
|
+
include Aws::Structure
|
|
10653
|
+
end
|
|
10654
|
+
|
|
10555
10655
|
# @!attribute [rw] instance_id
|
|
10556
10656
|
# The identifier of the Amazon Connect instance. You can [find the
|
|
10557
10657
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
@@ -11059,6 +11159,27 @@ module Aws::Connect
|
|
|
11059
11159
|
include Aws::Structure
|
|
11060
11160
|
end
|
|
11061
11161
|
|
|
11162
|
+
# Information about the hours of operation overrides which contribute to
|
|
11163
|
+
# effective hours of operations.
|
|
11164
|
+
#
|
|
11165
|
+
# @!attribute [rw] date
|
|
11166
|
+
# The date that the hours of operation override applies to.
|
|
11167
|
+
# @return [String]
|
|
11168
|
+
#
|
|
11169
|
+
# @!attribute [rw] override_hours
|
|
11170
|
+
# Information about the hours of operation overrides that apply to a
|
|
11171
|
+
# specific date.
|
|
11172
|
+
# @return [Array<Types::OverrideHour>]
|
|
11173
|
+
#
|
|
11174
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EffectiveOverrideHours AWS API Documentation
|
|
11175
|
+
#
|
|
11176
|
+
class EffectiveOverrideHours < Struct.new(
|
|
11177
|
+
:date,
|
|
11178
|
+
:override_hours)
|
|
11179
|
+
SENSITIVE = []
|
|
11180
|
+
include Aws::Structure
|
|
11181
|
+
end
|
|
11182
|
+
|
|
11062
11183
|
# Contains information about a source or destination email address.
|
|
11063
11184
|
#
|
|
11064
11185
|
# @!attribute [rw] email_address
|
|
@@ -11746,6 +11867,11 @@ module Aws::Connect
|
|
|
11746
11867
|
# The automatic evaluation configuration of an evaluation form.
|
|
11747
11868
|
# @return [Types::EvaluationFormAutoEvaluationConfiguration]
|
|
11748
11869
|
#
|
|
11870
|
+
# @!attribute [rw] review_configuration
|
|
11871
|
+
# Configuration for evaluation review settings of this evaluation
|
|
11872
|
+
# form.
|
|
11873
|
+
# @return [Types::EvaluationReviewConfiguration]
|
|
11874
|
+
#
|
|
11749
11875
|
# @!attribute [rw] tags
|
|
11750
11876
|
# The tags used to organize, track, or control access for this
|
|
11751
11877
|
# resource. For example, \{ "Tags": \{"key1":"value1",
|
|
@@ -11777,6 +11903,7 @@ module Aws::Connect
|
|
|
11777
11903
|
:last_modified_time,
|
|
11778
11904
|
:last_modified_by,
|
|
11779
11905
|
:auto_evaluation_configuration,
|
|
11906
|
+
:review_configuration,
|
|
11780
11907
|
:tags,
|
|
11781
11908
|
:target_configuration,
|
|
11782
11909
|
:language_configuration)
|
|
@@ -11843,6 +11970,11 @@ module Aws::Connect
|
|
|
11843
11970
|
# Configuration for language settings of this evaluation form content.
|
|
11844
11971
|
# @return [Types::EvaluationFormLanguageConfiguration]
|
|
11845
11972
|
#
|
|
11973
|
+
# @!attribute [rw] review_configuration
|
|
11974
|
+
# Configuration for evaluation review settings of this evaluation form
|
|
11975
|
+
# content.
|
|
11976
|
+
# @return [Types::EvaluationReviewConfiguration]
|
|
11977
|
+
#
|
|
11846
11978
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormContent AWS API Documentation
|
|
11847
11979
|
#
|
|
11848
11980
|
class EvaluationFormContent < Struct.new(
|
|
@@ -11855,7 +11987,8 @@ module Aws::Connect
|
|
|
11855
11987
|
:scoring_strategy,
|
|
11856
11988
|
:auto_evaluation_configuration,
|
|
11857
11989
|
:target_configuration,
|
|
11858
|
-
:language_configuration
|
|
11990
|
+
:language_configuration,
|
|
11991
|
+
:review_configuration)
|
|
11859
11992
|
SENSITIVE = []
|
|
11860
11993
|
include Aws::Structure
|
|
11861
11994
|
end
|
|
@@ -12884,6 +13017,10 @@ module Aws::Connect
|
|
|
12884
13017
|
# Information related to evaluation acknowledgement.
|
|
12885
13018
|
# @return [Types::EvaluationAcknowledgement]
|
|
12886
13019
|
#
|
|
13020
|
+
# @!attribute [rw] review
|
|
13021
|
+
# Information about reviews of this evaluation.
|
|
13022
|
+
# @return [Types::EvaluationReviewMetadata]
|
|
13023
|
+
#
|
|
12887
13024
|
# @!attribute [rw] contact_participant
|
|
12888
13025
|
# Information about a contact participant in this evaluation.
|
|
12889
13026
|
# @return [Types::EvaluationContactParticipant]
|
|
@@ -12902,6 +13039,7 @@ module Aws::Connect
|
|
|
12902
13039
|
:score,
|
|
12903
13040
|
:auto_evaluation,
|
|
12904
13041
|
:acknowledgement,
|
|
13042
|
+
:review,
|
|
12905
13043
|
:contact_participant,
|
|
12906
13044
|
:sampling_job_id)
|
|
12907
13045
|
SENSITIVE = []
|
|
@@ -12972,6 +13110,114 @@ module Aws::Connect
|
|
|
12972
13110
|
include Aws::Structure
|
|
12973
13111
|
end
|
|
12974
13112
|
|
|
13113
|
+
# Configuration settings for evaluation reviews.
|
|
13114
|
+
#
|
|
13115
|
+
# @!attribute [rw] review_notification_recipients
|
|
13116
|
+
# List of recipients who should be notified when a review is
|
|
13117
|
+
# requested.
|
|
13118
|
+
# @return [Array<Types::EvaluationReviewNotificationRecipient>]
|
|
13119
|
+
#
|
|
13120
|
+
# @!attribute [rw] eligibility_days
|
|
13121
|
+
# Number of days during which a request for review can be submitted
|
|
13122
|
+
# for evaluations created from this form.
|
|
13123
|
+
# @return [Integer]
|
|
13124
|
+
#
|
|
13125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewConfiguration AWS API Documentation
|
|
13126
|
+
#
|
|
13127
|
+
class EvaluationReviewConfiguration < Struct.new(
|
|
13128
|
+
:review_notification_recipients,
|
|
13129
|
+
:eligibility_days)
|
|
13130
|
+
SENSITIVE = []
|
|
13131
|
+
include Aws::Structure
|
|
13132
|
+
end
|
|
13133
|
+
|
|
13134
|
+
# Metadata information about an evaluation review.
|
|
13135
|
+
#
|
|
13136
|
+
# @!attribute [rw] review_id
|
|
13137
|
+
# The unique identifier for the evaluation review.
|
|
13138
|
+
# @return [String]
|
|
13139
|
+
#
|
|
13140
|
+
# @!attribute [rw] created_time
|
|
13141
|
+
# The timestamp when the evaluation review was created.
|
|
13142
|
+
# @return [Time]
|
|
13143
|
+
#
|
|
13144
|
+
# @!attribute [rw] created_by
|
|
13145
|
+
# The user who created the evaluation review.
|
|
13146
|
+
# @return [String]
|
|
13147
|
+
#
|
|
13148
|
+
# @!attribute [rw] review_request_comments
|
|
13149
|
+
# Comments provided when requesting the evaluation review.
|
|
13150
|
+
# @return [Array<Types::EvaluationReviewRequestComment>]
|
|
13151
|
+
#
|
|
13152
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewMetadata AWS API Documentation
|
|
13153
|
+
#
|
|
13154
|
+
class EvaluationReviewMetadata < Struct.new(
|
|
13155
|
+
:review_id,
|
|
13156
|
+
:created_time,
|
|
13157
|
+
:created_by,
|
|
13158
|
+
:review_request_comments)
|
|
13159
|
+
SENSITIVE = []
|
|
13160
|
+
include Aws::Structure
|
|
13161
|
+
end
|
|
13162
|
+
|
|
13163
|
+
# Information about a recipient who should be notified when an
|
|
13164
|
+
# evaluation review is requested.
|
|
13165
|
+
#
|
|
13166
|
+
# @!attribute [rw] type
|
|
13167
|
+
# The type of notification recipient.
|
|
13168
|
+
# @return [String]
|
|
13169
|
+
#
|
|
13170
|
+
# @!attribute [rw] value
|
|
13171
|
+
# The value associated with the notification recipient type.
|
|
13172
|
+
# @return [Types::EvaluationReviewNotificationRecipientValue]
|
|
13173
|
+
#
|
|
13174
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewNotificationRecipient AWS API Documentation
|
|
13175
|
+
#
|
|
13176
|
+
class EvaluationReviewNotificationRecipient < Struct.new(
|
|
13177
|
+
:type,
|
|
13178
|
+
:value)
|
|
13179
|
+
SENSITIVE = []
|
|
13180
|
+
include Aws::Structure
|
|
13181
|
+
end
|
|
13182
|
+
|
|
13183
|
+
# The value information for an evaluation review notification recipient.
|
|
13184
|
+
#
|
|
13185
|
+
# @!attribute [rw] user_id
|
|
13186
|
+
# The user identifier for the notification recipient.
|
|
13187
|
+
# @return [String]
|
|
13188
|
+
#
|
|
13189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewNotificationRecipientValue AWS API Documentation
|
|
13190
|
+
#
|
|
13191
|
+
class EvaluationReviewNotificationRecipientValue < Struct.new(
|
|
13192
|
+
:user_id)
|
|
13193
|
+
SENSITIVE = []
|
|
13194
|
+
include Aws::Structure
|
|
13195
|
+
end
|
|
13196
|
+
|
|
13197
|
+
# A comment provided when requesting an evaluation review.
|
|
13198
|
+
#
|
|
13199
|
+
# @!attribute [rw] comment
|
|
13200
|
+
# The text content of the review request comment.
|
|
13201
|
+
# @return [String]
|
|
13202
|
+
#
|
|
13203
|
+
# @!attribute [rw] created_time
|
|
13204
|
+
# The timestamp when the review request comment was created.
|
|
13205
|
+
# @return [Time]
|
|
13206
|
+
#
|
|
13207
|
+
# @!attribute [rw] created_by
|
|
13208
|
+
# The user who created the review request comment.
|
|
13209
|
+
# @return [String]
|
|
13210
|
+
#
|
|
13211
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationReviewRequestComment AWS API Documentation
|
|
13212
|
+
#
|
|
13213
|
+
class EvaluationReviewRequestComment < Struct.new(
|
|
13214
|
+
:comment,
|
|
13215
|
+
:created_time,
|
|
13216
|
+
:created_by)
|
|
13217
|
+
SENSITIVE = []
|
|
13218
|
+
include Aws::Structure
|
|
13219
|
+
end
|
|
13220
|
+
|
|
12975
13221
|
# Information about scores of a contact evaluation item (section or
|
|
12976
13222
|
# question).
|
|
12977
13223
|
#
|
|
@@ -14344,6 +14590,19 @@ module Aws::Connect
|
|
|
14344
14590
|
# Information about the effective hours of operations.
|
|
14345
14591
|
# @return [Array<Types::EffectiveHoursOfOperations>]
|
|
14346
14592
|
#
|
|
14593
|
+
# @!attribute [rw] effective_override_hours_list
|
|
14594
|
+
# Information about override configurations applied to the base hours
|
|
14595
|
+
# of operation to calculate the effective hours.
|
|
14596
|
+
#
|
|
14597
|
+
# For more information about how override types are applied, see
|
|
14598
|
+
# [Build your list of overrides][1] in the <i> Administrator
|
|
14599
|
+
# Guide</i>.
|
|
14600
|
+
#
|
|
14601
|
+
#
|
|
14602
|
+
#
|
|
14603
|
+
# [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
|
|
14604
|
+
# @return [Array<Types::EffectiveOverrideHours>]
|
|
14605
|
+
#
|
|
14347
14606
|
# @!attribute [rw] time_zone
|
|
14348
14607
|
# The time zone for the hours of operation.
|
|
14349
14608
|
# @return [String]
|
|
@@ -14352,6 +14611,7 @@ module Aws::Connect
|
|
|
14352
14611
|
#
|
|
14353
14612
|
class GetEffectiveHoursOfOperationsResponse < Struct.new(
|
|
14354
14613
|
:effective_hours_of_operation_list,
|
|
14614
|
+
:effective_override_hours_list,
|
|
14355
14615
|
:time_zone)
|
|
14356
14616
|
SENSITIVE = []
|
|
14357
14617
|
include Aws::Structure
|
|
@@ -17851,6 +18111,10 @@ module Aws::Connect
|
|
|
17851
18111
|
# Configuration information for the hours of operation.
|
|
17852
18112
|
# @return [Array<Types::HoursOfOperationConfig>]
|
|
17853
18113
|
#
|
|
18114
|
+
# @!attribute [rw] parent_hours_of_operations
|
|
18115
|
+
# Information about parent hours of operations.
|
|
18116
|
+
# @return [Array<Types::HoursOfOperationsIdentifier>]
|
|
18117
|
+
#
|
|
17854
18118
|
# @!attribute [rw] tags
|
|
17855
18119
|
# The tags used to organize, track, or control access for this
|
|
17856
18120
|
# resource. For example, \{ "Tags": \{"key1":"value1",
|
|
@@ -17875,6 +18139,7 @@ module Aws::Connect
|
|
|
17875
18139
|
:description,
|
|
17876
18140
|
:time_zone,
|
|
17877
18141
|
:config,
|
|
18142
|
+
:parent_hours_of_operations,
|
|
17878
18143
|
:tags,
|
|
17879
18144
|
:last_modified_time,
|
|
17880
18145
|
:last_modified_region)
|
|
@@ -17942,6 +18207,15 @@ module Aws::Connect
|
|
|
17942
18207
|
# The date until the hours of operation override is effective.
|
|
17943
18208
|
# @return [String]
|
|
17944
18209
|
#
|
|
18210
|
+
# @!attribute [rw] recurrence_config
|
|
18211
|
+
# Configuration for a recurring event.
|
|
18212
|
+
# @return [Types::RecurrenceConfig]
|
|
18213
|
+
#
|
|
18214
|
+
# @!attribute [rw] override_type
|
|
18215
|
+
# Whether the override will be defined as a *standard* or as a
|
|
18216
|
+
# *recurring event*.
|
|
18217
|
+
# @return [String]
|
|
18218
|
+
#
|
|
17945
18219
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperationOverride AWS API Documentation
|
|
17946
18220
|
#
|
|
17947
18221
|
class HoursOfOperationOverride < Struct.new(
|
|
@@ -17952,7 +18226,9 @@ module Aws::Connect
|
|
|
17952
18226
|
:description,
|
|
17953
18227
|
:config,
|
|
17954
18228
|
:effective_from,
|
|
17955
|
-
:effective_till
|
|
18229
|
+
:effective_till,
|
|
18230
|
+
:recurrence_config,
|
|
18231
|
+
:override_type)
|
|
17956
18232
|
SENSITIVE = []
|
|
17957
18233
|
include Aws::Structure
|
|
17958
18234
|
end
|
|
@@ -18126,6 +18402,30 @@ module Aws::Connect
|
|
|
18126
18402
|
include Aws::Structure
|
|
18127
18403
|
end
|
|
18128
18404
|
|
|
18405
|
+
# Identifier for a hours of operations resource: ARN, ID, Name
|
|
18406
|
+
#
|
|
18407
|
+
# @!attribute [rw] name
|
|
18408
|
+
# Name of the hours of operation
|
|
18409
|
+
# @return [String]
|
|
18410
|
+
#
|
|
18411
|
+
# @!attribute [rw] id
|
|
18412
|
+
# Unique identifier of the hours of operation.
|
|
18413
|
+
# @return [String]
|
|
18414
|
+
#
|
|
18415
|
+
# @!attribute [rw] arn
|
|
18416
|
+
# Amazon Resource Name (ARN) of the hours of operations.
|
|
18417
|
+
# @return [String]
|
|
18418
|
+
#
|
|
18419
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperationsIdentifier AWS API Documentation
|
|
18420
|
+
#
|
|
18421
|
+
class HoursOfOperationsIdentifier < Struct.new(
|
|
18422
|
+
:name,
|
|
18423
|
+
:id,
|
|
18424
|
+
:arn)
|
|
18425
|
+
SENSITIVE = []
|
|
18426
|
+
include Aws::Structure
|
|
18427
|
+
end
|
|
18428
|
+
|
|
18129
18429
|
# An entity with the same name already exists.
|
|
18130
18430
|
#
|
|
18131
18431
|
# @!attribute [rw] message
|
|
@@ -19265,6 +19565,70 @@ module Aws::Connect
|
|
|
19265
19565
|
include Aws::Structure
|
|
19266
19566
|
end
|
|
19267
19567
|
|
|
19568
|
+
# @!attribute [rw] instance_id
|
|
19569
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
19570
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
19571
|
+
#
|
|
19572
|
+
#
|
|
19573
|
+
#
|
|
19574
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
19575
|
+
# @return [String]
|
|
19576
|
+
#
|
|
19577
|
+
# @!attribute [rw] hours_of_operation_id
|
|
19578
|
+
# The identifier of the parent hours of operation.
|
|
19579
|
+
# @return [String]
|
|
19580
|
+
#
|
|
19581
|
+
# @!attribute [rw] next_token
|
|
19582
|
+
# The token for the next set of results. Use the value returned in the
|
|
19583
|
+
# previous response in the next request to retrieve the next set of
|
|
19584
|
+
# results.
|
|
19585
|
+
# @return [String]
|
|
19586
|
+
#
|
|
19587
|
+
# @!attribute [rw] max_results
|
|
19588
|
+
# The maximum number of results to return per page. The default
|
|
19589
|
+
# MaxResult size is 100.
|
|
19590
|
+
# @return [Integer]
|
|
19591
|
+
#
|
|
19592
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListChildHoursOfOperationsRequest AWS API Documentation
|
|
19593
|
+
#
|
|
19594
|
+
class ListChildHoursOfOperationsRequest < Struct.new(
|
|
19595
|
+
:instance_id,
|
|
19596
|
+
:hours_of_operation_id,
|
|
19597
|
+
:next_token,
|
|
19598
|
+
:max_results)
|
|
19599
|
+
SENSITIVE = []
|
|
19600
|
+
include Aws::Structure
|
|
19601
|
+
end
|
|
19602
|
+
|
|
19603
|
+
# @!attribute [rw] next_token
|
|
19604
|
+
# If there are additional results, this is the token for the next set
|
|
19605
|
+
# of results.
|
|
19606
|
+
# @return [String]
|
|
19607
|
+
#
|
|
19608
|
+
# @!attribute [rw] child_hours_of_operations_summary_list
|
|
19609
|
+
# Information about the hours of operation.
|
|
19610
|
+
# @return [Array<Types::HoursOfOperationsIdentifier>]
|
|
19611
|
+
#
|
|
19612
|
+
# @!attribute [rw] last_modified_time
|
|
19613
|
+
# The timestamp when this resource was last modified.
|
|
19614
|
+
# @return [Time]
|
|
19615
|
+
#
|
|
19616
|
+
# @!attribute [rw] last_modified_region
|
|
19617
|
+
# The Amazon Web Services Region where this resource was last
|
|
19618
|
+
# modified.
|
|
19619
|
+
# @return [String]
|
|
19620
|
+
#
|
|
19621
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListChildHoursOfOperationsResponse AWS API Documentation
|
|
19622
|
+
#
|
|
19623
|
+
class ListChildHoursOfOperationsResponse < Struct.new(
|
|
19624
|
+
:next_token,
|
|
19625
|
+
:child_hours_of_operations_summary_list,
|
|
19626
|
+
:last_modified_time,
|
|
19627
|
+
:last_modified_region)
|
|
19628
|
+
SENSITIVE = []
|
|
19629
|
+
include Aws::Structure
|
|
19630
|
+
end
|
|
19631
|
+
|
|
19268
19632
|
# A leaf node condition which can be used to specify a List condition to
|
|
19269
19633
|
# search users with attributes included in Lists like Proficiencies.
|
|
19270
19634
|
#
|
|
@@ -23077,6 +23441,37 @@ module Aws::Connect
|
|
|
23077
23441
|
include Aws::Structure
|
|
23078
23442
|
end
|
|
23079
23443
|
|
|
23444
|
+
# Information about hours of operation override
|
|
23445
|
+
#
|
|
23446
|
+
# @!attribute [rw] start
|
|
23447
|
+
# The start time or end time for an hours of operation override.
|
|
23448
|
+
# @return [Types::OverrideTimeSlice]
|
|
23449
|
+
#
|
|
23450
|
+
# @!attribute [rw] end
|
|
23451
|
+
# The start time or end time for an hours of operation override.
|
|
23452
|
+
# @return [Types::OverrideTimeSlice]
|
|
23453
|
+
#
|
|
23454
|
+
# @!attribute [rw] override_name
|
|
23455
|
+
# Unique identifier name for the override.
|
|
23456
|
+
# @return [String]
|
|
23457
|
+
#
|
|
23458
|
+
# @!attribute [rw] operational_status
|
|
23459
|
+
# Indicates whether the status is open or closed during the override
|
|
23460
|
+
# period. This status determines how the override modifies the base
|
|
23461
|
+
# hours of operation schedule.
|
|
23462
|
+
# @return [String]
|
|
23463
|
+
#
|
|
23464
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/OverrideHour AWS API Documentation
|
|
23465
|
+
#
|
|
23466
|
+
class OverrideHour < Struct.new(
|
|
23467
|
+
:start,
|
|
23468
|
+
:end,
|
|
23469
|
+
:override_name,
|
|
23470
|
+
:operational_status)
|
|
23471
|
+
SENSITIVE = []
|
|
23472
|
+
include Aws::Structure
|
|
23473
|
+
end
|
|
23474
|
+
|
|
23080
23475
|
# The start time or end time for an hours of operation override.
|
|
23081
23476
|
#
|
|
23082
23477
|
# @!attribute [rw] hours
|
|
@@ -23220,6 +23615,20 @@ module Aws::Connect
|
|
|
23220
23615
|
include Aws::Structure
|
|
23221
23616
|
end
|
|
23222
23617
|
|
|
23618
|
+
# Contains configuration for the parent hours of operation.
|
|
23619
|
+
#
|
|
23620
|
+
# @!attribute [rw] hours_of_operation_id
|
|
23621
|
+
# The identifier for the hours of operation.
|
|
23622
|
+
# @return [String]
|
|
23623
|
+
#
|
|
23624
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ParentHoursOfOperationConfig AWS API Documentation
|
|
23625
|
+
#
|
|
23626
|
+
class ParentHoursOfOperationConfig < Struct.new(
|
|
23627
|
+
:hours_of_operation_id)
|
|
23628
|
+
SENSITIVE = []
|
|
23629
|
+
include Aws::Structure
|
|
23630
|
+
end
|
|
23631
|
+
|
|
23223
23632
|
# The configuration for the allowed video and screen sharing
|
|
23224
23633
|
# capabilities for participants present over the call. For more
|
|
23225
23634
|
# information, see [Set up in-app, web, video calling, and screen
|
|
@@ -25236,6 +25645,91 @@ module Aws::Connect
|
|
|
25236
25645
|
include Aws::Structure
|
|
25237
25646
|
end
|
|
25238
25647
|
|
|
25648
|
+
# Defines the recurrence configuration for overrides. This configuration
|
|
25649
|
+
# uses a recurrence pattern to specify when and how frequently an event
|
|
25650
|
+
# should repeat.
|
|
25651
|
+
#
|
|
25652
|
+
# @!attribute [rw] recurrence_pattern
|
|
25653
|
+
# The recurrence pattern that defines how the event repeats. Example:
|
|
25654
|
+
# Frequency, Interval, ByMonth, ByMonthDay, ByWeekdayOccurrence
|
|
25655
|
+
# @return [Types::RecurrencePattern]
|
|
25656
|
+
#
|
|
25657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RecurrenceConfig AWS API Documentation
|
|
25658
|
+
#
|
|
25659
|
+
class RecurrenceConfig < Struct.new(
|
|
25660
|
+
:recurrence_pattern)
|
|
25661
|
+
SENSITIVE = []
|
|
25662
|
+
include Aws::Structure
|
|
25663
|
+
end
|
|
25664
|
+
|
|
25665
|
+
# Specifies the detailed pattern for event recurrence. Use this to
|
|
25666
|
+
# define complex scheduling rules such as "every 2nd Tuesday of the
|
|
25667
|
+
# month" or "every 3 months on the 15th".
|
|
25668
|
+
#
|
|
25669
|
+
# @!attribute [rw] frequency
|
|
25670
|
+
# Defines how often the pattern repeats. This is the base unit for the
|
|
25671
|
+
# recurrence schedule and works in conjunction with the Interval field
|
|
25672
|
+
# to determine the exact repetition sequence.
|
|
25673
|
+
# @return [String]
|
|
25674
|
+
#
|
|
25675
|
+
# @!attribute [rw] interval
|
|
25676
|
+
# Specifies the number of frequency units between each occurrence.
|
|
25677
|
+
# Must be a positive integer.
|
|
25678
|
+
#
|
|
25679
|
+
# Examples: To repeat every week, set Interval=1 with WEEKLY
|
|
25680
|
+
# frequency. To repeat every two months, set Interval=2 with MONTHLY
|
|
25681
|
+
# frequency.
|
|
25682
|
+
# @return [Integer]
|
|
25683
|
+
#
|
|
25684
|
+
# @!attribute [rw] by_month
|
|
25685
|
+
# Specifies which month the event should occur in (1-12, where
|
|
25686
|
+
# 1=January, 12=December). Used with YEARLY frequency to schedule
|
|
25687
|
+
# events in specific month.
|
|
25688
|
+
#
|
|
25689
|
+
# Note: It does not accept multiple values in the same list
|
|
25690
|
+
# @return [Array<Integer>]
|
|
25691
|
+
#
|
|
25692
|
+
# @!attribute [rw] by_month_day
|
|
25693
|
+
# Specifies which day of the month the event should occur on (1-31).
|
|
25694
|
+
# Used with MONTHLY or YEARLY frequency to schedule events on specific
|
|
25695
|
+
# date within a month.
|
|
25696
|
+
#
|
|
25697
|
+
# Examples: \[15\] for events on the 15th of each month, \[-1\] for
|
|
25698
|
+
# events on the last day of month.
|
|
25699
|
+
#
|
|
25700
|
+
# Note: It does not accept multiple values in the same list. If a
|
|
25701
|
+
# specified day doesn't exist in a particular month (e.g., day 31 in
|
|
25702
|
+
# February), the event will be skipped for that month. This field
|
|
25703
|
+
# cannot be used simultaneously with ByWeekdayOccurrence as they
|
|
25704
|
+
# represent different scheduling approaches (specific dates vs.
|
|
25705
|
+
# relative weekday positions).
|
|
25706
|
+
# @return [Array<Integer>]
|
|
25707
|
+
#
|
|
25708
|
+
# @!attribute [rw] by_weekday_occurrence
|
|
25709
|
+
# Specifies which occurrence of a weekday within the month the event
|
|
25710
|
+
# should occur on. Must be used with MONTHLY or YEARLY frequency.
|
|
25711
|
+
#
|
|
25712
|
+
# Example: 2 corresponds to second occurrence of the weekday in the
|
|
25713
|
+
# month. -1 corresponds to last occurrence of the weekday in the month
|
|
25714
|
+
#
|
|
25715
|
+
# The weekday itself is specified separately in the
|
|
25716
|
+
# HoursOfOperationConfig. Example: To schedule the recurring event for
|
|
25717
|
+
# the 2nd Thursday of April every year, set ByWeekdayOccurrence=\[2\],
|
|
25718
|
+
# Day=THURSDAY, ByMonth=\[4\], Frequency: YEARLY and INTERVAL=1.
|
|
25719
|
+
# @return [Array<Integer>]
|
|
25720
|
+
#
|
|
25721
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RecurrencePattern AWS API Documentation
|
|
25722
|
+
#
|
|
25723
|
+
class RecurrencePattern < Struct.new(
|
|
25724
|
+
:frequency,
|
|
25725
|
+
:interval,
|
|
25726
|
+
:by_month,
|
|
25727
|
+
:by_month_day,
|
|
25728
|
+
:by_weekday_occurrence)
|
|
25729
|
+
SENSITIVE = []
|
|
25730
|
+
include Aws::Structure
|
|
25731
|
+
end
|
|
25732
|
+
|
|
25239
25733
|
# Well-formed data on a contact, used by agents to complete a contact
|
|
25240
25734
|
# request. You can have up to 4,096 UTF-8 bytes across all references
|
|
25241
25735
|
# for a contact.
|
|
@@ -32380,6 +32874,10 @@ module Aws::Connect
|
|
|
32380
32874
|
# Whether automated evaluations are enabled.
|
|
32381
32875
|
# @return [Types::EvaluationFormAutoEvaluationConfiguration]
|
|
32382
32876
|
#
|
|
32877
|
+
# @!attribute [rw] review_configuration
|
|
32878
|
+
# Configuration for evaluation review settings of the evaluation form.
|
|
32879
|
+
# @return [Types::EvaluationReviewConfiguration]
|
|
32880
|
+
#
|
|
32383
32881
|
# @!attribute [rw] as_draft
|
|
32384
32882
|
# A boolean flag indicating whether to update evaluation form to draft
|
|
32385
32883
|
# state.
|
|
@@ -32419,6 +32917,7 @@ module Aws::Connect
|
|
|
32419
32917
|
:items,
|
|
32420
32918
|
:scoring_strategy,
|
|
32421
32919
|
:auto_evaluation_configuration,
|
|
32920
|
+
:review_configuration,
|
|
32422
32921
|
:as_draft,
|
|
32423
32922
|
:client_token,
|
|
32424
32923
|
:target_configuration,
|
|
@@ -32483,6 +32982,23 @@ module Aws::Connect
|
|
|
32483
32982
|
# The date until the hours of operation override is effective.
|
|
32484
32983
|
# @return [String]
|
|
32485
32984
|
#
|
|
32985
|
+
# @!attribute [rw] recurrence_config
|
|
32986
|
+
# Configuration for a recurring event.
|
|
32987
|
+
# @return [Types::RecurrenceConfig]
|
|
32988
|
+
#
|
|
32989
|
+
# @!attribute [rw] override_type
|
|
32990
|
+
# Whether the override will be defined as a *standard* or as a
|
|
32991
|
+
# *recurring event*.
|
|
32992
|
+
#
|
|
32993
|
+
# For more information about how override types are applied, see
|
|
32994
|
+
# [Build your list of overrides][1] in the <i> Administrator
|
|
32995
|
+
# Guide</i>.
|
|
32996
|
+
#
|
|
32997
|
+
#
|
|
32998
|
+
#
|
|
32999
|
+
# [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
|
|
33000
|
+
# @return [String]
|
|
33001
|
+
#
|
|
32486
33002
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateHoursOfOperationOverrideRequest AWS API Documentation
|
|
32487
33003
|
#
|
|
32488
33004
|
class UpdateHoursOfOperationOverrideRequest < Struct.new(
|
|
@@ -32493,7 +33009,9 @@ module Aws::Connect
|
|
|
32493
33009
|
:description,
|
|
32494
33010
|
:config,
|
|
32495
33011
|
:effective_from,
|
|
32496
|
-
:effective_till
|
|
33012
|
+
:effective_till,
|
|
33013
|
+
:recurrence_config,
|
|
33014
|
+
:override_type)
|
|
32497
33015
|
SENSITIVE = []
|
|
32498
33016
|
include Aws::Structure
|
|
32499
33017
|
end
|