aws-sdk-connect 1.199.0 → 1.201.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 +313 -214
- data/lib/aws-sdk-connect/client_api.rb +217 -127
- data/lib/aws-sdk-connect/types.rb +501 -196
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +40 -4
- data/sig/types.rbs +69 -5
- metadata +3 -6
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -847,13 +847,13 @@ module Aws
|
|
847
847
|
instance_id: ::String,
|
848
848
|
name: ::String,
|
849
849
|
trigger_event_source: {
|
850
|
-
event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate"),
|
850
|
+
event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate" | "OnSlaBreach"),
|
851
851
|
integration_association_id: ::String?
|
852
852
|
},
|
853
853
|
function: ::String,
|
854
854
|
actions: Array[
|
855
855
|
{
|
856
|
-
action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION"),
|
856
|
+
action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "ASSIGN_SLA" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION"),
|
857
857
|
task_action: {
|
858
858
|
name: ::String,
|
859
859
|
description: ::String?,
|
@@ -910,6 +910,24 @@ module Aws
|
|
910
910
|
},
|
911
911
|
]
|
912
912
|
}?,
|
913
|
+
assign_sla_action: {
|
914
|
+
sla_assignment_type: ("CASES"),
|
915
|
+
case_sla_configuration: {
|
916
|
+
name: ::String,
|
917
|
+
type: ("CaseField"),
|
918
|
+
field_id: ::String?,
|
919
|
+
target_field_values: Array[
|
920
|
+
{
|
921
|
+
boolean_value: bool?,
|
922
|
+
double_value: ::Float?,
|
923
|
+
empty_value: {
|
924
|
+
}?,
|
925
|
+
string_value: ::String?
|
926
|
+
},
|
927
|
+
]?,
|
928
|
+
target_sla_minutes: ::Integer
|
929
|
+
}?
|
930
|
+
}?,
|
913
931
|
end_associated_tasks_action: {
|
914
932
|
}?,
|
915
933
|
submit_auto_evaluation_action: {
|
@@ -2580,7 +2598,7 @@ module Aws
|
|
2580
2598
|
def list_rules: (
|
2581
2599
|
instance_id: ::String,
|
2582
2600
|
?publish_status: ("DRAFT" | "PUBLISHED"),
|
2583
|
-
?event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate"),
|
2601
|
+
?event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate" | "OnSlaBreach"),
|
2584
2602
|
?max_results: ::Integer,
|
2585
2603
|
?next_token: ::String
|
2586
2604
|
) -> _ListRulesResponseSuccess
|
@@ -4930,7 +4948,7 @@ module Aws
|
|
4930
4948
|
function: ::String,
|
4931
4949
|
actions: Array[
|
4932
4950
|
{
|
4933
|
-
action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION"),
|
4951
|
+
action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "ASSIGN_SLA" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION"),
|
4934
4952
|
task_action: {
|
4935
4953
|
name: ::String,
|
4936
4954
|
description: ::String?,
|
@@ -4987,6 +5005,24 @@ module Aws
|
|
4987
5005
|
},
|
4988
5006
|
]
|
4989
5007
|
}?,
|
5008
|
+
assign_sla_action: {
|
5009
|
+
sla_assignment_type: ("CASES"),
|
5010
|
+
case_sla_configuration: {
|
5011
|
+
name: ::String,
|
5012
|
+
type: ("CaseField"),
|
5013
|
+
field_id: ::String?,
|
5014
|
+
target_field_values: Array[
|
5015
|
+
{
|
5016
|
+
boolean_value: bool?,
|
5017
|
+
double_value: ::Float?,
|
5018
|
+
empty_value: {
|
5019
|
+
}?,
|
5020
|
+
string_value: ::String?
|
5021
|
+
},
|
5022
|
+
]?,
|
5023
|
+
target_sla_minutes: ::Integer
|
5024
|
+
}?
|
5025
|
+
}?,
|
4990
5026
|
end_associated_tasks_action: {
|
4991
5027
|
}?,
|
4992
5028
|
submit_auto_evaluation_action: {
|
data/sig/types.rbs
CHANGED
@@ -14,7 +14,7 @@ module Aws::Connect
|
|
14
14
|
end
|
15
15
|
|
16
16
|
class ActionSummary
|
17
|
-
attr_accessor action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION")
|
17
|
+
attr_accessor action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "ASSIGN_SLA" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION")
|
18
18
|
SENSITIVE: []
|
19
19
|
end
|
20
20
|
|
@@ -75,6 +75,11 @@ module Aws::Connect
|
|
75
75
|
attr_accessor hierarchy_groups: Types::HierarchyGroups
|
76
76
|
attr_accessor device_info: Types::DeviceInfo
|
77
77
|
attr_accessor capabilities: Types::ParticipantCapabilities
|
78
|
+
attr_accessor after_contact_work_duration: ::Integer
|
79
|
+
attr_accessor after_contact_work_start_timestamp: ::Time
|
80
|
+
attr_accessor after_contact_work_end_timestamp: ::Time
|
81
|
+
attr_accessor agent_initiated_hold_duration: ::Integer
|
82
|
+
attr_accessor state_transitions: ::Array[Types::StateTransition]
|
78
83
|
SENSITIVE: []
|
79
84
|
end
|
80
85
|
|
@@ -167,6 +172,12 @@ module Aws::Connect
|
|
167
172
|
class AssignContactCategoryActionDefinition < Aws::EmptyStructure
|
168
173
|
end
|
169
174
|
|
175
|
+
class AssignSlaActionDefinition
|
176
|
+
attr_accessor sla_assignment_type: ("CASES")
|
177
|
+
attr_accessor case_sla_configuration: Types::CaseSlaConfiguration
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
170
181
|
class AssociateAnalyticsDataSetRequest
|
171
182
|
attr_accessor instance_id: ::String
|
172
183
|
attr_accessor data_set_id: ::String
|
@@ -478,6 +489,15 @@ module Aws::Connect
|
|
478
489
|
SENSITIVE: []
|
479
490
|
end
|
480
491
|
|
492
|
+
class CaseSlaConfiguration
|
493
|
+
attr_accessor name: ::String
|
494
|
+
attr_accessor type: ("CaseField")
|
495
|
+
attr_accessor field_id: ::String
|
496
|
+
attr_accessor target_field_values: ::Array[Types::FieldValueUnion]
|
497
|
+
attr_accessor target_sla_minutes: ::Integer
|
498
|
+
SENSITIVE: []
|
499
|
+
end
|
500
|
+
|
481
501
|
class ChatEvent
|
482
502
|
attr_accessor type: ("DISCONNECT" | "MESSAGE" | "EVENT")
|
483
503
|
attr_accessor content_type: ::String
|
@@ -607,6 +627,11 @@ module Aws::Connect
|
|
607
627
|
attr_accessor disconnect_details: Types::DisconnectDetails
|
608
628
|
attr_accessor additional_email_recipients: Types::AdditionalEmailRecipients
|
609
629
|
attr_accessor segment_attributes: ::Hash[::String, Types::SegmentAttributeValue]
|
630
|
+
attr_accessor recordings: ::Array[Types::RecordingInfo]
|
631
|
+
attr_accessor disconnect_reason: ::String
|
632
|
+
attr_accessor contact_evaluations: ::Hash[::String, Types::ContactEvaluation]
|
633
|
+
attr_accessor contact_details: Types::ContactDetails
|
634
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
610
635
|
SENSITIVE: [:name, :description]
|
611
636
|
end
|
612
637
|
|
@@ -632,6 +657,23 @@ module Aws::Connect
|
|
632
657
|
SENSITIVE: []
|
633
658
|
end
|
634
659
|
|
660
|
+
class ContactDetails
|
661
|
+
attr_accessor name: ::String
|
662
|
+
attr_accessor description: ::String
|
663
|
+
SENSITIVE: []
|
664
|
+
end
|
665
|
+
|
666
|
+
class ContactEvaluation
|
667
|
+
attr_accessor form_id: ::String
|
668
|
+
attr_accessor evaluation_arn: ::String
|
669
|
+
attr_accessor status: ("COMPLETE" | "IN_PROGRESS" | "DELETED")
|
670
|
+
attr_accessor start_timestamp: ::Time
|
671
|
+
attr_accessor end_timestamp: ::Time
|
672
|
+
attr_accessor delete_timestamp: ::Time
|
673
|
+
attr_accessor export_location: ::String
|
674
|
+
SENSITIVE: []
|
675
|
+
end
|
676
|
+
|
635
677
|
class ContactFilter
|
636
678
|
attr_accessor contact_states: ::Array[("INCOMING" | "PENDING" | "CONNECTING" | "CONNECTED" | "CONNECTED_ONHOLD" | "MISSED" | "ERROR" | "ENDED" | "REJECTED")]
|
637
679
|
SENSITIVE: []
|
@@ -3494,7 +3536,7 @@ module Aws::Connect
|
|
3494
3536
|
class ListRulesRequest
|
3495
3537
|
attr_accessor instance_id: ::String
|
3496
3538
|
attr_accessor publish_status: ("DRAFT" | "PUBLISHED")
|
3497
|
-
attr_accessor event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate")
|
3539
|
+
attr_accessor event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate" | "OnSlaBreach")
|
3498
3540
|
attr_accessor max_results: ::Integer
|
3499
3541
|
attr_accessor next_token: ::String
|
3500
3542
|
SENSITIVE: []
|
@@ -4301,6 +4343,20 @@ module Aws::Connect
|
|
4301
4343
|
end
|
4302
4344
|
end
|
4303
4345
|
|
4346
|
+
class RecordingInfo
|
4347
|
+
attr_accessor storage_type: ("S3" | "KINESIS_VIDEO_STREAM" | "KINESIS_STREAM" | "KINESIS_FIREHOSE")
|
4348
|
+
attr_accessor location: ::String
|
4349
|
+
attr_accessor media_stream_type: ("AUDIO" | "VIDEO")
|
4350
|
+
attr_accessor participant_type: ("ALL" | "MANAGER" | "AGENT" | "CUSTOMER" | "THIRDPARTY")
|
4351
|
+
attr_accessor fragment_start_number: ::String
|
4352
|
+
attr_accessor fragment_stop_number: ::String
|
4353
|
+
attr_accessor start_timestamp: ::Time
|
4354
|
+
attr_accessor stop_timestamp: ::Time
|
4355
|
+
attr_accessor status: ("AVAILABLE" | "DELETED")
|
4356
|
+
attr_accessor deletion_reason: ::String
|
4357
|
+
SENSITIVE: []
|
4358
|
+
end
|
4359
|
+
|
4304
4360
|
class Reference
|
4305
4361
|
attr_accessor value: ::String
|
4306
4362
|
attr_accessor type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE")
|
@@ -4534,13 +4590,14 @@ module Aws::Connect
|
|
4534
4590
|
end
|
4535
4591
|
|
4536
4592
|
class RuleAction
|
4537
|
-
attr_accessor action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION")
|
4593
|
+
attr_accessor action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "ASSIGN_SLA" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION")
|
4538
4594
|
attr_accessor task_action: Types::TaskActionDefinition
|
4539
4595
|
attr_accessor event_bridge_action: Types::EventBridgeActionDefinition
|
4540
4596
|
attr_accessor assign_contact_category_action: Types::AssignContactCategoryActionDefinition
|
4541
4597
|
attr_accessor send_notification_action: Types::SendNotificationActionDefinition
|
4542
4598
|
attr_accessor create_case_action: Types::CreateCaseActionDefinition
|
4543
4599
|
attr_accessor update_case_action: Types::UpdateCaseActionDefinition
|
4600
|
+
attr_accessor assign_sla_action: Types::AssignSlaActionDefinition
|
4544
4601
|
attr_accessor end_associated_tasks_action: Types::EndAssociatedTasksActionDefinition
|
4545
4602
|
attr_accessor submit_auto_evaluation_action: Types::SubmitAutoEvaluationActionDefinition
|
4546
4603
|
SENSITIVE: []
|
@@ -4550,7 +4607,7 @@ module Aws::Connect
|
|
4550
4607
|
attr_accessor name: ::String
|
4551
4608
|
attr_accessor rule_id: ::String
|
4552
4609
|
attr_accessor rule_arn: ::String
|
4553
|
-
attr_accessor event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate")
|
4610
|
+
attr_accessor event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate" | "OnSlaBreach")
|
4554
4611
|
attr_accessor publish_status: ("DRAFT" | "PUBLISHED")
|
4555
4612
|
attr_accessor action_summaries: ::Array[Types::ActionSummary]
|
4556
4613
|
attr_accessor created_time: ::Time
|
@@ -4559,7 +4616,7 @@ module Aws::Connect
|
|
4559
4616
|
end
|
4560
4617
|
|
4561
4618
|
class RuleTriggerEventSource
|
4562
|
-
attr_accessor event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate")
|
4619
|
+
attr_accessor event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate" | "OnSlaBreach")
|
4563
4620
|
attr_accessor integration_association_id: ::String
|
4564
4621
|
SENSITIVE: []
|
4565
4622
|
end
|
@@ -5270,6 +5327,13 @@ module Aws::Connect
|
|
5270
5327
|
SENSITIVE: []
|
5271
5328
|
end
|
5272
5329
|
|
5330
|
+
class StateTransition
|
5331
|
+
attr_accessor state: ("INITIAL" | "CONNECTED" | "DISCONNECTED" | "MISSED")
|
5332
|
+
attr_accessor state_start_timestamp: ::Time
|
5333
|
+
attr_accessor state_end_timestamp: ::Time
|
5334
|
+
SENSITIVE: []
|
5335
|
+
end
|
5336
|
+
|
5273
5337
|
class Step
|
5274
5338
|
attr_accessor expiry: Types::Expiry
|
5275
5339
|
attr_accessor expression: Types::Expression
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.201.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: aws-sdk-core
|
@@ -77,7 +76,6 @@ licenses:
|
|
77
76
|
metadata:
|
78
77
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connect
|
79
78
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connect/CHANGELOG.md
|
80
|
-
post_install_message:
|
81
79
|
rdoc_options: []
|
82
80
|
require_paths:
|
83
81
|
- lib
|
@@ -92,8 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
92
90
|
- !ruby/object:Gem::Version
|
93
91
|
version: '0'
|
94
92
|
requirements: []
|
95
|
-
rubygems_version: 3.
|
96
|
-
signing_key:
|
93
|
+
rubygems_version: 3.6.7
|
97
94
|
specification_version: 4
|
98
95
|
summary: AWS SDK for Ruby - Amazon Connect
|
99
96
|
test_files: []
|