aws-sdk-connect 1.222.0 → 1.224.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 +266 -232
- data/lib/aws-sdk-connect/client_api.rb +10 -2
- data/lib/aws-sdk-connect/types.rb +272 -227
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +5 -2
- data/sig/types.rbs +6 -0
- metadata +1 -1
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -4467,7 +4467,8 @@ module Aws
|
|
|
4467
4467
|
}?
|
|
4468
4468
|
}?
|
|
4469
4469
|
}?
|
|
4470
|
-
}
|
|
4470
|
+
},
|
|
4471
|
+
?ring_timeout_in_seconds: ::Integer
|
|
4471
4472
|
) -> _StartOutboundVoiceContactResponseSuccess
|
|
4472
4473
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartOutboundVoiceContactResponseSuccess
|
|
4473
4474
|
|
|
@@ -4701,7 +4702,9 @@ module Aws
|
|
|
4701
4702
|
?description: ::String,
|
|
4702
4703
|
?allowed_ips: Array[::String],
|
|
4703
4704
|
?blocked_ips: Array[::String],
|
|
4704
|
-
?periodic_session_duration: ::Integer
|
|
4705
|
+
?periodic_session_duration: ::Integer,
|
|
4706
|
+
?session_inactivity_duration: ::Integer,
|
|
4707
|
+
?session_inactivity_handling_enabled: bool
|
|
4705
4708
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
4706
4709
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
4707
4710
|
|
data/sig/types.rbs
CHANGED
|
@@ -440,6 +440,8 @@ module Aws::Connect
|
|
|
440
440
|
attr_accessor last_modified_region: ::String
|
|
441
441
|
attr_accessor periodic_session_duration: ::Integer
|
|
442
442
|
attr_accessor max_session_duration: ::Integer
|
|
443
|
+
attr_accessor session_inactivity_duration: ::Integer
|
|
444
|
+
attr_accessor session_inactivity_handling_enabled: bool
|
|
443
445
|
SENSITIVE: []
|
|
444
446
|
end
|
|
445
447
|
|
|
@@ -687,6 +689,7 @@ module Aws::Connect
|
|
|
687
689
|
attr_accessor last_update_timestamp: ::Time
|
|
688
690
|
attr_accessor last_paused_timestamp: ::Time
|
|
689
691
|
attr_accessor last_resumed_timestamp: ::Time
|
|
692
|
+
attr_accessor ring_start_timestamp: ::Time
|
|
690
693
|
attr_accessor total_pause_count: ::Integer
|
|
691
694
|
attr_accessor total_pause_duration_in_seconds: ::Integer
|
|
692
695
|
attr_accessor scheduled_timestamp: ::Time
|
|
@@ -5837,6 +5840,7 @@ module Aws::Connect
|
|
|
5837
5840
|
attr_accessor campaign_id: ::String
|
|
5838
5841
|
attr_accessor traffic_type: ("GENERAL" | "CAMPAIGN")
|
|
5839
5842
|
attr_accessor outbound_strategy: Types::OutboundStrategy
|
|
5843
|
+
attr_accessor ring_timeout_in_seconds: ::Integer
|
|
5840
5844
|
SENSITIVE: [:name, :description]
|
|
5841
5845
|
end
|
|
5842
5846
|
|
|
@@ -6216,6 +6220,8 @@ module Aws::Connect
|
|
|
6216
6220
|
attr_accessor allowed_ips: ::Array[::String]
|
|
6217
6221
|
attr_accessor blocked_ips: ::Array[::String]
|
|
6218
6222
|
attr_accessor periodic_session_duration: ::Integer
|
|
6223
|
+
attr_accessor session_inactivity_duration: ::Integer
|
|
6224
|
+
attr_accessor session_inactivity_handling_enabled: bool
|
|
6219
6225
|
SENSITIVE: []
|
|
6220
6226
|
end
|
|
6221
6227
|
|