aws-sdk-connect 1.223.0 → 1.225.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 +275 -234
- data/lib/aws-sdk-connect/client_api.rb +4 -0
- data/lib/aws-sdk-connect/types.rb +254 -226
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +12 -3
- data/sig/types.rbs +3 -0
- metadata +1 -1
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -994,7 +994,11 @@ module Aws
|
|
|
994
994
|
recipient: {
|
|
995
995
|
user_tags: Hash[::String, ::String]?,
|
|
996
996
|
user_ids: Array[::String]?
|
|
997
|
-
}
|
|
997
|
+
},
|
|
998
|
+
exclusion: {
|
|
999
|
+
user_tags: Hash[::String, ::String]?,
|
|
1000
|
+
user_ids: Array[::String]?
|
|
1001
|
+
}?
|
|
998
1002
|
}?,
|
|
999
1003
|
create_case_action: {
|
|
1000
1004
|
fields: Array[
|
|
@@ -4467,7 +4471,8 @@ module Aws
|
|
|
4467
4471
|
}?
|
|
4468
4472
|
}?
|
|
4469
4473
|
}?
|
|
4470
|
-
}
|
|
4474
|
+
},
|
|
4475
|
+
?ring_timeout_in_seconds: ::Integer
|
|
4471
4476
|
) -> _StartOutboundVoiceContactResponseSuccess
|
|
4472
4477
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartOutboundVoiceContactResponseSuccess
|
|
4473
4478
|
|
|
@@ -5417,7 +5422,11 @@ module Aws
|
|
|
5417
5422
|
recipient: {
|
|
5418
5423
|
user_tags: Hash[::String, ::String]?,
|
|
5419
5424
|
user_ids: Array[::String]?
|
|
5420
|
-
}
|
|
5425
|
+
},
|
|
5426
|
+
exclusion: {
|
|
5427
|
+
user_tags: Hash[::String, ::String]?,
|
|
5428
|
+
user_ids: Array[::String]?
|
|
5429
|
+
}?
|
|
5421
5430
|
}?,
|
|
5422
5431
|
create_case_action: {
|
|
5423
5432
|
fields: Array[
|
data/sig/types.rbs
CHANGED
|
@@ -689,6 +689,7 @@ module Aws::Connect
|
|
|
689
689
|
attr_accessor last_update_timestamp: ::Time
|
|
690
690
|
attr_accessor last_paused_timestamp: ::Time
|
|
691
691
|
attr_accessor last_resumed_timestamp: ::Time
|
|
692
|
+
attr_accessor ring_start_timestamp: ::Time
|
|
692
693
|
attr_accessor total_pause_count: ::Integer
|
|
693
694
|
attr_accessor total_pause_duration_in_seconds: ::Integer
|
|
694
695
|
attr_accessor scheduled_timestamp: ::Time
|
|
@@ -5611,6 +5612,7 @@ module Aws::Connect
|
|
|
5611
5612
|
attr_accessor content: ::String
|
|
5612
5613
|
attr_accessor content_type: ("PLAIN_TEXT")
|
|
5613
5614
|
attr_accessor recipient: Types::NotificationRecipientType
|
|
5615
|
+
attr_accessor exclusion: Types::NotificationRecipientType
|
|
5614
5616
|
SENSITIVE: []
|
|
5615
5617
|
end
|
|
5616
5618
|
|
|
@@ -5839,6 +5841,7 @@ module Aws::Connect
|
|
|
5839
5841
|
attr_accessor campaign_id: ::String
|
|
5840
5842
|
attr_accessor traffic_type: ("GENERAL" | "CAMPAIGN")
|
|
5841
5843
|
attr_accessor outbound_strategy: Types::OutboundStrategy
|
|
5844
|
+
attr_accessor ring_timeout_in_seconds: ::Integer
|
|
5842
5845
|
SENSITIVE: [:name, :description]
|
|
5843
5846
|
end
|
|
5844
5847
|
|