aws-sdk-connect 1.188.0 → 1.190.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.
@@ -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.188.0'
57
+ GEM_VERSION = '1.190.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -602,6 +602,34 @@ module Aws
602
602
  ) -> _CreateHoursOfOperationResponseSuccess
603
603
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHoursOfOperationResponseSuccess
604
604
 
605
+ interface _CreateHoursOfOperationOverrideResponseSuccess
606
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateHoursOfOperationOverrideResponse]
607
+ def hours_of_operation_override_id: () -> ::String
608
+ end
609
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_hours_of_operation_override-instance_method
610
+ def create_hours_of_operation_override: (
611
+ instance_id: ::String,
612
+ hours_of_operation_id: ::String,
613
+ name: ::String,
614
+ ?description: ::String,
615
+ config: Array[
616
+ {
617
+ day: ("SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY")?,
618
+ start_time: {
619
+ hours: ::Integer,
620
+ minutes: ::Integer
621
+ }?,
622
+ end_time: {
623
+ hours: ::Integer,
624
+ minutes: ::Integer
625
+ }?
626
+ },
627
+ ],
628
+ effective_from: ::String,
629
+ effective_till: ::String
630
+ ) -> _CreateHoursOfOperationOverrideResponseSuccess
631
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHoursOfOperationOverrideResponseSuccess
632
+
605
633
  interface _CreateInstanceResponseSuccess
606
634
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateInstanceResponse]
607
635
  def id: () -> ::String
@@ -692,6 +720,25 @@ module Aws
692
720
  ) -> _CreatePromptResponseSuccess
693
721
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePromptResponseSuccess
694
722
 
723
+ interface _CreatePushNotificationRegistrationResponseSuccess
724
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePushNotificationRegistrationResponse]
725
+ def registration_id: () -> ::String
726
+ end
727
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_push_notification_registration-instance_method
728
+ def create_push_notification_registration: (
729
+ instance_id: ::String,
730
+ ?client_token: ::String,
731
+ pinpoint_app_arn: ::String,
732
+ device_token: ::String,
733
+ device_type: ("GCM" | "APNS" | "APNS_SANDBOX"),
734
+ contact_configuration: {
735
+ contact_id: ::String,
736
+ participant_role: ("AGENT" | "CUSTOMER" | "SYSTEM" | "CUSTOM_BOT" | "SUPERVISOR")?,
737
+ include_raw_message: bool?
738
+ }
739
+ ) -> _CreatePushNotificationRegistrationResponseSuccess
740
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePushNotificationRegistrationResponseSuccess
741
+
695
742
  interface _CreateQueueResponseSuccess
696
743
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateQueueResponse]
697
744
  def queue_arn: () -> ::String
@@ -1150,6 +1197,14 @@ module Aws
1150
1197
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1151
1198
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1152
1199
 
1200
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_hours_of_operation_override-instance_method
1201
+ def delete_hours_of_operation_override: (
1202
+ instance_id: ::String,
1203
+ hours_of_operation_id: ::String,
1204
+ hours_of_operation_override_id: ::String
1205
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1206
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1207
+
1153
1208
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_instance-instance_method
1154
1209
  def delete_instance: (
1155
1210
  instance_id: ::String
@@ -1177,6 +1232,17 @@ module Aws
1177
1232
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1178
1233
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1179
1234
 
1235
+ interface _DeletePushNotificationRegistrationResponseSuccess
1236
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePushNotificationRegistrationResponse]
1237
+ end
1238
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_push_notification_registration-instance_method
1239
+ def delete_push_notification_registration: (
1240
+ instance_id: ::String,
1241
+ registration_id: ::String,
1242
+ contact_id: ::String
1243
+ ) -> _DeletePushNotificationRegistrationResponseSuccess
1244
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePushNotificationRegistrationResponseSuccess
1245
+
1180
1246
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_queue-instance_method
1181
1247
  def delete_queue: (
1182
1248
  instance_id: ::String,
@@ -1395,6 +1461,18 @@ module Aws
1395
1461
  ) -> _DescribeHoursOfOperationResponseSuccess
1396
1462
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeHoursOfOperationResponseSuccess
1397
1463
 
1464
+ interface _DescribeHoursOfOperationOverrideResponseSuccess
1465
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeHoursOfOperationOverrideResponse]
1466
+ def hours_of_operation_override: () -> Types::HoursOfOperationOverride
1467
+ end
1468
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_hours_of_operation_override-instance_method
1469
+ def describe_hours_of_operation_override: (
1470
+ instance_id: ::String,
1471
+ hours_of_operation_id: ::String,
1472
+ hours_of_operation_override_id: ::String
1473
+ ) -> _DescribeHoursOfOperationOverrideResponseSuccess
1474
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeHoursOfOperationOverrideResponseSuccess
1475
+
1398
1476
  interface _DescribeInstanceResponseSuccess
1399
1477
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInstanceResponse]
1400
1478
  def instance: () -> Types::Instance
@@ -1803,6 +1881,20 @@ module Aws
1803
1881
  ) -> _GetCurrentUserDataResponseSuccess
1804
1882
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCurrentUserDataResponseSuccess
1805
1883
 
1884
+ interface _GetEffectiveHoursOfOperationsResponseSuccess
1885
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEffectiveHoursOfOperationsResponse]
1886
+ def effective_hours_of_operation_list: () -> ::Array[Types::EffectiveHoursOfOperations]
1887
+ def time_zone: () -> ::String
1888
+ end
1889
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#get_effective_hours_of_operations-instance_method
1890
+ def get_effective_hours_of_operations: (
1891
+ instance_id: ::String,
1892
+ hours_of_operation_id: ::String,
1893
+ from_date: ::String,
1894
+ to_date: ::String
1895
+ ) -> _GetEffectiveHoursOfOperationsResponseSuccess
1896
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEffectiveHoursOfOperationsResponseSuccess
1897
+
1806
1898
  interface _GetFederationTokenResponseSuccess
1807
1899
  include ::Seahorse::Client::_ResponseSuccess[Types::GetFederationTokenResponse]
1808
1900
  def credentials: () -> Types::Credentials
@@ -2180,6 +2272,22 @@ module Aws
2180
2272
  ) -> _ListFlowAssociationsResponseSuccess
2181
2273
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFlowAssociationsResponseSuccess
2182
2274
 
2275
+ interface _ListHoursOfOperationOverridesResponseSuccess
2276
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListHoursOfOperationOverridesResponse]
2277
+ def next_token: () -> ::String
2278
+ def hours_of_operation_override_list: () -> ::Array[Types::HoursOfOperationOverride]
2279
+ def last_modified_region: () -> ::String
2280
+ def last_modified_time: () -> ::Time
2281
+ end
2282
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_hours_of_operation_overrides-instance_method
2283
+ def list_hours_of_operation_overrides: (
2284
+ instance_id: ::String,
2285
+ hours_of_operation_id: ::String,
2286
+ ?next_token: ::String,
2287
+ ?max_results: ::Integer
2288
+ ) -> _ListHoursOfOperationOverridesResponseSuccess
2289
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHoursOfOperationOverridesResponseSuccess
2290
+
2183
2291
  interface _ListHoursOfOperationsResponseSuccess
2184
2292
  include ::Seahorse::Client::_ResponseSuccess[Types::ListHoursOfOperationsResponse]
2185
2293
  def hours_of_operation_summary_list: () -> ::Array[Types::HoursOfOperationSummary]
@@ -2825,7 +2933,9 @@ module Aws
2825
2933
  field_name: ::String?,
2826
2934
  value: ::String?,
2827
2935
  comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
2828
- }?
2936
+ }?,
2937
+ state_condition: ("ACTIVE" | "ARCHIVED")?,
2938
+ status_condition: ("PUBLISHED" | "SAVED")?
2829
2939
  }
2830
2940
  ) -> _SearchContactFlowModulesResponseSuccess
2831
2941
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchContactFlowModulesResponseSuccess
@@ -2997,6 +3107,60 @@ module Aws
2997
3107
  ) -> _SearchEmailAddressesResponseSuccess
2998
3108
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchEmailAddressesResponseSuccess
2999
3109
 
3110
+ interface _SearchHoursOfOperationOverridesResponseSuccess
3111
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchHoursOfOperationOverridesResponse]
3112
+ def hours_of_operation_overrides: () -> ::Array[Types::HoursOfOperationOverride]
3113
+ def next_token: () -> ::String
3114
+ def approximate_total_count: () -> ::Integer
3115
+ end
3116
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#search_hours_of_operation_overrides-instance_method
3117
+ def search_hours_of_operation_overrides: (
3118
+ instance_id: ::String,
3119
+ ?next_token: ::String,
3120
+ ?max_results: ::Integer,
3121
+ ?search_filter: {
3122
+ tag_filter: {
3123
+ or_conditions: Array[
3124
+ Array[
3125
+ {
3126
+ tag_key: ::String?,
3127
+ tag_value: ::String?
3128
+ },
3129
+ ],
3130
+ ]?,
3131
+ and_conditions: Array[
3132
+ {
3133
+ tag_key: ::String?,
3134
+ tag_value: ::String?
3135
+ },
3136
+ ]?,
3137
+ tag_condition: {
3138
+ tag_key: ::String?,
3139
+ tag_value: ::String?
3140
+ }?
3141
+ }?
3142
+ },
3143
+ ?search_criteria: {
3144
+ or_conditions: Array[
3145
+ untyped,
3146
+ ]?,
3147
+ and_conditions: Array[
3148
+ untyped,
3149
+ ]?,
3150
+ string_condition: {
3151
+ field_name: ::String?,
3152
+ value: ::String?,
3153
+ comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
3154
+ }?,
3155
+ date_condition: {
3156
+ field_name: ::String?,
3157
+ value: ::String?,
3158
+ comparison_type: ("GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL_TO" | "LESS_THAN_OR_EQUAL_TO" | "EQUAL_TO")?
3159
+ }?
3160
+ }
3161
+ ) -> _SearchHoursOfOperationOverridesResponseSuccess
3162
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchHoursOfOperationOverridesResponseSuccess
3163
+
3000
3164
  interface _SearchHoursOfOperationsResponseSuccess
3001
3165
  include ::Seahorse::Client::_ResponseSuccess[Types::SearchHoursOfOperationsResponse]
3002
3166
  def hours_of_operations: () -> ::Array[Types::HoursOfOperation]
@@ -4401,6 +4565,31 @@ module Aws
4401
4565
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
4402
4566
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
4403
4567
 
4568
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_hours_of_operation_override-instance_method
4569
+ def update_hours_of_operation_override: (
4570
+ instance_id: ::String,
4571
+ hours_of_operation_id: ::String,
4572
+ hours_of_operation_override_id: ::String,
4573
+ ?name: ::String,
4574
+ ?description: ::String,
4575
+ ?config: Array[
4576
+ {
4577
+ day: ("SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY")?,
4578
+ start_time: {
4579
+ hours: ::Integer,
4580
+ minutes: ::Integer
4581
+ }?,
4582
+ end_time: {
4583
+ hours: ::Integer,
4584
+ minutes: ::Integer
4585
+ }?
4586
+ },
4587
+ ],
4588
+ ?effective_from: ::String,
4589
+ ?effective_till: ::String
4590
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
4591
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
4592
+
4404
4593
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_instance_attribute-instance_method
4405
4594
  def update_instance_attribute: (
4406
4595
  instance_id: ::String,
data/sig/types.rbs CHANGED
@@ -600,6 +600,13 @@ module Aws::Connect
600
600
  SENSITIVE: []
601
601
  end
602
602
 
603
+ class ContactConfiguration
604
+ attr_accessor contact_id: ::String
605
+ attr_accessor participant_role: ("AGENT" | "CUSTOMER" | "SYSTEM" | "CUSTOM_BOT" | "SUPERVISOR")
606
+ attr_accessor include_raw_message: bool
607
+ SENSITIVE: []
608
+ end
609
+
603
610
  class ContactDataRequest
604
611
  attr_accessor system_endpoint: Types::Endpoint
605
612
  attr_accessor customer_endpoint: Types::Endpoint
@@ -649,6 +656,8 @@ module Aws::Connect
649
656
  attr_accessor or_conditions: ::Array[Types::ContactFlowModuleSearchCriteria]
650
657
  attr_accessor and_conditions: ::Array[Types::ContactFlowModuleSearchCriteria]
651
658
  attr_accessor string_condition: Types::StringCondition
659
+ attr_accessor state_condition: ("ACTIVE" | "ARCHIVED")
660
+ attr_accessor status_condition: ("PUBLISHED" | "SAVED")
652
661
  SENSITIVE: []
653
662
  end
654
663
 
@@ -889,6 +898,22 @@ module Aws::Connect
889
898
  SENSITIVE: []
890
899
  end
891
900
 
901
+ class CreateHoursOfOperationOverrideRequest
902
+ attr_accessor instance_id: ::String
903
+ attr_accessor hours_of_operation_id: ::String
904
+ attr_accessor name: ::String
905
+ attr_accessor description: ::String
906
+ attr_accessor config: ::Array[Types::HoursOfOperationOverrideConfig]
907
+ attr_accessor effective_from: ::String
908
+ attr_accessor effective_till: ::String
909
+ SENSITIVE: []
910
+ end
911
+
912
+ class CreateHoursOfOperationOverrideResponse
913
+ attr_accessor hours_of_operation_override_id: ::String
914
+ SENSITIVE: []
915
+ end
916
+
892
917
  class CreateHoursOfOperationRequest
893
918
  attr_accessor instance_id: ::String
894
919
  attr_accessor name: ::String
@@ -989,6 +1014,21 @@ module Aws::Connect
989
1014
  SENSITIVE: []
990
1015
  end
991
1016
 
1017
+ class CreatePushNotificationRegistrationRequest
1018
+ attr_accessor instance_id: ::String
1019
+ attr_accessor client_token: ::String
1020
+ attr_accessor pinpoint_app_arn: ::String
1021
+ attr_accessor device_token: ::String
1022
+ attr_accessor device_type: ("GCM" | "APNS" | "APNS_SANDBOX")
1023
+ attr_accessor contact_configuration: Types::ContactConfiguration
1024
+ SENSITIVE: []
1025
+ end
1026
+
1027
+ class CreatePushNotificationRegistrationResponse
1028
+ attr_accessor registration_id: ::String
1029
+ SENSITIVE: []
1030
+ end
1031
+
992
1032
  class CreateQueueRequest
993
1033
  attr_accessor instance_id: ::String
994
1034
  attr_accessor name: ::String
@@ -1275,6 +1315,13 @@ module Aws::Connect
1275
1315
  SENSITIVE: []
1276
1316
  end
1277
1317
 
1318
+ class DateCondition
1319
+ attr_accessor field_name: ::String
1320
+ attr_accessor value: ::String
1321
+ attr_accessor comparison_type: ("GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL_TO" | "LESS_THAN_OR_EQUAL_TO" | "EQUAL_TO")
1322
+ SENSITIVE: []
1323
+ end
1324
+
1278
1325
  class DateReference
1279
1326
  attr_accessor name: ::String
1280
1327
  attr_accessor value: ::String
@@ -1353,6 +1400,13 @@ module Aws::Connect
1353
1400
  SENSITIVE: []
1354
1401
  end
1355
1402
 
1403
+ class DeleteHoursOfOperationOverrideRequest
1404
+ attr_accessor instance_id: ::String
1405
+ attr_accessor hours_of_operation_id: ::String
1406
+ attr_accessor hours_of_operation_override_id: ::String
1407
+ SENSITIVE: []
1408
+ end
1409
+
1356
1410
  class DeleteHoursOfOperationRequest
1357
1411
  attr_accessor instance_id: ::String
1358
1412
  attr_accessor hours_of_operation_id: ::String
@@ -1382,6 +1436,16 @@ module Aws::Connect
1382
1436
  SENSITIVE: []
1383
1437
  end
1384
1438
 
1439
+ class DeletePushNotificationRegistrationRequest
1440
+ attr_accessor instance_id: ::String
1441
+ attr_accessor registration_id: ::String
1442
+ attr_accessor contact_id: ::String
1443
+ SENSITIVE: []
1444
+ end
1445
+
1446
+ class DeletePushNotificationRegistrationResponse < Aws::EmptyStructure
1447
+ end
1448
+
1385
1449
  class DeleteQueueRequest
1386
1450
  attr_accessor instance_id: ::String
1387
1451
  attr_accessor queue_id: ::String
@@ -1577,6 +1641,18 @@ module Aws::Connect
1577
1641
  SENSITIVE: []
1578
1642
  end
1579
1643
 
1644
+ class DescribeHoursOfOperationOverrideRequest
1645
+ attr_accessor instance_id: ::String
1646
+ attr_accessor hours_of_operation_id: ::String
1647
+ attr_accessor hours_of_operation_override_id: ::String
1648
+ SENSITIVE: []
1649
+ end
1650
+
1651
+ class DescribeHoursOfOperationOverrideResponse
1652
+ attr_accessor hours_of_operation_override: Types::HoursOfOperationOverride
1653
+ SENSITIVE: []
1654
+ end
1655
+
1580
1656
  class DescribeHoursOfOperationRequest
1581
1657
  attr_accessor instance_id: ::String
1582
1658
  attr_accessor hours_of_operation_id: ::String
@@ -1923,6 +1999,12 @@ module Aws::Connect
1923
1999
  SENSITIVE: []
1924
2000
  end
1925
2001
 
2002
+ class EffectiveHoursOfOperations
2003
+ attr_accessor date: ::String
2004
+ attr_accessor operational_hours: ::Array[Types::OperationalHour]
2005
+ SENSITIVE: []
2006
+ end
2007
+
1926
2008
  class EmailAddressInfo
1927
2009
  attr_accessor email_address: ::String
1928
2010
  attr_accessor display_name: ::String
@@ -2378,6 +2460,20 @@ module Aws::Connect
2378
2460
  SENSITIVE: []
2379
2461
  end
2380
2462
 
2463
+ class GetEffectiveHoursOfOperationsRequest
2464
+ attr_accessor instance_id: ::String
2465
+ attr_accessor hours_of_operation_id: ::String
2466
+ attr_accessor from_date: ::String
2467
+ attr_accessor to_date: ::String
2468
+ SENSITIVE: []
2469
+ end
2470
+
2471
+ class GetEffectiveHoursOfOperationsResponse
2472
+ attr_accessor effective_hours_of_operation_list: ::Array[Types::EffectiveHoursOfOperations]
2473
+ attr_accessor time_zone: ::String
2474
+ SENSITIVE: []
2475
+ end
2476
+
2381
2477
  class GetFederationTokenRequest
2382
2478
  attr_accessor instance_id: ::String
2383
2479
  SENSITIVE: []
@@ -2626,6 +2722,33 @@ module Aws::Connect
2626
2722
  SENSITIVE: []
2627
2723
  end
2628
2724
 
2725
+ class HoursOfOperationOverride
2726
+ attr_accessor hours_of_operation_override_id: ::String
2727
+ attr_accessor hours_of_operation_id: ::String
2728
+ attr_accessor hours_of_operation_arn: ::String
2729
+ attr_accessor name: ::String
2730
+ attr_accessor description: ::String
2731
+ attr_accessor config: ::Array[Types::HoursOfOperationOverrideConfig]
2732
+ attr_accessor effective_from: ::String
2733
+ attr_accessor effective_till: ::String
2734
+ SENSITIVE: []
2735
+ end
2736
+
2737
+ class HoursOfOperationOverrideConfig
2738
+ attr_accessor day: ("SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY")
2739
+ attr_accessor start_time: Types::OverrideTimeSlice
2740
+ attr_accessor end_time: Types::OverrideTimeSlice
2741
+ SENSITIVE: []
2742
+ end
2743
+
2744
+ class HoursOfOperationOverrideSearchCriteria
2745
+ attr_accessor or_conditions: ::Array[Types::HoursOfOperationOverrideSearchCriteria]
2746
+ attr_accessor and_conditions: ::Array[Types::HoursOfOperationOverrideSearchCriteria]
2747
+ attr_accessor string_condition: Types::StringCondition
2748
+ attr_accessor date_condition: Types::DateCondition
2749
+ SENSITIVE: []
2750
+ end
2751
+
2629
2752
  class HoursOfOperationSearchCriteria
2630
2753
  attr_accessor or_conditions: ::Array[Types::HoursOfOperationSearchCriteria]
2631
2754
  attr_accessor and_conditions: ::Array[Types::HoursOfOperationSearchCriteria]
@@ -3049,6 +3172,22 @@ module Aws::Connect
3049
3172
  SENSITIVE: []
3050
3173
  end
3051
3174
 
3175
+ class ListHoursOfOperationOverridesRequest
3176
+ attr_accessor instance_id: ::String
3177
+ attr_accessor hours_of_operation_id: ::String
3178
+ attr_accessor next_token: ::String
3179
+ attr_accessor max_results: ::Integer
3180
+ SENSITIVE: []
3181
+ end
3182
+
3183
+ class ListHoursOfOperationOverridesResponse
3184
+ attr_accessor next_token: ::String
3185
+ attr_accessor hours_of_operation_override_list: ::Array[Types::HoursOfOperationOverride]
3186
+ attr_accessor last_modified_region: ::String
3187
+ attr_accessor last_modified_time: ::Time
3188
+ SENSITIVE: []
3189
+ end
3190
+
3052
3191
  class ListHoursOfOperationsRequest
3053
3192
  attr_accessor instance_id: ::String
3054
3193
  attr_accessor next_token: ::String
@@ -3633,6 +3772,12 @@ module Aws::Connect
3633
3772
  SENSITIVE: []
3634
3773
  end
3635
3774
 
3775
+ class OperationalHour
3776
+ attr_accessor start: Types::OverrideTimeSlice
3777
+ attr_accessor end: Types::OverrideTimeSlice
3778
+ SENSITIVE: []
3779
+ end
3780
+
3636
3781
  class OutboundAdditionalRecipients
3637
3782
  attr_accessor cc_email_addresses: ::Array[Types::EmailAddressInfo]
3638
3783
  SENSITIVE: []
@@ -3674,6 +3819,12 @@ module Aws::Connect
3674
3819
  SENSITIVE: []
3675
3820
  end
3676
3821
 
3822
+ class OverrideTimeSlice
3823
+ attr_accessor hours: ::Integer
3824
+ attr_accessor minutes: ::Integer
3825
+ SENSITIVE: []
3826
+ end
3827
+
3677
3828
  class ParticipantCapabilities
3678
3829
  attr_accessor video: ("SEND")
3679
3830
  attr_accessor screen_share: ("SEND")
@@ -4483,6 +4634,22 @@ module Aws::Connect
4483
4634
  SENSITIVE: []
4484
4635
  end
4485
4636
 
4637
+ class SearchHoursOfOperationOverridesRequest
4638
+ attr_accessor instance_id: ::String
4639
+ attr_accessor next_token: ::String
4640
+ attr_accessor max_results: ::Integer
4641
+ attr_accessor search_filter: Types::HoursOfOperationSearchFilter
4642
+ attr_accessor search_criteria: Types::HoursOfOperationOverrideSearchCriteria
4643
+ SENSITIVE: []
4644
+ end
4645
+
4646
+ class SearchHoursOfOperationOverridesResponse
4647
+ attr_accessor hours_of_operation_overrides: ::Array[Types::HoursOfOperationOverride]
4648
+ attr_accessor next_token: ::String
4649
+ attr_accessor approximate_total_count: ::Integer
4650
+ SENSITIVE: []
4651
+ end
4652
+
4486
4653
  class SearchHoursOfOperationsRequest
4487
4654
  attr_accessor instance_id: ::String
4488
4655
  attr_accessor next_token: ::String
@@ -5513,6 +5680,18 @@ module Aws::Connect
5513
5680
  SENSITIVE: []
5514
5681
  end
5515
5682
 
5683
+ class UpdateHoursOfOperationOverrideRequest
5684
+ attr_accessor instance_id: ::String
5685
+ attr_accessor hours_of_operation_id: ::String
5686
+ attr_accessor hours_of_operation_override_id: ::String
5687
+ attr_accessor name: ::String
5688
+ attr_accessor description: ::String
5689
+ attr_accessor config: ::Array[Types::HoursOfOperationOverrideConfig]
5690
+ attr_accessor effective_from: ::String
5691
+ attr_accessor effective_till: ::String
5692
+ SENSITIVE: []
5693
+ end
5694
+
5516
5695
  class UpdateHoursOfOperationRequest
5517
5696
  attr_accessor instance_id: ::String
5518
5697
  attr_accessor hours_of_operation_id: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.188.0
4
+ version: 1.190.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-02 00:00:00.000000000 Z
11
+ date: 2024-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core