aws-sdk-connect 1.233.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.
@@ -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
@@ -5654,6 +5685,23 @@ module Aws::Connect
5654
5685
  # The date until when the hours of operation override is effective.
5655
5686
  # @return [String]
5656
5687
  #
5688
+ # @!attribute [rw] recurrence_config
5689
+ # Configuration for a recurring event.
5690
+ # @return [Types::RecurrenceConfig]
5691
+ #
5692
+ # @!attribute [rw] override_type
5693
+ # Whether the override will be defined as a *standard* or as a
5694
+ # *recurring event*.
5695
+ #
5696
+ # For more information about how override types are applied, see
5697
+ # [Build your list of overrides][1] in the <i> Administrator
5698
+ # Guide</i>.
5699
+ #
5700
+ #
5701
+ #
5702
+ # [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
5703
+ # @return [String]
5704
+ #
5657
5705
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateHoursOfOperationOverrideRequest AWS API Documentation
5658
5706
  #
5659
5707
  class CreateHoursOfOperationOverrideRequest < Struct.new(
@@ -5663,7 +5711,9 @@ module Aws::Connect
5663
5711
  :description,
5664
5712
  :config,
5665
5713
  :effective_from,
5666
- :effective_till)
5714
+ :effective_till,
5715
+ :recurrence_config,
5716
+ :override_type)
5667
5717
  SENSITIVE = []
5668
5718
  include Aws::Structure
5669
5719
  end
@@ -5706,6 +5756,18 @@ module Aws::Connect
5706
5756
  # time, and end time.
5707
5757
  # @return [Array<Types::HoursOfOperationConfig>]
5708
5758
  #
5759
+ # @!attribute [rw] parent_hours_of_operation_configs
5760
+ # Configuration for parent hours of operations. Eg: ResourceArn.
5761
+ #
5762
+ # For more information about parent hours of operations, see [Link
5763
+ # overrides from different hours of operation][1] in the <i>
5764
+ # Administrator Guide</i>.
5765
+ #
5766
+ #
5767
+ #
5768
+ # [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
5769
+ # @return [Array<Types::ParentHoursOfOperationConfig>]
5770
+ #
5709
5771
  # @!attribute [rw] tags
5710
5772
  # The tags used to organize, track, or control access for this
5711
5773
  # resource. For example, \{ "Tags": \{"key1":"value1",
@@ -5720,6 +5782,7 @@ module Aws::Connect
5720
5782
  :description,
5721
5783
  :time_zone,
5722
5784
  :config,
5785
+ :parent_hours_of_operation_configs,
5723
5786
  :tags)
5724
5787
  SENSITIVE = []
5725
5788
  include Aws::Structure
@@ -6414,6 +6477,9 @@ module Aws::Connect
6414
6477
  # during a CreateRoutingProfile API request. It is different from the
6415
6478
  # quota of 50 queues per routing profile per instance that is listed
6416
6479
  # in Amazon Connect service quotas.
6480
+ #
6481
+ # Note: Use this config for chat, email, and task contacts. It does
6482
+ # not support voice contacts.
6417
6483
  # @return [Array<Types::RoutingProfileManualAssignmentQueueConfig>]
6418
6484
  #
6419
6485
  # @!attribute [rw] media_concurrencies
@@ -10552,6 +10618,35 @@ module Aws::Connect
10552
10618
  #
10553
10619
  class DisassociateFlowResponse < Aws::EmptyStructure; end
10554
10620
 
10621
+ # @!attribute [rw] instance_id
10622
+ # The identifier of the Amazon Connect instance. You can [find the
10623
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
10624
+ #
10625
+ #
10626
+ #
10627
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
10628
+ # @return [String]
10629
+ #
10630
+ # @!attribute [rw] hours_of_operation_id
10631
+ # The identifier of the child hours of operation.
10632
+ # @return [String]
10633
+ #
10634
+ # @!attribute [rw] parent_hours_of_operation_ids
10635
+ # The Amazon Resource Names (ARNs) of the parent hours of operation
10636
+ # resources to disassociate with the child hours of operation
10637
+ # resource.
10638
+ # @return [Array<String>]
10639
+ #
10640
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateHoursOfOperationsRequest AWS API Documentation
10641
+ #
10642
+ class DisassociateHoursOfOperationsRequest < Struct.new(
10643
+ :instance_id,
10644
+ :hours_of_operation_id,
10645
+ :parent_hours_of_operation_ids)
10646
+ SENSITIVE = []
10647
+ include Aws::Structure
10648
+ end
10649
+
10555
10650
  # @!attribute [rw] instance_id
10556
10651
  # The identifier of the Amazon Connect instance. You can [find the
10557
10652
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -11059,6 +11154,27 @@ module Aws::Connect
11059
11154
  include Aws::Structure
11060
11155
  end
11061
11156
 
11157
+ # Information about the hours of operation overrides which contribute to
11158
+ # effective hours of operations.
11159
+ #
11160
+ # @!attribute [rw] date
11161
+ # The date that the hours of operation override applies to.
11162
+ # @return [String]
11163
+ #
11164
+ # @!attribute [rw] override_hours
11165
+ # Information about the hours of operation overrides that apply to a
11166
+ # specific date.
11167
+ # @return [Array<Types::OverrideHour>]
11168
+ #
11169
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EffectiveOverrideHours AWS API Documentation
11170
+ #
11171
+ class EffectiveOverrideHours < Struct.new(
11172
+ :date,
11173
+ :override_hours)
11174
+ SENSITIVE = []
11175
+ include Aws::Structure
11176
+ end
11177
+
11062
11178
  # Contains information about a source or destination email address.
11063
11179
  #
11064
11180
  # @!attribute [rw] email_address
@@ -14344,6 +14460,19 @@ module Aws::Connect
14344
14460
  # Information about the effective hours of operations.
14345
14461
  # @return [Array<Types::EffectiveHoursOfOperations>]
14346
14462
  #
14463
+ # @!attribute [rw] effective_override_hours_list
14464
+ # Information about override configurations applied to the base hours
14465
+ # of operation to calculate the effective hours.
14466
+ #
14467
+ # For more information about how override types are applied, see
14468
+ # [Build your list of overrides][1] in the <i> Administrator
14469
+ # Guide</i>.
14470
+ #
14471
+ #
14472
+ #
14473
+ # [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
14474
+ # @return [Array<Types::EffectiveOverrideHours>]
14475
+ #
14347
14476
  # @!attribute [rw] time_zone
14348
14477
  # The time zone for the hours of operation.
14349
14478
  # @return [String]
@@ -14352,6 +14481,7 @@ module Aws::Connect
14352
14481
  #
14353
14482
  class GetEffectiveHoursOfOperationsResponse < Struct.new(
14354
14483
  :effective_hours_of_operation_list,
14484
+ :effective_override_hours_list,
14355
14485
  :time_zone)
14356
14486
  SENSITIVE = []
14357
14487
  include Aws::Structure
@@ -17851,6 +17981,10 @@ module Aws::Connect
17851
17981
  # Configuration information for the hours of operation.
17852
17982
  # @return [Array<Types::HoursOfOperationConfig>]
17853
17983
  #
17984
+ # @!attribute [rw] parent_hours_of_operations
17985
+ # Information about parent hours of operations.
17986
+ # @return [Array<Types::HoursOfOperationsIdentifier>]
17987
+ #
17854
17988
  # @!attribute [rw] tags
17855
17989
  # The tags used to organize, track, or control access for this
17856
17990
  # resource. For example, \{ "Tags": \{"key1":"value1",
@@ -17875,6 +18009,7 @@ module Aws::Connect
17875
18009
  :description,
17876
18010
  :time_zone,
17877
18011
  :config,
18012
+ :parent_hours_of_operations,
17878
18013
  :tags,
17879
18014
  :last_modified_time,
17880
18015
  :last_modified_region)
@@ -17942,6 +18077,15 @@ module Aws::Connect
17942
18077
  # The date until the hours of operation override is effective.
17943
18078
  # @return [String]
17944
18079
  #
18080
+ # @!attribute [rw] recurrence_config
18081
+ # Configuration for a recurring event.
18082
+ # @return [Types::RecurrenceConfig]
18083
+ #
18084
+ # @!attribute [rw] override_type
18085
+ # Whether the override will be defined as a *standard* or as a
18086
+ # *recurring event*.
18087
+ # @return [String]
18088
+ #
17945
18089
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperationOverride AWS API Documentation
17946
18090
  #
17947
18091
  class HoursOfOperationOverride < Struct.new(
@@ -17952,7 +18096,9 @@ module Aws::Connect
17952
18096
  :description,
17953
18097
  :config,
17954
18098
  :effective_from,
17955
- :effective_till)
18099
+ :effective_till,
18100
+ :recurrence_config,
18101
+ :override_type)
17956
18102
  SENSITIVE = []
17957
18103
  include Aws::Structure
17958
18104
  end
@@ -18126,6 +18272,30 @@ module Aws::Connect
18126
18272
  include Aws::Structure
18127
18273
  end
18128
18274
 
18275
+ # Identifier for a hours of operations resource: ARN, ID, Name
18276
+ #
18277
+ # @!attribute [rw] name
18278
+ # Name of the hours of operation
18279
+ # @return [String]
18280
+ #
18281
+ # @!attribute [rw] id
18282
+ # Unique identifier of the hours of operation.
18283
+ # @return [String]
18284
+ #
18285
+ # @!attribute [rw] arn
18286
+ # Amazon Resource Name (ARN) of the hours of operations.
18287
+ # @return [String]
18288
+ #
18289
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperationsIdentifier AWS API Documentation
18290
+ #
18291
+ class HoursOfOperationsIdentifier < Struct.new(
18292
+ :name,
18293
+ :id,
18294
+ :arn)
18295
+ SENSITIVE = []
18296
+ include Aws::Structure
18297
+ end
18298
+
18129
18299
  # An entity with the same name already exists.
18130
18300
  #
18131
18301
  # @!attribute [rw] message
@@ -19265,6 +19435,70 @@ module Aws::Connect
19265
19435
  include Aws::Structure
19266
19436
  end
19267
19437
 
19438
+ # @!attribute [rw] instance_id
19439
+ # The identifier of the Amazon Connect instance. You can [find the
19440
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
19441
+ #
19442
+ #
19443
+ #
19444
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
19445
+ # @return [String]
19446
+ #
19447
+ # @!attribute [rw] hours_of_operation_id
19448
+ # The identifier of the parent hours of operation.
19449
+ # @return [String]
19450
+ #
19451
+ # @!attribute [rw] next_token
19452
+ # The token for the next set of results. Use the value returned in the
19453
+ # previous response in the next request to retrieve the next set of
19454
+ # results.
19455
+ # @return [String]
19456
+ #
19457
+ # @!attribute [rw] max_results
19458
+ # The maximum number of results to return per page. The default
19459
+ # MaxResult size is 100.
19460
+ # @return [Integer]
19461
+ #
19462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListChildHoursOfOperationsRequest AWS API Documentation
19463
+ #
19464
+ class ListChildHoursOfOperationsRequest < Struct.new(
19465
+ :instance_id,
19466
+ :hours_of_operation_id,
19467
+ :next_token,
19468
+ :max_results)
19469
+ SENSITIVE = []
19470
+ include Aws::Structure
19471
+ end
19472
+
19473
+ # @!attribute [rw] next_token
19474
+ # If there are additional results, this is the token for the next set
19475
+ # of results.
19476
+ # @return [String]
19477
+ #
19478
+ # @!attribute [rw] child_hours_of_operations_summary_list
19479
+ # Information about the hours of operation.
19480
+ # @return [Array<Types::HoursOfOperationsIdentifier>]
19481
+ #
19482
+ # @!attribute [rw] last_modified_time
19483
+ # The timestamp when this resource was last modified.
19484
+ # @return [Time]
19485
+ #
19486
+ # @!attribute [rw] last_modified_region
19487
+ # The Amazon Web Services Region where this resource was last
19488
+ # modified.
19489
+ # @return [String]
19490
+ #
19491
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListChildHoursOfOperationsResponse AWS API Documentation
19492
+ #
19493
+ class ListChildHoursOfOperationsResponse < Struct.new(
19494
+ :next_token,
19495
+ :child_hours_of_operations_summary_list,
19496
+ :last_modified_time,
19497
+ :last_modified_region)
19498
+ SENSITIVE = []
19499
+ include Aws::Structure
19500
+ end
19501
+
19268
19502
  # A leaf node condition which can be used to specify a List condition to
19269
19503
  # search users with attributes included in Lists like Proficiencies.
19270
19504
  #
@@ -23077,6 +23311,37 @@ module Aws::Connect
23077
23311
  include Aws::Structure
23078
23312
  end
23079
23313
 
23314
+ # Information about hours of operation override
23315
+ #
23316
+ # @!attribute [rw] start
23317
+ # The start time or end time for an hours of operation override.
23318
+ # @return [Types::OverrideTimeSlice]
23319
+ #
23320
+ # @!attribute [rw] end
23321
+ # The start time or end time for an hours of operation override.
23322
+ # @return [Types::OverrideTimeSlice]
23323
+ #
23324
+ # @!attribute [rw] override_name
23325
+ # Unique identifier name for the override.
23326
+ # @return [String]
23327
+ #
23328
+ # @!attribute [rw] operational_status
23329
+ # Indicates whether the status is open or closed during the override
23330
+ # period. This status determines how the override modifies the base
23331
+ # hours of operation schedule.
23332
+ # @return [String]
23333
+ #
23334
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/OverrideHour AWS API Documentation
23335
+ #
23336
+ class OverrideHour < Struct.new(
23337
+ :start,
23338
+ :end,
23339
+ :override_name,
23340
+ :operational_status)
23341
+ SENSITIVE = []
23342
+ include Aws::Structure
23343
+ end
23344
+
23080
23345
  # The start time or end time for an hours of operation override.
23081
23346
  #
23082
23347
  # @!attribute [rw] hours
@@ -23220,6 +23485,20 @@ module Aws::Connect
23220
23485
  include Aws::Structure
23221
23486
  end
23222
23487
 
23488
+ # Contains configuration for the parent hours of operation.
23489
+ #
23490
+ # @!attribute [rw] hours_of_operation_id
23491
+ # The identifier for the hours of operation.
23492
+ # @return [String]
23493
+ #
23494
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ParentHoursOfOperationConfig AWS API Documentation
23495
+ #
23496
+ class ParentHoursOfOperationConfig < Struct.new(
23497
+ :hours_of_operation_id)
23498
+ SENSITIVE = []
23499
+ include Aws::Structure
23500
+ end
23501
+
23223
23502
  # The configuration for the allowed video and screen sharing
23224
23503
  # capabilities for participants present over the call. For more
23225
23504
  # information, see [Set up in-app, web, video calling, and screen
@@ -25236,6 +25515,91 @@ module Aws::Connect
25236
25515
  include Aws::Structure
25237
25516
  end
25238
25517
 
25518
+ # Defines the recurrence configuration for overrides. This configuration
25519
+ # uses a recurrence pattern to specify when and how frequently an event
25520
+ # should repeat.
25521
+ #
25522
+ # @!attribute [rw] recurrence_pattern
25523
+ # The recurrence pattern that defines how the event repeats. Example:
25524
+ # Frequency, Interval, ByMonth, ByMonthDay, ByWeekdayOccurrence
25525
+ # @return [Types::RecurrencePattern]
25526
+ #
25527
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RecurrenceConfig AWS API Documentation
25528
+ #
25529
+ class RecurrenceConfig < Struct.new(
25530
+ :recurrence_pattern)
25531
+ SENSITIVE = []
25532
+ include Aws::Structure
25533
+ end
25534
+
25535
+ # Specifies the detailed pattern for event recurrence. Use this to
25536
+ # define complex scheduling rules such as "every 2nd Tuesday of the
25537
+ # month" or "every 3 months on the 15th".
25538
+ #
25539
+ # @!attribute [rw] frequency
25540
+ # Defines how often the pattern repeats. This is the base unit for the
25541
+ # recurrence schedule and works in conjunction with the Interval field
25542
+ # to determine the exact repetition sequence.
25543
+ # @return [String]
25544
+ #
25545
+ # @!attribute [rw] interval
25546
+ # Specifies the number of frequency units between each occurrence.
25547
+ # Must be a positive integer.
25548
+ #
25549
+ # Examples: To repeat every week, set Interval=1 with WEEKLY
25550
+ # frequency. To repeat every two months, set Interval=2 with MONTHLY
25551
+ # frequency.
25552
+ # @return [Integer]
25553
+ #
25554
+ # @!attribute [rw] by_month
25555
+ # Specifies which month the event should occur in (1-12, where
25556
+ # 1=January, 12=December). Used with YEARLY frequency to schedule
25557
+ # events in specific month.
25558
+ #
25559
+ # Note: It does not accept multiple values in the same list
25560
+ # @return [Array<Integer>]
25561
+ #
25562
+ # @!attribute [rw] by_month_day
25563
+ # Specifies which day of the month the event should occur on (1-31).
25564
+ # Used with MONTHLY or YEARLY frequency to schedule events on specific
25565
+ # date within a month.
25566
+ #
25567
+ # Examples: \[15\] for events on the 15th of each month, \[-1\] for
25568
+ # events on the last day of month.
25569
+ #
25570
+ # Note: It does not accept multiple values in the same list. If a
25571
+ # specified day doesn't exist in a particular month (e.g., day 31 in
25572
+ # February), the event will be skipped for that month. This field
25573
+ # cannot be used simultaneously with ByWeekdayOccurrence as they
25574
+ # represent different scheduling approaches (specific dates vs.
25575
+ # relative weekday positions).
25576
+ # @return [Array<Integer>]
25577
+ #
25578
+ # @!attribute [rw] by_weekday_occurrence
25579
+ # Specifies which occurrence of a weekday within the month the event
25580
+ # should occur on. Must be used with MONTHLY or YEARLY frequency.
25581
+ #
25582
+ # Example: 2 corresponds to second occurrence of the weekday in the
25583
+ # month. -1 corresponds to last occurrence of the weekday in the month
25584
+ #
25585
+ # The weekday itself is specified separately in the
25586
+ # HoursOfOperationConfig. Example: To schedule the recurring event for
25587
+ # the 2nd Thursday of April every year, set ByWeekdayOccurrence=\[2\],
25588
+ # Day=THURSDAY, ByMonth=\[4\], Frequency: YEARLY and INTERVAL=1.
25589
+ # @return [Array<Integer>]
25590
+ #
25591
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RecurrencePattern AWS API Documentation
25592
+ #
25593
+ class RecurrencePattern < Struct.new(
25594
+ :frequency,
25595
+ :interval,
25596
+ :by_month,
25597
+ :by_month_day,
25598
+ :by_weekday_occurrence)
25599
+ SENSITIVE = []
25600
+ include Aws::Structure
25601
+ end
25602
+
25239
25603
  # Well-formed data on a contact, used by agents to complete a contact
25240
25604
  # request. You can have up to 4,096 UTF-8 bytes across all references
25241
25605
  # for a contact.
@@ -32483,6 +32847,23 @@ module Aws::Connect
32483
32847
  # The date until the hours of operation override is effective.
32484
32848
  # @return [String]
32485
32849
  #
32850
+ # @!attribute [rw] recurrence_config
32851
+ # Configuration for a recurring event.
32852
+ # @return [Types::RecurrenceConfig]
32853
+ #
32854
+ # @!attribute [rw] override_type
32855
+ # Whether the override will be defined as a *standard* or as a
32856
+ # *recurring event*.
32857
+ #
32858
+ # For more information about how override types are applied, see
32859
+ # [Build your list of overrides][1] in the <i> Administrator
32860
+ # Guide</i>.
32861
+ #
32862
+ #
32863
+ #
32864
+ # [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html
32865
+ # @return [String]
32866
+ #
32486
32867
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateHoursOfOperationOverrideRequest AWS API Documentation
32487
32868
  #
32488
32869
  class UpdateHoursOfOperationOverrideRequest < Struct.new(
@@ -32493,7 +32874,9 @@ module Aws::Connect
32493
32874
  :description,
32494
32875
  :config,
32495
32876
  :effective_from,
32496
- :effective_till)
32877
+ :effective_till,
32878
+ :recurrence_config,
32879
+ :override_type)
32497
32880
  SENSITIVE = []
32498
32881
  include Aws::Structure
32499
32882
  end
@@ -54,7 +54,7 @@ module Aws::Connect
54
54
  autoload :EndpointProvider, 'aws-sdk-connect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connect/endpoints'
56
56
 
57
- GEM_VERSION = '1.233.0'
57
+ GEM_VERSION = '1.235.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -177,6 +177,18 @@ module Aws
177
177
  ) -> _AssociateFlowResponseSuccess
178
178
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateFlowResponseSuccess
179
179
 
180
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#associate_hours_of_operations-instance_method
181
+ def associate_hours_of_operations: (
182
+ instance_id: ::String,
183
+ hours_of_operation_id: ::String,
184
+ parent_hours_of_operation_configs: Array[
185
+ {
186
+ hours_of_operation_id: ::String?
187
+ },
188
+ ]
189
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
190
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
191
+
180
192
  interface _AssociateInstanceStorageConfigResponseSuccess
181
193
  include ::Seahorse::Client::_ResponseSuccess[Types::AssociateInstanceStorageConfigResponse]
182
194
  def association_id: () -> ::String
@@ -964,6 +976,11 @@ module Aws
964
976
  }
965
977
  },
966
978
  ],
979
+ ?parent_hours_of_operation_configs: Array[
980
+ {
981
+ hours_of_operation_id: ::String?
982
+ },
983
+ ],
967
984
  ?tags: Hash[::String, ::String]
968
985
  ) -> _CreateHoursOfOperationResponseSuccess
969
986
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHoursOfOperationResponseSuccess
@@ -992,7 +1009,17 @@ module Aws
992
1009
  },
993
1010
  ],
994
1011
  effective_from: ::String,
995
- effective_till: ::String
1012
+ effective_till: ::String,
1013
+ ?recurrence_config: {
1014
+ recurrence_pattern: {
1015
+ frequency: ("WEEKLY" | "MONTHLY" | "YEARLY"),
1016
+ interval: ::Integer,
1017
+ by_month: Array[::Integer]?,
1018
+ by_month_day: Array[::Integer]?,
1019
+ by_weekday_occurrence: Array[::Integer]?
1020
+ }
1021
+ },
1022
+ ?override_type: ("STANDARD" | "OPEN" | "CLOSED")
996
1023
  ) -> _CreateHoursOfOperationOverrideResponseSuccess
997
1024
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHoursOfOperationOverrideResponseSuccess
998
1025
 
@@ -2387,6 +2414,14 @@ module Aws
2387
2414
  ) -> _DisassociateFlowResponseSuccess
2388
2415
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateFlowResponseSuccess
2389
2416
 
2417
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#disassociate_hours_of_operations-instance_method
2418
+ def disassociate_hours_of_operations: (
2419
+ instance_id: ::String,
2420
+ hours_of_operation_id: ::String,
2421
+ parent_hours_of_operation_ids: Array[::String]
2422
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2423
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2424
+
2390
2425
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#disassociate_instance_storage_config-instance_method
2391
2426
  def disassociate_instance_storage_config: (
2392
2427
  instance_id: ::String,
@@ -2658,6 +2693,7 @@ module Aws
2658
2693
  interface _GetEffectiveHoursOfOperationsResponseSuccess
2659
2694
  include ::Seahorse::Client::_ResponseSuccess[Types::GetEffectiveHoursOfOperationsResponse]
2660
2695
  def effective_hours_of_operation_list: () -> ::Array[Types::EffectiveHoursOfOperations]
2696
+ def effective_override_hours_list: () -> ::Array[Types::EffectiveOverrideHours]
2661
2697
  def time_zone: () -> ::String
2662
2698
  end
2663
2699
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#get_effective_hours_of_operations-instance_method
@@ -2954,6 +2990,22 @@ module Aws
2954
2990
  ) -> _ListBotsResponseSuccess
2955
2991
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBotsResponseSuccess
2956
2992
 
2993
+ interface _ListChildHoursOfOperationsResponseSuccess
2994
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListChildHoursOfOperationsResponse]
2995
+ def next_token: () -> ::String
2996
+ def child_hours_of_operations_summary_list: () -> ::Array[Types::HoursOfOperationsIdentifier]
2997
+ def last_modified_time: () -> ::Time
2998
+ def last_modified_region: () -> ::String
2999
+ end
3000
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_child_hours_of_operations-instance_method
3001
+ def list_child_hours_of_operations: (
3002
+ instance_id: ::String,
3003
+ hours_of_operation_id: ::String,
3004
+ ?next_token: ::String,
3005
+ ?max_results: ::Integer
3006
+ ) -> _ListChildHoursOfOperationsResponseSuccess
3007
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListChildHoursOfOperationsResponseSuccess
3008
+
2957
3009
  interface _ListContactEvaluationsResponseSuccess
2958
3010
  include ::Seahorse::Client::_ResponseSuccess[Types::ListContactEvaluationsResponse]
2959
3011
  def evaluation_summary_list: () -> ::Array[Types::EvaluationSummary]
@@ -6271,7 +6323,17 @@ module Aws
6271
6323
  },
6272
6324
  ],
6273
6325
  ?effective_from: ::String,
6274
- ?effective_till: ::String
6326
+ ?effective_till: ::String,
6327
+ ?recurrence_config: {
6328
+ recurrence_pattern: {
6329
+ frequency: ("WEEKLY" | "MONTHLY" | "YEARLY"),
6330
+ interval: ::Integer,
6331
+ by_month: Array[::Integer]?,
6332
+ by_month_day: Array[::Integer]?,
6333
+ by_weekday_occurrence: Array[::Integer]?
6334
+ }
6335
+ },
6336
+ ?override_type: ("STANDARD" | "OPEN" | "CLOSED")
6275
6337
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
6276
6338
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
6277
6339