aws-sdk-connect 1.234.0 → 1.235.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +272 -1
- data/lib/aws-sdk-connect/client_api.rb +152 -0
- data/lib/aws-sdk-connect/types.rb +386 -3
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +64 -2
- data/sig/types.rbs +79 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 513c666e3afebb7cc5a05790ac59a688c9da15ccbf0dd6b38759f236d9477148
|
|
4
|
+
data.tar.gz: 75318585f873fb5cd30bc56c23862fb4e66f27afb9441e40328ce8ce9e1eb4bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5bb0f90574362a6a2fc0928472e745dc8696eb53d432d82f9c7240fbee4a0ba51f98f187f72a94b0d68fdf0e35f6cc29416ccdb3d6d69464c49b8fa28cba25a4
|
|
7
|
+
data.tar.gz: 8fe2f38f967eba6613fa308427440165da198b73f9ba93027249c7ce98443d320dccbc06d419b181730395903a8ff6909a0bca9650a78d35ffeb0f31b211de2a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.235.0 (2026-01-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* 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.
|
|
8
|
+
|
|
4
9
|
1.234.0 (2026-01-08)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.235.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
|
|
@@ -3413,6 +3462,17 @@ module Aws::Connect
|
|
|
3413
3462
|
# Configuration information for the hours of operation: day, start time,
|
|
3414
3463
|
# and end time.
|
|
3415
3464
|
#
|
|
3465
|
+
# @option params [Array<Types::ParentHoursOfOperationConfig>] :parent_hours_of_operation_configs
|
|
3466
|
+
# Configuration for parent hours of operations. Eg: ResourceArn.
|
|
3467
|
+
#
|
|
3468
|
+
# For more information about parent hours of operations, see [Link
|
|
3469
|
+
# overrides from different hours of operation][1] in the <i>
|
|
3470
|
+
# Administrator Guide</i>.
|
|
3471
|
+
#
|
|
3472
|
+
#
|
|
3473
|
+
#
|
|
3474
|
+
# [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
|
|
3475
|
+
#
|
|
3416
3476
|
# @option params [Hash<String,String>] :tags
|
|
3417
3477
|
# The tags used to organize, track, or control access for this resource.
|
|
3418
3478
|
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
|
@@ -3443,6 +3503,11 @@ module Aws::Connect
|
|
|
3443
3503
|
# },
|
|
3444
3504
|
# },
|
|
3445
3505
|
# ],
|
|
3506
|
+
# parent_hours_of_operation_configs: [
|
|
3507
|
+
# {
|
|
3508
|
+
# hours_of_operation_id: "HoursOfOperationId",
|
|
3509
|
+
# },
|
|
3510
|
+
# ],
|
|
3446
3511
|
# tags: {
|
|
3447
3512
|
# "TagKey" => "TagValue",
|
|
3448
3513
|
# },
|
|
@@ -3487,6 +3552,20 @@ module Aws::Connect
|
|
|
3487
3552
|
# @option params [required, String] :effective_till
|
|
3488
3553
|
# The date until when the hours of operation override is effective.
|
|
3489
3554
|
#
|
|
3555
|
+
# @option params [Types::RecurrenceConfig] :recurrence_config
|
|
3556
|
+
# Configuration for a recurring event.
|
|
3557
|
+
#
|
|
3558
|
+
# @option params [String] :override_type
|
|
3559
|
+
# Whether the override will be defined as a *standard* or as a
|
|
3560
|
+
# *recurring event*.
|
|
3561
|
+
#
|
|
3562
|
+
# For more information about how override types are applied, see [Build
|
|
3563
|
+
# your list of overrides][1] in the <i> Administrator Guide</i>.
|
|
3564
|
+
#
|
|
3565
|
+
#
|
|
3566
|
+
#
|
|
3567
|
+
# [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
|
|
3568
|
+
#
|
|
3490
3569
|
# @return [Types::CreateHoursOfOperationOverrideResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3491
3570
|
#
|
|
3492
3571
|
# * {Types::CreateHoursOfOperationOverrideResponse#hours_of_operation_override_id #hours_of_operation_override_id} => String
|
|
@@ -3513,6 +3592,16 @@ module Aws::Connect
|
|
|
3513
3592
|
# ],
|
|
3514
3593
|
# effective_from: "HoursOfOperationOverrideYearMonthDayDateFormat", # required
|
|
3515
3594
|
# effective_till: "HoursOfOperationOverrideYearMonthDayDateFormat", # required
|
|
3595
|
+
# recurrence_config: {
|
|
3596
|
+
# recurrence_pattern: { # required
|
|
3597
|
+
# frequency: "WEEKLY", # required, accepts WEEKLY, MONTHLY, YEARLY
|
|
3598
|
+
# interval: 1, # required
|
|
3599
|
+
# by_month: [1],
|
|
3600
|
+
# by_month_day: [1],
|
|
3601
|
+
# by_weekday_occurrence: [1],
|
|
3602
|
+
# },
|
|
3603
|
+
# },
|
|
3604
|
+
# override_type: "STANDARD", # accepts STANDARD, OPEN, CLOSED
|
|
3516
3605
|
# })
|
|
3517
3606
|
#
|
|
3518
3607
|
# @example Response structure
|
|
@@ -4319,6 +4408,9 @@ module Aws::Connect
|
|
|
4319
4408
|
# quota of 50 queues per routing profile per instance that is listed in
|
|
4320
4409
|
# Amazon Connect service quotas.
|
|
4321
4410
|
#
|
|
4411
|
+
# Note: Use this config for chat, email, and task contacts. It does not
|
|
4412
|
+
# support voice contacts.
|
|
4413
|
+
#
|
|
4322
4414
|
# @option params [required, Array<Types::MediaConcurrency>] :media_concurrencies
|
|
4323
4415
|
# The channels that agents can handle in the Contact Control Panel (CCP)
|
|
4324
4416
|
# for this routing profile.
|
|
@@ -7848,6 +7940,10 @@ module Aws::Connect
|
|
|
7848
7940
|
# resp.hours_of_operation.config[0].start_time.minutes #=> Integer
|
|
7849
7941
|
# resp.hours_of_operation.config[0].end_time.hours #=> Integer
|
|
7850
7942
|
# resp.hours_of_operation.config[0].end_time.minutes #=> Integer
|
|
7943
|
+
# resp.hours_of_operation.parent_hours_of_operations #=> Array
|
|
7944
|
+
# resp.hours_of_operation.parent_hours_of_operations[0].name #=> String
|
|
7945
|
+
# resp.hours_of_operation.parent_hours_of_operations[0].id #=> String
|
|
7946
|
+
# resp.hours_of_operation.parent_hours_of_operations[0].arn #=> String
|
|
7851
7947
|
# resp.hours_of_operation.tags #=> Hash
|
|
7852
7948
|
# resp.hours_of_operation.tags["TagKey"] #=> String
|
|
7853
7949
|
# resp.hours_of_operation.last_modified_time #=> Time
|
|
@@ -7900,6 +7996,15 @@ module Aws::Connect
|
|
|
7900
7996
|
# resp.hours_of_operation_override.config[0].end_time.minutes #=> Integer
|
|
7901
7997
|
# resp.hours_of_operation_override.effective_from #=> String
|
|
7902
7998
|
# resp.hours_of_operation_override.effective_till #=> String
|
|
7999
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.frequency #=> String, one of "WEEKLY", "MONTHLY", "YEARLY"
|
|
8000
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.interval #=> Integer
|
|
8001
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.by_month #=> Array
|
|
8002
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.by_month[0] #=> Integer
|
|
8003
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.by_month_day #=> Array
|
|
8004
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.by_month_day[0] #=> Integer
|
|
8005
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.by_weekday_occurrence #=> Array
|
|
8006
|
+
# resp.hours_of_operation_override.recurrence_config.recurrence_pattern.by_weekday_occurrence[0] #=> Integer
|
|
8007
|
+
# resp.hours_of_operation_override.override_type #=> String, one of "STANDARD", "OPEN", "CLOSED"
|
|
7903
8008
|
#
|
|
7904
8009
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeHoursOfOperationOverride AWS API Documentation
|
|
7905
8010
|
#
|
|
@@ -9301,6 +9406,48 @@ module Aws::Connect
|
|
|
9301
9406
|
req.send_request(options)
|
|
9302
9407
|
end
|
|
9303
9408
|
|
|
9409
|
+
# Disassociates a set of hours of operations with another hours of
|
|
9410
|
+
# operation. Refer to Administrator Guide [ here ][1] for more
|
|
9411
|
+
# information on inheriting overrides from parent hours of operation(s).
|
|
9412
|
+
#
|
|
9413
|
+
#
|
|
9414
|
+
#
|
|
9415
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
|
|
9416
|
+
#
|
|
9417
|
+
# @option params [required, String] :instance_id
|
|
9418
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
9419
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
9420
|
+
#
|
|
9421
|
+
#
|
|
9422
|
+
#
|
|
9423
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
9424
|
+
#
|
|
9425
|
+
# @option params [required, String] :hours_of_operation_id
|
|
9426
|
+
# The identifier of the child hours of operation.
|
|
9427
|
+
#
|
|
9428
|
+
# @option params [required, Array<String>] :parent_hours_of_operation_ids
|
|
9429
|
+
# The Amazon Resource Names (ARNs) of the parent hours of operation
|
|
9430
|
+
# resources to disassociate with the child hours of operation resource.
|
|
9431
|
+
#
|
|
9432
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
9433
|
+
#
|
|
9434
|
+
# @example Request syntax with placeholder values
|
|
9435
|
+
#
|
|
9436
|
+
# resp = client.disassociate_hours_of_operations({
|
|
9437
|
+
# instance_id: "InstanceId", # required
|
|
9438
|
+
# hours_of_operation_id: "HoursOfOperationId", # required
|
|
9439
|
+
# parent_hours_of_operation_ids: ["HoursOfOperationId"], # required
|
|
9440
|
+
# })
|
|
9441
|
+
#
|
|
9442
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateHoursOfOperations AWS API Documentation
|
|
9443
|
+
#
|
|
9444
|
+
# @overload disassociate_hours_of_operations(params = {})
|
|
9445
|
+
# @param [Hash] params ({})
|
|
9446
|
+
def disassociate_hours_of_operations(params = {}, options = {})
|
|
9447
|
+
req = build_request(:disassociate_hours_of_operations, params)
|
|
9448
|
+
req.send_request(options)
|
|
9449
|
+
end
|
|
9450
|
+
|
|
9304
9451
|
# This API is in preview release for Amazon Connect and is subject to
|
|
9305
9452
|
# change.
|
|
9306
9453
|
#
|
|
@@ -10581,6 +10728,7 @@ module Aws::Connect
|
|
|
10581
10728
|
# @return [Types::GetEffectiveHoursOfOperationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10582
10729
|
#
|
|
10583
10730
|
# * {Types::GetEffectiveHoursOfOperationsResponse#effective_hours_of_operation_list #effective_hours_of_operation_list} => Array<Types::EffectiveHoursOfOperations>
|
|
10731
|
+
# * {Types::GetEffectiveHoursOfOperationsResponse#effective_override_hours_list #effective_override_hours_list} => Array<Types::EffectiveOverrideHours>
|
|
10584
10732
|
# * {Types::GetEffectiveHoursOfOperationsResponse#time_zone #time_zone} => String
|
|
10585
10733
|
#
|
|
10586
10734
|
# @example Request syntax with placeholder values
|
|
@@ -10601,6 +10749,15 @@ module Aws::Connect
|
|
|
10601
10749
|
# resp.effective_hours_of_operation_list[0].operational_hours[0].start.minutes #=> Integer
|
|
10602
10750
|
# resp.effective_hours_of_operation_list[0].operational_hours[0].end.hours #=> Integer
|
|
10603
10751
|
# resp.effective_hours_of_operation_list[0].operational_hours[0].end.minutes #=> Integer
|
|
10752
|
+
# resp.effective_override_hours_list #=> Array
|
|
10753
|
+
# resp.effective_override_hours_list[0].date #=> String
|
|
10754
|
+
# resp.effective_override_hours_list[0].override_hours #=> Array
|
|
10755
|
+
# resp.effective_override_hours_list[0].override_hours[0].start.hours #=> Integer
|
|
10756
|
+
# resp.effective_override_hours_list[0].override_hours[0].start.minutes #=> Integer
|
|
10757
|
+
# resp.effective_override_hours_list[0].override_hours[0].end.hours #=> Integer
|
|
10758
|
+
# resp.effective_override_hours_list[0].override_hours[0].end.minutes #=> Integer
|
|
10759
|
+
# resp.effective_override_hours_list[0].override_hours[0].override_name #=> String
|
|
10760
|
+
# resp.effective_override_hours_list[0].override_hours[0].operational_status #=> String, one of "OPEN", "CLOSED"
|
|
10604
10761
|
# resp.time_zone #=> String
|
|
10605
10762
|
#
|
|
10606
10763
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetEffectiveHoursOfOperations AWS API Documentation
|
|
@@ -13980,6 +14137,74 @@ module Aws::Connect
|
|
|
13980
14137
|
req.send_request(options)
|
|
13981
14138
|
end
|
|
13982
14139
|
|
|
14140
|
+
# Provides information about the child hours of operations for the
|
|
14141
|
+
# specified parent hours of operation.
|
|
14142
|
+
#
|
|
14143
|
+
# For more information about child hours of operations, see [Link
|
|
14144
|
+
# overrides from different hours of operation][1] in the <i>
|
|
14145
|
+
# Administrator Guide</i>.
|
|
14146
|
+
#
|
|
14147
|
+
#
|
|
14148
|
+
#
|
|
14149
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
|
14150
|
+
#
|
|
14151
|
+
# @option params [required, String] :instance_id
|
|
14152
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
14153
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
14154
|
+
#
|
|
14155
|
+
#
|
|
14156
|
+
#
|
|
14157
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
14158
|
+
#
|
|
14159
|
+
# @option params [required, String] :hours_of_operation_id
|
|
14160
|
+
# The identifier of the parent hours of operation.
|
|
14161
|
+
#
|
|
14162
|
+
# @option params [String] :next_token
|
|
14163
|
+
# The token for the next set of results. Use the value returned in the
|
|
14164
|
+
# previous response in the next request to retrieve the next set of
|
|
14165
|
+
# results.
|
|
14166
|
+
#
|
|
14167
|
+
# @option params [Integer] :max_results
|
|
14168
|
+
# The maximum number of results to return per page. The default
|
|
14169
|
+
# MaxResult size is 100.
|
|
14170
|
+
#
|
|
14171
|
+
# @return [Types::ListChildHoursOfOperationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
14172
|
+
#
|
|
14173
|
+
# * {Types::ListChildHoursOfOperationsResponse#next_token #next_token} => String
|
|
14174
|
+
# * {Types::ListChildHoursOfOperationsResponse#child_hours_of_operations_summary_list #child_hours_of_operations_summary_list} => Array<Types::HoursOfOperationsIdentifier>
|
|
14175
|
+
# * {Types::ListChildHoursOfOperationsResponse#last_modified_time #last_modified_time} => Time
|
|
14176
|
+
# * {Types::ListChildHoursOfOperationsResponse#last_modified_region #last_modified_region} => String
|
|
14177
|
+
#
|
|
14178
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
14179
|
+
#
|
|
14180
|
+
# @example Request syntax with placeholder values
|
|
14181
|
+
#
|
|
14182
|
+
# resp = client.list_child_hours_of_operations({
|
|
14183
|
+
# instance_id: "InstanceId", # required
|
|
14184
|
+
# hours_of_operation_id: "HoursOfOperationId", # required
|
|
14185
|
+
# next_token: "NextToken",
|
|
14186
|
+
# max_results: 1,
|
|
14187
|
+
# })
|
|
14188
|
+
#
|
|
14189
|
+
# @example Response structure
|
|
14190
|
+
#
|
|
14191
|
+
# resp.next_token #=> String
|
|
14192
|
+
# resp.child_hours_of_operations_summary_list #=> Array
|
|
14193
|
+
# resp.child_hours_of_operations_summary_list[0].name #=> String
|
|
14194
|
+
# resp.child_hours_of_operations_summary_list[0].id #=> String
|
|
14195
|
+
# resp.child_hours_of_operations_summary_list[0].arn #=> String
|
|
14196
|
+
# resp.last_modified_time #=> Time
|
|
14197
|
+
# resp.last_modified_region #=> String
|
|
14198
|
+
#
|
|
14199
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListChildHoursOfOperations AWS API Documentation
|
|
14200
|
+
#
|
|
14201
|
+
# @overload list_child_hours_of_operations(params = {})
|
|
14202
|
+
# @param [Hash] params ({})
|
|
14203
|
+
def list_child_hours_of_operations(params = {}, options = {})
|
|
14204
|
+
req = build_request(:list_child_hours_of_operations, params)
|
|
14205
|
+
req.send_request(options)
|
|
14206
|
+
end
|
|
14207
|
+
|
|
13983
14208
|
# Lists contact evaluations in the specified Amazon Connect instance.
|
|
13984
14209
|
#
|
|
13985
14210
|
# @option params [required, String] :instance_id
|
|
@@ -15039,6 +15264,15 @@ module Aws::Connect
|
|
|
15039
15264
|
# resp.hours_of_operation_override_list[0].config[0].end_time.minutes #=> Integer
|
|
15040
15265
|
# resp.hours_of_operation_override_list[0].effective_from #=> String
|
|
15041
15266
|
# resp.hours_of_operation_override_list[0].effective_till #=> String
|
|
15267
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.frequency #=> String, one of "WEEKLY", "MONTHLY", "YEARLY"
|
|
15268
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.interval #=> Integer
|
|
15269
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.by_month #=> Array
|
|
15270
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.by_month[0] #=> Integer
|
|
15271
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.by_month_day #=> Array
|
|
15272
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.by_month_day[0] #=> Integer
|
|
15273
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.by_weekday_occurrence #=> Array
|
|
15274
|
+
# resp.hours_of_operation_override_list[0].recurrence_config.recurrence_pattern.by_weekday_occurrence[0] #=> Integer
|
|
15275
|
+
# resp.hours_of_operation_override_list[0].override_type #=> String, one of "STANDARD", "OPEN", "CLOSED"
|
|
15042
15276
|
# resp.last_modified_region #=> String
|
|
15043
15277
|
# resp.last_modified_time #=> Time
|
|
15044
15278
|
#
|
|
@@ -18984,6 +19218,15 @@ module Aws::Connect
|
|
|
18984
19218
|
# resp.hours_of_operation_overrides[0].config[0].end_time.minutes #=> Integer
|
|
18985
19219
|
# resp.hours_of_operation_overrides[0].effective_from #=> String
|
|
18986
19220
|
# resp.hours_of_operation_overrides[0].effective_till #=> String
|
|
19221
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.frequency #=> String, one of "WEEKLY", "MONTHLY", "YEARLY"
|
|
19222
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.interval #=> Integer
|
|
19223
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.by_month #=> Array
|
|
19224
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.by_month[0] #=> Integer
|
|
19225
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.by_month_day #=> Array
|
|
19226
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.by_month_day[0] #=> Integer
|
|
19227
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.by_weekday_occurrence #=> Array
|
|
19228
|
+
# resp.hours_of_operation_overrides[0].recurrence_config.recurrence_pattern.by_weekday_occurrence[0] #=> Integer
|
|
19229
|
+
# resp.hours_of_operation_overrides[0].override_type #=> String, one of "STANDARD", "OPEN", "CLOSED"
|
|
18987
19230
|
# resp.next_token #=> String
|
|
18988
19231
|
# resp.approximate_total_count #=> Integer
|
|
18989
19232
|
#
|
|
@@ -19090,6 +19333,10 @@ module Aws::Connect
|
|
|
19090
19333
|
# resp.hours_of_operations[0].config[0].start_time.minutes #=> Integer
|
|
19091
19334
|
# resp.hours_of_operations[0].config[0].end_time.hours #=> Integer
|
|
19092
19335
|
# resp.hours_of_operations[0].config[0].end_time.minutes #=> Integer
|
|
19336
|
+
# resp.hours_of_operations[0].parent_hours_of_operations #=> Array
|
|
19337
|
+
# resp.hours_of_operations[0].parent_hours_of_operations[0].name #=> String
|
|
19338
|
+
# resp.hours_of_operations[0].parent_hours_of_operations[0].id #=> String
|
|
19339
|
+
# resp.hours_of_operations[0].parent_hours_of_operations[0].arn #=> String
|
|
19093
19340
|
# resp.hours_of_operations[0].tags #=> Hash
|
|
19094
19341
|
# resp.hours_of_operations[0].tags["TagKey"] #=> String
|
|
19095
19342
|
# resp.hours_of_operations[0].last_modified_time #=> Time
|
|
@@ -24543,6 +24790,20 @@ module Aws::Connect
|
|
|
24543
24790
|
# @option params [String] :effective_till
|
|
24544
24791
|
# The date until the hours of operation override is effective.
|
|
24545
24792
|
#
|
|
24793
|
+
# @option params [Types::RecurrenceConfig] :recurrence_config
|
|
24794
|
+
# Configuration for a recurring event.
|
|
24795
|
+
#
|
|
24796
|
+
# @option params [String] :override_type
|
|
24797
|
+
# Whether the override will be defined as a *standard* or as a
|
|
24798
|
+
# *recurring event*.
|
|
24799
|
+
#
|
|
24800
|
+
# For more information about how override types are applied, see [Build
|
|
24801
|
+
# your list of overrides][1] in the <i> Administrator Guide</i>.
|
|
24802
|
+
#
|
|
24803
|
+
#
|
|
24804
|
+
#
|
|
24805
|
+
# [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
|
|
24806
|
+
#
|
|
24546
24807
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
24547
24808
|
#
|
|
24548
24809
|
# @example Request syntax with placeholder values
|
|
@@ -24568,6 +24829,16 @@ module Aws::Connect
|
|
|
24568
24829
|
# ],
|
|
24569
24830
|
# effective_from: "HoursOfOperationOverrideYearMonthDayDateFormat",
|
|
24570
24831
|
# effective_till: "HoursOfOperationOverrideYearMonthDayDateFormat",
|
|
24832
|
+
# recurrence_config: {
|
|
24833
|
+
# recurrence_pattern: { # required
|
|
24834
|
+
# frequency: "WEEKLY", # required, accepts WEEKLY, MONTHLY, YEARLY
|
|
24835
|
+
# interval: 1, # required
|
|
24836
|
+
# by_month: [1],
|
|
24837
|
+
# by_month_day: [1],
|
|
24838
|
+
# by_weekday_occurrence: [1],
|
|
24839
|
+
# },
|
|
24840
|
+
# },
|
|
24841
|
+
# override_type: "STANDARD", # accepts STANDARD, OPEN, CLOSED
|
|
24571
24842
|
# })
|
|
24572
24843
|
#
|
|
24573
24844
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateHoursOfOperationOverride AWS API Documentation
|
|
@@ -26859,7 +27130,7 @@ module Aws::Connect
|
|
|
26859
27130
|
tracer: tracer
|
|
26860
27131
|
)
|
|
26861
27132
|
context[:gem_name] = 'aws-sdk-connect'
|
|
26862
|
-
context[:gem_version] = '1.
|
|
27133
|
+
context[:gem_version] = '1.235.0'
|
|
26863
27134
|
Seahorse::Client::Request.new(handlers, context)
|
|
26864
27135
|
end
|
|
26865
27136
|
|