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
data/lib/aws-sdk-connect.rb
CHANGED
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
|
|
@@ -931,6 +943,17 @@ module Aws
|
|
|
931
943
|
?client_token: ::String,
|
|
932
944
|
?as_draft: bool,
|
|
933
945
|
?tags: Hash[::String, ::String],
|
|
946
|
+
?review_configuration: {
|
|
947
|
+
review_notification_recipients: Array[
|
|
948
|
+
{
|
|
949
|
+
type: ("USER_ID"),
|
|
950
|
+
value: {
|
|
951
|
+
user_id: ::String?
|
|
952
|
+
}
|
|
953
|
+
},
|
|
954
|
+
],
|
|
955
|
+
eligibility_days: ::Integer?
|
|
956
|
+
},
|
|
934
957
|
?target_configuration: {
|
|
935
958
|
contact_interaction_type: ("AGENT" | "AUTOMATED")
|
|
936
959
|
},
|
|
@@ -964,6 +987,11 @@ module Aws
|
|
|
964
987
|
}
|
|
965
988
|
},
|
|
966
989
|
],
|
|
990
|
+
?parent_hours_of_operation_configs: Array[
|
|
991
|
+
{
|
|
992
|
+
hours_of_operation_id: ::String?
|
|
993
|
+
},
|
|
994
|
+
],
|
|
967
995
|
?tags: Hash[::String, ::String]
|
|
968
996
|
) -> _CreateHoursOfOperationResponseSuccess
|
|
969
997
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHoursOfOperationResponseSuccess
|
|
@@ -992,7 +1020,17 @@ module Aws
|
|
|
992
1020
|
},
|
|
993
1021
|
],
|
|
994
1022
|
effective_from: ::String,
|
|
995
|
-
effective_till: ::String
|
|
1023
|
+
effective_till: ::String,
|
|
1024
|
+
?recurrence_config: {
|
|
1025
|
+
recurrence_pattern: {
|
|
1026
|
+
frequency: ("WEEKLY" | "MONTHLY" | "YEARLY"),
|
|
1027
|
+
interval: ::Integer,
|
|
1028
|
+
by_month: Array[::Integer]?,
|
|
1029
|
+
by_month_day: Array[::Integer]?,
|
|
1030
|
+
by_weekday_occurrence: Array[::Integer]?
|
|
1031
|
+
}
|
|
1032
|
+
},
|
|
1033
|
+
?override_type: ("STANDARD" | "OPEN" | "CLOSED")
|
|
996
1034
|
) -> _CreateHoursOfOperationOverrideResponseSuccess
|
|
997
1035
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHoursOfOperationOverrideResponseSuccess
|
|
998
1036
|
|
|
@@ -2387,6 +2425,14 @@ module Aws
|
|
|
2387
2425
|
) -> _DisassociateFlowResponseSuccess
|
|
2388
2426
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateFlowResponseSuccess
|
|
2389
2427
|
|
|
2428
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#disassociate_hours_of_operations-instance_method
|
|
2429
|
+
def disassociate_hours_of_operations: (
|
|
2430
|
+
instance_id: ::String,
|
|
2431
|
+
hours_of_operation_id: ::String,
|
|
2432
|
+
parent_hours_of_operation_ids: Array[::String]
|
|
2433
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2434
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2435
|
+
|
|
2390
2436
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#disassociate_instance_storage_config-instance_method
|
|
2391
2437
|
def disassociate_instance_storage_config: (
|
|
2392
2438
|
instance_id: ::String,
|
|
@@ -2658,6 +2704,7 @@ module Aws
|
|
|
2658
2704
|
interface _GetEffectiveHoursOfOperationsResponseSuccess
|
|
2659
2705
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetEffectiveHoursOfOperationsResponse]
|
|
2660
2706
|
def effective_hours_of_operation_list: () -> ::Array[Types::EffectiveHoursOfOperations]
|
|
2707
|
+
def effective_override_hours_list: () -> ::Array[Types::EffectiveOverrideHours]
|
|
2661
2708
|
def time_zone: () -> ::String
|
|
2662
2709
|
end
|
|
2663
2710
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#get_effective_hours_of_operations-instance_method
|
|
@@ -2954,6 +3001,22 @@ module Aws
|
|
|
2954
3001
|
) -> _ListBotsResponseSuccess
|
|
2955
3002
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBotsResponseSuccess
|
|
2956
3003
|
|
|
3004
|
+
interface _ListChildHoursOfOperationsResponseSuccess
|
|
3005
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListChildHoursOfOperationsResponse]
|
|
3006
|
+
def next_token: () -> ::String
|
|
3007
|
+
def child_hours_of_operations_summary_list: () -> ::Array[Types::HoursOfOperationsIdentifier]
|
|
3008
|
+
def last_modified_time: () -> ::Time
|
|
3009
|
+
def last_modified_region: () -> ::String
|
|
3010
|
+
end
|
|
3011
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_child_hours_of_operations-instance_method
|
|
3012
|
+
def list_child_hours_of_operations: (
|
|
3013
|
+
instance_id: ::String,
|
|
3014
|
+
hours_of_operation_id: ::String,
|
|
3015
|
+
?next_token: ::String,
|
|
3016
|
+
?max_results: ::Integer
|
|
3017
|
+
) -> _ListChildHoursOfOperationsResponseSuccess
|
|
3018
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListChildHoursOfOperationsResponseSuccess
|
|
3019
|
+
|
|
2957
3020
|
interface _ListContactEvaluationsResponseSuccess
|
|
2958
3021
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListContactEvaluationsResponse]
|
|
2959
3022
|
def evaluation_summary_list: () -> ::Array[Types::EvaluationSummary]
|
|
@@ -6216,6 +6279,17 @@ module Aws
|
|
|
6216
6279
|
?auto_evaluation_configuration: {
|
|
6217
6280
|
enabled: bool
|
|
6218
6281
|
},
|
|
6282
|
+
?review_configuration: {
|
|
6283
|
+
review_notification_recipients: Array[
|
|
6284
|
+
{
|
|
6285
|
+
type: ("USER_ID"),
|
|
6286
|
+
value: {
|
|
6287
|
+
user_id: ::String?
|
|
6288
|
+
}
|
|
6289
|
+
},
|
|
6290
|
+
],
|
|
6291
|
+
eligibility_days: ::Integer?
|
|
6292
|
+
},
|
|
6219
6293
|
?as_draft: bool,
|
|
6220
6294
|
?client_token: ::String,
|
|
6221
6295
|
?target_configuration: {
|
|
@@ -6271,7 +6345,17 @@ module Aws
|
|
|
6271
6345
|
},
|
|
6272
6346
|
],
|
|
6273
6347
|
?effective_from: ::String,
|
|
6274
|
-
?effective_till: ::String
|
|
6348
|
+
?effective_till: ::String,
|
|
6349
|
+
?recurrence_config: {
|
|
6350
|
+
recurrence_pattern: {
|
|
6351
|
+
frequency: ("WEEKLY" | "MONTHLY" | "YEARLY"),
|
|
6352
|
+
interval: ::Integer,
|
|
6353
|
+
by_month: Array[::Integer]?,
|
|
6354
|
+
by_month_day: Array[::Integer]?,
|
|
6355
|
+
by_weekday_occurrence: Array[::Integer]?
|
|
6356
|
+
}
|
|
6357
|
+
},
|
|
6358
|
+
?override_type: ("STANDARD" | "OPEN" | "CLOSED")
|
|
6275
6359
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
6276
6360
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
6277
6361
|
|
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")
|
|
@@ -1331,6 +1338,7 @@ module Aws::Connect
|
|
|
1331
1338
|
attr_accessor client_token: ::String
|
|
1332
1339
|
attr_accessor as_draft: bool
|
|
1333
1340
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1341
|
+
attr_accessor review_configuration: Types::EvaluationReviewConfiguration
|
|
1334
1342
|
attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
|
|
1335
1343
|
attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
|
|
1336
1344
|
SENSITIVE: []
|
|
@@ -1350,6 +1358,8 @@ module Aws::Connect
|
|
|
1350
1358
|
attr_accessor config: ::Array[Types::HoursOfOperationOverrideConfig]
|
|
1351
1359
|
attr_accessor effective_from: ::String
|
|
1352
1360
|
attr_accessor effective_till: ::String
|
|
1361
|
+
attr_accessor recurrence_config: Types::RecurrenceConfig
|
|
1362
|
+
attr_accessor override_type: ("STANDARD" | "OPEN" | "CLOSED")
|
|
1353
1363
|
SENSITIVE: []
|
|
1354
1364
|
end
|
|
1355
1365
|
|
|
@@ -1364,6 +1374,7 @@ module Aws::Connect
|
|
|
1364
1374
|
attr_accessor description: ::String
|
|
1365
1375
|
attr_accessor time_zone: ::String
|
|
1366
1376
|
attr_accessor config: ::Array[Types::HoursOfOperationConfig]
|
|
1377
|
+
attr_accessor parent_hours_of_operation_configs: ::Array[Types::ParentHoursOfOperationConfig]
|
|
1367
1378
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1368
1379
|
SENSITIVE: []
|
|
1369
1380
|
end
|
|
@@ -2659,6 +2670,13 @@ module Aws::Connect
|
|
|
2659
2670
|
class DisassociateFlowResponse < Aws::EmptyStructure
|
|
2660
2671
|
end
|
|
2661
2672
|
|
|
2673
|
+
class DisassociateHoursOfOperationsRequest
|
|
2674
|
+
attr_accessor instance_id: ::String
|
|
2675
|
+
attr_accessor hours_of_operation_id: ::String
|
|
2676
|
+
attr_accessor parent_hours_of_operation_ids: ::Array[::String]
|
|
2677
|
+
SENSITIVE: []
|
|
2678
|
+
end
|
|
2679
|
+
|
|
2662
2680
|
class DisassociateInstanceStorageConfigRequest
|
|
2663
2681
|
attr_accessor instance_id: ::String
|
|
2664
2682
|
attr_accessor association_id: ::String
|
|
@@ -2791,6 +2809,12 @@ module Aws::Connect
|
|
|
2791
2809
|
SENSITIVE: []
|
|
2792
2810
|
end
|
|
2793
2811
|
|
|
2812
|
+
class EffectiveOverrideHours
|
|
2813
|
+
attr_accessor date: ::String
|
|
2814
|
+
attr_accessor override_hours: ::Array[Types::OverrideHour]
|
|
2815
|
+
SENSITIVE: []
|
|
2816
|
+
end
|
|
2817
|
+
|
|
2794
2818
|
class EmailAddressInfo
|
|
2795
2819
|
attr_accessor email_address: ::String
|
|
2796
2820
|
attr_accessor display_name: ::String
|
|
@@ -2896,7 +2920,7 @@ module Aws::Connect
|
|
|
2896
2920
|
attr_accessor metadata: Types::EvaluationMetadata
|
|
2897
2921
|
attr_accessor answers: ::Hash[::String, Types::EvaluationAnswerOutput]
|
|
2898
2922
|
attr_accessor notes: ::Hash[::String, Types::EvaluationNote]
|
|
2899
|
-
attr_accessor status: ("DRAFT" | "SUBMITTED")
|
|
2923
|
+
attr_accessor status: ("DRAFT" | "SUBMITTED" | "REVIEW_REQUESTED" | "UNDER_REVIEW")
|
|
2900
2924
|
attr_accessor scores: ::Hash[::String, Types::EvaluationScore]
|
|
2901
2925
|
attr_accessor created_time: ::Time
|
|
2902
2926
|
attr_accessor last_modified_time: ::Time
|
|
@@ -2987,6 +3011,7 @@ module Aws::Connect
|
|
|
2987
3011
|
attr_accessor last_modified_time: ::Time
|
|
2988
3012
|
attr_accessor last_modified_by: ::String
|
|
2989
3013
|
attr_accessor auto_evaluation_configuration: Types::EvaluationFormAutoEvaluationConfiguration
|
|
3014
|
+
attr_accessor review_configuration: Types::EvaluationReviewConfiguration
|
|
2990
3015
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
2991
3016
|
attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
|
|
2992
3017
|
attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
|
|
@@ -3009,6 +3034,7 @@ module Aws::Connect
|
|
|
3009
3034
|
attr_accessor auto_evaluation_configuration: Types::EvaluationFormAutoEvaluationConfiguration
|
|
3010
3035
|
attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
|
|
3011
3036
|
attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
|
|
3037
|
+
attr_accessor review_configuration: Types::EvaluationReviewConfiguration
|
|
3012
3038
|
SENSITIVE: []
|
|
3013
3039
|
end
|
|
3014
3040
|
|
|
@@ -3318,6 +3344,7 @@ module Aws::Connect
|
|
|
3318
3344
|
attr_accessor score: Types::EvaluationScore
|
|
3319
3345
|
attr_accessor auto_evaluation: Types::AutoEvaluationDetails
|
|
3320
3346
|
attr_accessor acknowledgement: Types::EvaluationAcknowledgement
|
|
3347
|
+
attr_accessor review: Types::EvaluationReviewMetadata
|
|
3321
3348
|
attr_accessor contact_participant: Types::EvaluationContactParticipant
|
|
3322
3349
|
attr_accessor sampling_job_id: ::String
|
|
3323
3350
|
SENSITIVE: []
|
|
@@ -3347,6 +3374,38 @@ module Aws::Connect
|
|
|
3347
3374
|
SENSITIVE: []
|
|
3348
3375
|
end
|
|
3349
3376
|
|
|
3377
|
+
class EvaluationReviewConfiguration
|
|
3378
|
+
attr_accessor review_notification_recipients: ::Array[Types::EvaluationReviewNotificationRecipient]
|
|
3379
|
+
attr_accessor eligibility_days: ::Integer
|
|
3380
|
+
SENSITIVE: []
|
|
3381
|
+
end
|
|
3382
|
+
|
|
3383
|
+
class EvaluationReviewMetadata
|
|
3384
|
+
attr_accessor review_id: ::String
|
|
3385
|
+
attr_accessor created_time: ::Time
|
|
3386
|
+
attr_accessor created_by: ::String
|
|
3387
|
+
attr_accessor review_request_comments: ::Array[Types::EvaluationReviewRequestComment]
|
|
3388
|
+
SENSITIVE: []
|
|
3389
|
+
end
|
|
3390
|
+
|
|
3391
|
+
class EvaluationReviewNotificationRecipient
|
|
3392
|
+
attr_accessor type: ("USER_ID")
|
|
3393
|
+
attr_accessor value: Types::EvaluationReviewNotificationRecipientValue
|
|
3394
|
+
SENSITIVE: []
|
|
3395
|
+
end
|
|
3396
|
+
|
|
3397
|
+
class EvaluationReviewNotificationRecipientValue
|
|
3398
|
+
attr_accessor user_id: ::String
|
|
3399
|
+
SENSITIVE: []
|
|
3400
|
+
end
|
|
3401
|
+
|
|
3402
|
+
class EvaluationReviewRequestComment
|
|
3403
|
+
attr_accessor comment: ::String
|
|
3404
|
+
attr_accessor created_time: ::Time
|
|
3405
|
+
attr_accessor created_by: ::String
|
|
3406
|
+
SENSITIVE: []
|
|
3407
|
+
end
|
|
3408
|
+
|
|
3350
3409
|
class EvaluationScore
|
|
3351
3410
|
attr_accessor percentage: ::Float
|
|
3352
3411
|
attr_accessor not_applicable: bool
|
|
@@ -3398,7 +3457,7 @@ module Aws::Connect
|
|
|
3398
3457
|
attr_accessor evaluation_form_version: ::Integer
|
|
3399
3458
|
attr_accessor evaluation_form_title: ::String
|
|
3400
3459
|
attr_accessor metadata: Types::EvaluationSearchMetadata
|
|
3401
|
-
attr_accessor status: ("DRAFT" | "SUBMITTED")
|
|
3460
|
+
attr_accessor status: ("DRAFT" | "SUBMITTED" | "REVIEW_REQUESTED" | "UNDER_REVIEW")
|
|
3402
3461
|
attr_accessor evaluation_type: ("STANDARD" | "CALIBRATION")
|
|
3403
3462
|
attr_accessor created_time: ::Time
|
|
3404
3463
|
attr_accessor last_modified_time: ::Time
|
|
@@ -3426,7 +3485,7 @@ module Aws::Connect
|
|
|
3426
3485
|
attr_accessor evaluation_form_title: ::String
|
|
3427
3486
|
attr_accessor evaluation_form_id: ::String
|
|
3428
3487
|
attr_accessor calibration_session_id: ::String
|
|
3429
|
-
attr_accessor status: ("DRAFT" | "SUBMITTED")
|
|
3488
|
+
attr_accessor status: ("DRAFT" | "SUBMITTED" | "REVIEW_REQUESTED" | "UNDER_REVIEW")
|
|
3430
3489
|
attr_accessor auto_evaluation_enabled: bool
|
|
3431
3490
|
attr_accessor auto_evaluation_status: ("IN_PROGRESS" | "FAILED" | "SUCCEEDED")
|
|
3432
3491
|
attr_accessor evaluator_arn: ::String
|
|
@@ -3646,6 +3705,7 @@ module Aws::Connect
|
|
|
3646
3705
|
|
|
3647
3706
|
class GetEffectiveHoursOfOperationsResponse
|
|
3648
3707
|
attr_accessor effective_hours_of_operation_list: ::Array[Types::EffectiveHoursOfOperations]
|
|
3708
|
+
attr_accessor effective_override_hours_list: ::Array[Types::EffectiveOverrideHours]
|
|
3649
3709
|
attr_accessor time_zone: ::String
|
|
3650
3710
|
SENSITIVE: []
|
|
3651
3711
|
end
|
|
@@ -3897,6 +3957,7 @@ module Aws::Connect
|
|
|
3897
3957
|
attr_accessor description: ::String
|
|
3898
3958
|
attr_accessor time_zone: ::String
|
|
3899
3959
|
attr_accessor config: ::Array[Types::HoursOfOperationConfig]
|
|
3960
|
+
attr_accessor parent_hours_of_operations: ::Array[Types::HoursOfOperationsIdentifier]
|
|
3900
3961
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
3901
3962
|
attr_accessor last_modified_time: ::Time
|
|
3902
3963
|
attr_accessor last_modified_region: ::String
|
|
@@ -3919,6 +3980,8 @@ module Aws::Connect
|
|
|
3919
3980
|
attr_accessor config: ::Array[Types::HoursOfOperationOverrideConfig]
|
|
3920
3981
|
attr_accessor effective_from: ::String
|
|
3921
3982
|
attr_accessor effective_till: ::String
|
|
3983
|
+
attr_accessor recurrence_config: Types::RecurrenceConfig
|
|
3984
|
+
attr_accessor override_type: ("STANDARD" | "OPEN" | "CLOSED")
|
|
3922
3985
|
SENSITIVE: []
|
|
3923
3986
|
end
|
|
3924
3987
|
|
|
@@ -3964,6 +4027,13 @@ module Aws::Connect
|
|
|
3964
4027
|
SENSITIVE: []
|
|
3965
4028
|
end
|
|
3966
4029
|
|
|
4030
|
+
class HoursOfOperationsIdentifier
|
|
4031
|
+
attr_accessor name: ::String
|
|
4032
|
+
attr_accessor id: ::String
|
|
4033
|
+
attr_accessor arn: ::String
|
|
4034
|
+
SENSITIVE: []
|
|
4035
|
+
end
|
|
4036
|
+
|
|
3967
4037
|
class IdempotencyException
|
|
3968
4038
|
attr_accessor message: ::String
|
|
3969
4039
|
SENSITIVE: []
|
|
@@ -4270,6 +4340,22 @@ module Aws::Connect
|
|
|
4270
4340
|
SENSITIVE: []
|
|
4271
4341
|
end
|
|
4272
4342
|
|
|
4343
|
+
class ListChildHoursOfOperationsRequest
|
|
4344
|
+
attr_accessor instance_id: ::String
|
|
4345
|
+
attr_accessor hours_of_operation_id: ::String
|
|
4346
|
+
attr_accessor next_token: ::String
|
|
4347
|
+
attr_accessor max_results: ::Integer
|
|
4348
|
+
SENSITIVE: []
|
|
4349
|
+
end
|
|
4350
|
+
|
|
4351
|
+
class ListChildHoursOfOperationsResponse
|
|
4352
|
+
attr_accessor next_token: ::String
|
|
4353
|
+
attr_accessor child_hours_of_operations_summary_list: ::Array[Types::HoursOfOperationsIdentifier]
|
|
4354
|
+
attr_accessor last_modified_time: ::Time
|
|
4355
|
+
attr_accessor last_modified_region: ::String
|
|
4356
|
+
SENSITIVE: []
|
|
4357
|
+
end
|
|
4358
|
+
|
|
4273
4359
|
class ListCondition
|
|
4274
4360
|
attr_accessor target_list_type: ("PROFICIENCIES")
|
|
4275
4361
|
attr_accessor conditions: ::Array[Types::Condition]
|
|
@@ -5268,6 +5354,14 @@ module Aws::Connect
|
|
|
5268
5354
|
SENSITIVE: []
|
|
5269
5355
|
end
|
|
5270
5356
|
|
|
5357
|
+
class OverrideHour
|
|
5358
|
+
attr_accessor start: Types::OverrideTimeSlice
|
|
5359
|
+
attr_accessor end: Types::OverrideTimeSlice
|
|
5360
|
+
attr_accessor override_name: ::String
|
|
5361
|
+
attr_accessor operational_status: ("OPEN" | "CLOSED")
|
|
5362
|
+
SENSITIVE: []
|
|
5363
|
+
end
|
|
5364
|
+
|
|
5271
5365
|
class OverrideTimeSlice
|
|
5272
5366
|
attr_accessor hours: ::Integer
|
|
5273
5367
|
attr_accessor minutes: ::Integer
|
|
@@ -5307,6 +5401,11 @@ module Aws::Connect
|
|
|
5307
5401
|
SENSITIVE: []
|
|
5308
5402
|
end
|
|
5309
5403
|
|
|
5404
|
+
class ParentHoursOfOperationConfig
|
|
5405
|
+
attr_accessor hours_of_operation_id: ::String
|
|
5406
|
+
SENSITIVE: []
|
|
5407
|
+
end
|
|
5408
|
+
|
|
5310
5409
|
class ParticipantCapabilities
|
|
5311
5410
|
attr_accessor video: ("SEND")
|
|
5312
5411
|
attr_accessor screen_share: ("SEND")
|
|
@@ -5837,6 +5936,20 @@ module Aws::Connect
|
|
|
5837
5936
|
SENSITIVE: []
|
|
5838
5937
|
end
|
|
5839
5938
|
|
|
5939
|
+
class RecurrenceConfig
|
|
5940
|
+
attr_accessor recurrence_pattern: Types::RecurrencePattern
|
|
5941
|
+
SENSITIVE: []
|
|
5942
|
+
end
|
|
5943
|
+
|
|
5944
|
+
class RecurrencePattern
|
|
5945
|
+
attr_accessor frequency: ("WEEKLY" | "MONTHLY" | "YEARLY")
|
|
5946
|
+
attr_accessor interval: ::Integer
|
|
5947
|
+
attr_accessor by_month: ::Array[::Integer]
|
|
5948
|
+
attr_accessor by_month_day: ::Array[::Integer]
|
|
5949
|
+
attr_accessor by_weekday_occurrence: ::Array[::Integer]
|
|
5950
|
+
SENSITIVE: []
|
|
5951
|
+
end
|
|
5952
|
+
|
|
5840
5953
|
class Reference
|
|
5841
5954
|
attr_accessor value: ::String
|
|
5842
5955
|
attr_accessor type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT")
|
|
@@ -7533,6 +7646,7 @@ module Aws::Connect
|
|
|
7533
7646
|
attr_accessor items: ::Array[Types::EvaluationFormItem]
|
|
7534
7647
|
attr_accessor scoring_strategy: Types::EvaluationFormScoringStrategy
|
|
7535
7648
|
attr_accessor auto_evaluation_configuration: Types::EvaluationFormAutoEvaluationConfiguration
|
|
7649
|
+
attr_accessor review_configuration: Types::EvaluationReviewConfiguration
|
|
7536
7650
|
attr_accessor as_draft: bool
|
|
7537
7651
|
attr_accessor client_token: ::String
|
|
7538
7652
|
attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
|
|
@@ -7556,6 +7670,8 @@ module Aws::Connect
|
|
|
7556
7670
|
attr_accessor config: ::Array[Types::HoursOfOperationOverrideConfig]
|
|
7557
7671
|
attr_accessor effective_from: ::String
|
|
7558
7672
|
attr_accessor effective_till: ::String
|
|
7673
|
+
attr_accessor recurrence_config: Types::RecurrenceConfig
|
|
7674
|
+
attr_accessor override_type: ("STANDARD" | "OPEN" | "CLOSED")
|
|
7559
7675
|
SENSITIVE: []
|
|
7560
7676
|
end
|
|
7561
7677
|
|
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.236.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.4
|
|
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.4
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|