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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -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 +3 -3
data/sig/types.rbs
CHANGED
|
@@ -276,6 +276,13 @@ module Aws::Connect
|
|
|
276
276
|
class AssociateFlowResponse < Aws::EmptyStructure
|
|
277
277
|
end
|
|
278
278
|
|
|
279
|
+
class AssociateHoursOfOperationsRequest
|
|
280
|
+
attr_accessor instance_id: ::String
|
|
281
|
+
attr_accessor hours_of_operation_id: ::String
|
|
282
|
+
attr_accessor parent_hours_of_operation_configs: ::Array[Types::ParentHoursOfOperationConfig]
|
|
283
|
+
SENSITIVE: []
|
|
284
|
+
end
|
|
285
|
+
|
|
279
286
|
class AssociateInstanceStorageConfigRequest
|
|
280
287
|
attr_accessor instance_id: ::String
|
|
281
288
|
attr_accessor resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS" | "EMAIL_MESSAGES")
|
|
@@ -1350,6 +1357,8 @@ module Aws::Connect
|
|
|
1350
1357
|
attr_accessor config: ::Array[Types::HoursOfOperationOverrideConfig]
|
|
1351
1358
|
attr_accessor effective_from: ::String
|
|
1352
1359
|
attr_accessor effective_till: ::String
|
|
1360
|
+
attr_accessor recurrence_config: Types::RecurrenceConfig
|
|
1361
|
+
attr_accessor override_type: ("STANDARD" | "OPEN" | "CLOSED")
|
|
1353
1362
|
SENSITIVE: []
|
|
1354
1363
|
end
|
|
1355
1364
|
|
|
@@ -1364,6 +1373,7 @@ module Aws::Connect
|
|
|
1364
1373
|
attr_accessor description: ::String
|
|
1365
1374
|
attr_accessor time_zone: ::String
|
|
1366
1375
|
attr_accessor config: ::Array[Types::HoursOfOperationConfig]
|
|
1376
|
+
attr_accessor parent_hours_of_operation_configs: ::Array[Types::ParentHoursOfOperationConfig]
|
|
1367
1377
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1368
1378
|
SENSITIVE: []
|
|
1369
1379
|
end
|
|
@@ -2659,6 +2669,13 @@ module Aws::Connect
|
|
|
2659
2669
|
class DisassociateFlowResponse < Aws::EmptyStructure
|
|
2660
2670
|
end
|
|
2661
2671
|
|
|
2672
|
+
class DisassociateHoursOfOperationsRequest
|
|
2673
|
+
attr_accessor instance_id: ::String
|
|
2674
|
+
attr_accessor hours_of_operation_id: ::String
|
|
2675
|
+
attr_accessor parent_hours_of_operation_ids: ::Array[::String]
|
|
2676
|
+
SENSITIVE: []
|
|
2677
|
+
end
|
|
2678
|
+
|
|
2662
2679
|
class DisassociateInstanceStorageConfigRequest
|
|
2663
2680
|
attr_accessor instance_id: ::String
|
|
2664
2681
|
attr_accessor association_id: ::String
|
|
@@ -2791,6 +2808,12 @@ module Aws::Connect
|
|
|
2791
2808
|
SENSITIVE: []
|
|
2792
2809
|
end
|
|
2793
2810
|
|
|
2811
|
+
class EffectiveOverrideHours
|
|
2812
|
+
attr_accessor date: ::String
|
|
2813
|
+
attr_accessor override_hours: ::Array[Types::OverrideHour]
|
|
2814
|
+
SENSITIVE: []
|
|
2815
|
+
end
|
|
2816
|
+
|
|
2794
2817
|
class EmailAddressInfo
|
|
2795
2818
|
attr_accessor email_address: ::String
|
|
2796
2819
|
attr_accessor display_name: ::String
|
|
@@ -3646,6 +3669,7 @@ module Aws::Connect
|
|
|
3646
3669
|
|
|
3647
3670
|
class GetEffectiveHoursOfOperationsResponse
|
|
3648
3671
|
attr_accessor effective_hours_of_operation_list: ::Array[Types::EffectiveHoursOfOperations]
|
|
3672
|
+
attr_accessor effective_override_hours_list: ::Array[Types::EffectiveOverrideHours]
|
|
3649
3673
|
attr_accessor time_zone: ::String
|
|
3650
3674
|
SENSITIVE: []
|
|
3651
3675
|
end
|
|
@@ -3897,6 +3921,7 @@ module Aws::Connect
|
|
|
3897
3921
|
attr_accessor description: ::String
|
|
3898
3922
|
attr_accessor time_zone: ::String
|
|
3899
3923
|
attr_accessor config: ::Array[Types::HoursOfOperationConfig]
|
|
3924
|
+
attr_accessor parent_hours_of_operations: ::Array[Types::HoursOfOperationsIdentifier]
|
|
3900
3925
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
3901
3926
|
attr_accessor last_modified_time: ::Time
|
|
3902
3927
|
attr_accessor last_modified_region: ::String
|
|
@@ -3919,6 +3944,8 @@ module Aws::Connect
|
|
|
3919
3944
|
attr_accessor config: ::Array[Types::HoursOfOperationOverrideConfig]
|
|
3920
3945
|
attr_accessor effective_from: ::String
|
|
3921
3946
|
attr_accessor effective_till: ::String
|
|
3947
|
+
attr_accessor recurrence_config: Types::RecurrenceConfig
|
|
3948
|
+
attr_accessor override_type: ("STANDARD" | "OPEN" | "CLOSED")
|
|
3922
3949
|
SENSITIVE: []
|
|
3923
3950
|
end
|
|
3924
3951
|
|
|
@@ -3964,6 +3991,13 @@ module Aws::Connect
|
|
|
3964
3991
|
SENSITIVE: []
|
|
3965
3992
|
end
|
|
3966
3993
|
|
|
3994
|
+
class HoursOfOperationsIdentifier
|
|
3995
|
+
attr_accessor name: ::String
|
|
3996
|
+
attr_accessor id: ::String
|
|
3997
|
+
attr_accessor arn: ::String
|
|
3998
|
+
SENSITIVE: []
|
|
3999
|
+
end
|
|
4000
|
+
|
|
3967
4001
|
class IdempotencyException
|
|
3968
4002
|
attr_accessor message: ::String
|
|
3969
4003
|
SENSITIVE: []
|
|
@@ -4270,6 +4304,22 @@ module Aws::Connect
|
|
|
4270
4304
|
SENSITIVE: []
|
|
4271
4305
|
end
|
|
4272
4306
|
|
|
4307
|
+
class ListChildHoursOfOperationsRequest
|
|
4308
|
+
attr_accessor instance_id: ::String
|
|
4309
|
+
attr_accessor hours_of_operation_id: ::String
|
|
4310
|
+
attr_accessor next_token: ::String
|
|
4311
|
+
attr_accessor max_results: ::Integer
|
|
4312
|
+
SENSITIVE: []
|
|
4313
|
+
end
|
|
4314
|
+
|
|
4315
|
+
class ListChildHoursOfOperationsResponse
|
|
4316
|
+
attr_accessor next_token: ::String
|
|
4317
|
+
attr_accessor child_hours_of_operations_summary_list: ::Array[Types::HoursOfOperationsIdentifier]
|
|
4318
|
+
attr_accessor last_modified_time: ::Time
|
|
4319
|
+
attr_accessor last_modified_region: ::String
|
|
4320
|
+
SENSITIVE: []
|
|
4321
|
+
end
|
|
4322
|
+
|
|
4273
4323
|
class ListCondition
|
|
4274
4324
|
attr_accessor target_list_type: ("PROFICIENCIES")
|
|
4275
4325
|
attr_accessor conditions: ::Array[Types::Condition]
|
|
@@ -5268,6 +5318,14 @@ module Aws::Connect
|
|
|
5268
5318
|
SENSITIVE: []
|
|
5269
5319
|
end
|
|
5270
5320
|
|
|
5321
|
+
class OverrideHour
|
|
5322
|
+
attr_accessor start: Types::OverrideTimeSlice
|
|
5323
|
+
attr_accessor end: Types::OverrideTimeSlice
|
|
5324
|
+
attr_accessor override_name: ::String
|
|
5325
|
+
attr_accessor operational_status: ("OPEN" | "CLOSED")
|
|
5326
|
+
SENSITIVE: []
|
|
5327
|
+
end
|
|
5328
|
+
|
|
5271
5329
|
class OverrideTimeSlice
|
|
5272
5330
|
attr_accessor hours: ::Integer
|
|
5273
5331
|
attr_accessor minutes: ::Integer
|
|
@@ -5307,6 +5365,11 @@ module Aws::Connect
|
|
|
5307
5365
|
SENSITIVE: []
|
|
5308
5366
|
end
|
|
5309
5367
|
|
|
5368
|
+
class ParentHoursOfOperationConfig
|
|
5369
|
+
attr_accessor hours_of_operation_id: ::String
|
|
5370
|
+
SENSITIVE: []
|
|
5371
|
+
end
|
|
5372
|
+
|
|
5310
5373
|
class ParticipantCapabilities
|
|
5311
5374
|
attr_accessor video: ("SEND")
|
|
5312
5375
|
attr_accessor screen_share: ("SEND")
|
|
@@ -5837,6 +5900,20 @@ module Aws::Connect
|
|
|
5837
5900
|
SENSITIVE: []
|
|
5838
5901
|
end
|
|
5839
5902
|
|
|
5903
|
+
class RecurrenceConfig
|
|
5904
|
+
attr_accessor recurrence_pattern: Types::RecurrencePattern
|
|
5905
|
+
SENSITIVE: []
|
|
5906
|
+
end
|
|
5907
|
+
|
|
5908
|
+
class RecurrencePattern
|
|
5909
|
+
attr_accessor frequency: ("WEEKLY" | "MONTHLY" | "YEARLY")
|
|
5910
|
+
attr_accessor interval: ::Integer
|
|
5911
|
+
attr_accessor by_month: ::Array[::Integer]
|
|
5912
|
+
attr_accessor by_month_day: ::Array[::Integer]
|
|
5913
|
+
attr_accessor by_weekday_occurrence: ::Array[::Integer]
|
|
5914
|
+
SENSITIVE: []
|
|
5915
|
+
end
|
|
5916
|
+
|
|
5840
5917
|
class Reference
|
|
5841
5918
|
attr_accessor value: ::String
|
|
5842
5919
|
attr_accessor type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT")
|
|
@@ -7556,6 +7633,8 @@ module Aws::Connect
|
|
|
7556
7633
|
attr_accessor config: ::Array[Types::HoursOfOperationOverrideConfig]
|
|
7557
7634
|
attr_accessor effective_from: ::String
|
|
7558
7635
|
attr_accessor effective_till: ::String
|
|
7636
|
+
attr_accessor recurrence_config: Types::RecurrenceConfig
|
|
7637
|
+
attr_accessor override_type: ("STANDARD" | "OPEN" | "CLOSED")
|
|
7559
7638
|
SENSITIVE: []
|
|
7560
7639
|
end
|
|
7561
7640
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-connect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.235.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.241.
|
|
21
|
+
version: 3.241.3
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.241.
|
|
31
|
+
version: 3.241.3
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|