aws-sdk-connect 1.200.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +220 -186
- data/lib/aws-sdk-connect/client_api.rb +196 -127
- data/lib/aws-sdk-connect/types.rb +414 -184
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/types.rbs +48 -0
- metadata +3 -6
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/types.rbs
CHANGED
@@ -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
|
|
@@ -622,6 +627,11 @@ module Aws::Connect
|
|
622
627
|
attr_accessor disconnect_details: Types::DisconnectDetails
|
623
628
|
attr_accessor additional_email_recipients: Types::AdditionalEmailRecipients
|
624
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]
|
625
635
|
SENSITIVE: [:name, :description]
|
626
636
|
end
|
627
637
|
|
@@ -647,6 +657,23 @@ module Aws::Connect
|
|
647
657
|
SENSITIVE: []
|
648
658
|
end
|
649
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
|
+
|
650
677
|
class ContactFilter
|
651
678
|
attr_accessor contact_states: ::Array[("INCOMING" | "PENDING" | "CONNECTING" | "CONNECTED" | "CONNECTED_ONHOLD" | "MISSED" | "ERROR" | "ENDED" | "REJECTED")]
|
652
679
|
SENSITIVE: []
|
@@ -4316,6 +4343,20 @@ module Aws::Connect
|
|
4316
4343
|
end
|
4317
4344
|
end
|
4318
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
|
+
|
4319
4360
|
class Reference
|
4320
4361
|
attr_accessor value: ::String
|
4321
4362
|
attr_accessor type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE")
|
@@ -5286,6 +5327,13 @@ module Aws::Connect
|
|
5286
5327
|
SENSITIVE: []
|
5287
5328
|
end
|
5288
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
|
+
|
5289
5337
|
class Step
|
5290
5338
|
attr_accessor expiry: Types::Expiry
|
5291
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: []
|