aws-sdk-chimesdkvoice 1.33.0 → 1.34.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6415ef3ba48d128de97b33326fd1bcb5696115c635356dfb4a91b0acf67ecd75
4
- data.tar.gz: 2270507050989dabea2b5354173c1bf996ada273021649ee333fd662eb105c10
3
+ metadata.gz: a710e8872c289f72a7a257aaf268d3108f4d1a01168d07d8e173256d23240816
4
+ data.tar.gz: f9afbaabc390c8c4e84d2fc131d9576b27f4c9291ef4c64dbf3301526b2fbeab
5
5
  SHA512:
6
- metadata.gz: 8efea6404cad970c3e5b02301a842807c9d1fb00c8e93f38db6d2dcc3327ef94f364c8a770e51e855fc218ee8181fd8356542bc85e06fdb07c4cabe9263748b7
7
- data.tar.gz: 77566f90c5431fea4604a1f7bc57af86eadebb462dcc050a6d0d2b50b180908809ac0aa3e4edf6aed906ad2c53069d7fd90750d75a45b401d9e6707b688c917c
6
+ metadata.gz: 8968d6b6c6d5deedce7d6c3c9f151be6fb4e799a5e92ca65f83a1d0146a639c83e8ff5d299f740142fb76ca6d8a4492a6cbe36f7c6d85559c06e76c31bf2166c
7
+ data.tar.gz: 57c341cdf6538fe0edbbd6305ac4fdc8a6c31917adcf691a288f07a87bca66740182e2162c979eb5671178ce8a6d268b73602c7a7198365e1c675ef0c6d7a056
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.0 (2024-12-02)
5
+ ------------------
6
+
7
+ * Feature - This release adds supports for enterprises to integrate Amazon Connect with other voice systems. It supports directly transferring voice calls and metadata without using the public telephone network. It also supports real-time and post-call analytics.
8
+
4
9
  1.33.0 (2024-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.34.0
@@ -951,6 +951,35 @@ module Aws::ChimeSDKVoice
951
951
  # @option params [Array<Types::Tag>] :tags
952
952
  # The tags assigned to the Voice Connector.
953
953
  #
954
+ # @option params [String] :integration_type
955
+ # The connectors for use with Amazon Connect.
956
+ #
957
+ # The following options are available:
958
+ #
959
+ # * `CONNECT_CALL_TRANSFER_CONNECTOR` - Enables enterprises to integrate
960
+ # Amazon Connect with other voice systems to directly transfer voice
961
+ # calls and metadata without using the public telephone network. They
962
+ # can use Amazon Connect telephony and Interactive Voice Response
963
+ # (IVR) with their existing voice systems to modernize the IVR
964
+ # experience of their existing contact center and their enterprise and
965
+ # branch voice systems. Additionally, enterprises migrating their
966
+ # contact center to Amazon Connect can start with Connect telephony
967
+ # and IVR for immediate modernization ahead of agent migration.
968
+ #
969
+ # * `CONNECT_ANALYTICS_CONNECTOR` - Enables enterprises to integrate
970
+ # Amazon Connect with other voice systems for real-time and post-call
971
+ # analytics. They can use Amazon Connect Contact Lens with their
972
+ # existing voice systems to provides call recordings, conversational
973
+ # analytics (including contact transcript, sensitive data redaction,
974
+ # content categorization, theme detection, sentiment analysis,
975
+ # real-time alerts, and post-contact summary), and agent performance
976
+ # evaluations (including evaluation forms, automated evaluation,
977
+ # supervisor review) with a rich user experience to display, search
978
+ # and filter customer interactions, and programmatic access to data
979
+ # streams and the data lake. Additionally, enterprises migrating their
980
+ # contact center to Amazon Connect can start with Contact Lens
981
+ # analytics and performance insights ahead of agent migration.
982
+ #
954
983
  # @return [Types::CreateVoiceConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
955
984
  #
956
985
  # * {Types::CreateVoiceConnectorResponse#voice_connector #voice_connector} => Types::VoiceConnector
@@ -967,6 +996,7 @@ module Aws::ChimeSDKVoice
967
996
  # value: "TagValue", # required
968
997
  # },
969
998
  # ],
999
+ # integration_type: "CONNECT_CALL_TRANSFER_CONNECTOR", # accepts CONNECT_CALL_TRANSFER_CONNECTOR, CONNECT_ANALYTICS_CONNECTOR
970
1000
  # })
971
1001
  #
972
1002
  # @example Response structure
@@ -979,6 +1009,7 @@ module Aws::ChimeSDKVoice
979
1009
  # resp.voice_connector.created_timestamp #=> Time
980
1010
  # resp.voice_connector.updated_timestamp #=> Time
981
1011
  # resp.voice_connector.voice_connector_arn #=> String
1012
+ # resp.voice_connector.integration_type #=> String, one of "CONNECT_CALL_TRANSFER_CONNECTOR", "CONNECT_ANALYTICS_CONNECTOR"
982
1013
  #
983
1014
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceConnector AWS API Documentation
984
1015
  #
@@ -1306,6 +1337,29 @@ module Aws::ChimeSDKVoice
1306
1337
  req.send_request(options)
1307
1338
  end
1308
1339
 
1340
+ # Deletes the external systems configuration for a Voice Connector.
1341
+ #
1342
+ # @option params [required, String] :voice_connector_id
1343
+ # The ID of the Voice Connector for which to delete the external system
1344
+ # configuration.
1345
+ #
1346
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1347
+ #
1348
+ # @example Request syntax with placeholder values
1349
+ #
1350
+ # resp = client.delete_voice_connector_external_systems_configuration({
1351
+ # voice_connector_id: "NonEmptyString", # required
1352
+ # })
1353
+ #
1354
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceConnectorExternalSystemsConfiguration AWS API Documentation
1355
+ #
1356
+ # @overload delete_voice_connector_external_systems_configuration(params = {})
1357
+ # @param [Hash] params ({})
1358
+ def delete_voice_connector_external_systems_configuration(params = {}, options = {})
1359
+ req = build_request(:delete_voice_connector_external_systems_configuration, params)
1360
+ req.send_request(options)
1361
+ end
1362
+
1309
1363
  # Deletes an Amazon Chime SDK Voice Connector group. Any
1310
1364
  # `VoiceConnectorItems` and phone numbers associated with the group must
1311
1365
  # be removed before it can be deleted.
@@ -1969,6 +2023,7 @@ module Aws::ChimeSDKVoice
1969
2023
  # resp.voice_connector.created_timestamp #=> Time
1970
2024
  # resp.voice_connector.updated_timestamp #=> Time
1971
2025
  # resp.voice_connector.voice_connector_arn #=> String
2026
+ # resp.voice_connector.integration_type #=> String, one of "CONNECT_CALL_TRANSFER_CONNECTOR", "CONNECT_ANALYTICS_CONNECTOR"
1972
2027
  #
1973
2028
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnector AWS API Documentation
1974
2029
  #
@@ -2011,6 +2066,39 @@ module Aws::ChimeSDKVoice
2011
2066
  req.send_request(options)
2012
2067
  end
2013
2068
 
2069
+ # Gets information about an external systems configuration for a Voice
2070
+ # Connector.
2071
+ #
2072
+ # @option params [required, String] :voice_connector_id
2073
+ # The ID of the Voice Connector for which to return information about
2074
+ # the external system configuration.
2075
+ #
2076
+ # @return [Types::GetVoiceConnectorExternalSystemsConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2077
+ #
2078
+ # * {Types::GetVoiceConnectorExternalSystemsConfigurationResponse#external_systems_configuration #external_systems_configuration} => Types::ExternalSystemsConfiguration
2079
+ #
2080
+ # @example Request syntax with placeholder values
2081
+ #
2082
+ # resp = client.get_voice_connector_external_systems_configuration({
2083
+ # voice_connector_id: "NonEmptyString", # required
2084
+ # })
2085
+ #
2086
+ # @example Response structure
2087
+ #
2088
+ # resp.external_systems_configuration.session_border_controller_types #=> Array
2089
+ # resp.external_systems_configuration.session_border_controller_types[0] #=> String, one of "RIBBON_SBC", "ORACLE_ACME_PACKET_SBC", "AVAYA_SBCE", "CISCO_UNIFIED_BORDER_ELEMENT", "AUDIOCODES_MEDIANT_SBC"
2090
+ # resp.external_systems_configuration.contact_center_system_types #=> Array
2091
+ # resp.external_systems_configuration.contact_center_system_types[0] #=> String, one of "GENESYS_ENGAGE_ON_PREMISES", "AVAYA_AURA_CALL_CENTER_ELITE", "AVAYA_AURA_CONTACT_CENTER", "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE"
2092
+ #
2093
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorExternalSystemsConfiguration AWS API Documentation
2094
+ #
2095
+ # @overload get_voice_connector_external_systems_configuration(params = {})
2096
+ # @param [Hash] params ({})
2097
+ def get_voice_connector_external_systems_configuration(params = {}, options = {})
2098
+ req = build_request(:get_voice_connector_external_systems_configuration, params)
2099
+ req.send_request(options)
2100
+ end
2101
+
2014
2102
  # Retrieves details for the specified Amazon Chime SDK Voice Connector
2015
2103
  # group, such as timestamps,name, and associated `VoiceConnectorItems`.
2016
2104
  #
@@ -2833,6 +2921,7 @@ module Aws::ChimeSDKVoice
2833
2921
  # resp.voice_connectors[0].created_timestamp #=> Time
2834
2922
  # resp.voice_connectors[0].updated_timestamp #=> Time
2835
2923
  # resp.voice_connectors[0].voice_connector_arn #=> String
2924
+ # resp.voice_connectors[0].integration_type #=> String, one of "CONNECT_CALL_TRANSFER_CONNECTOR", "CONNECT_ANALYTICS_CONNECTOR"
2836
2925
  # resp.next_token #=> String
2837
2926
  #
2838
2927
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListVoiceConnectors AWS API Documentation
@@ -3056,6 +3145,46 @@ module Aws::ChimeSDKVoice
3056
3145
  req.send_request(options)
3057
3146
  end
3058
3147
 
3148
+ # Adds an external systems configuration to a Voice Connector.
3149
+ #
3150
+ # @option params [required, String] :voice_connector_id
3151
+ # The ID of the Voice Connector for which to add the external system
3152
+ # configuration.
3153
+ #
3154
+ # @option params [Array<String>] :session_border_controller_types
3155
+ # The session border controllers to use.
3156
+ #
3157
+ # @option params [Array<String>] :contact_center_system_types
3158
+ # The contact center system to use.
3159
+ #
3160
+ # @return [Types::PutVoiceConnectorExternalSystemsConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3161
+ #
3162
+ # * {Types::PutVoiceConnectorExternalSystemsConfigurationResponse#external_systems_configuration #external_systems_configuration} => Types::ExternalSystemsConfiguration
3163
+ #
3164
+ # @example Request syntax with placeholder values
3165
+ #
3166
+ # resp = client.put_voice_connector_external_systems_configuration({
3167
+ # voice_connector_id: "NonEmptyString128", # required
3168
+ # session_border_controller_types: ["RIBBON_SBC"], # accepts RIBBON_SBC, ORACLE_ACME_PACKET_SBC, AVAYA_SBCE, CISCO_UNIFIED_BORDER_ELEMENT, AUDIOCODES_MEDIANT_SBC
3169
+ # contact_center_system_types: ["GENESYS_ENGAGE_ON_PREMISES"], # accepts GENESYS_ENGAGE_ON_PREMISES, AVAYA_AURA_CALL_CENTER_ELITE, AVAYA_AURA_CONTACT_CENTER, CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE
3170
+ # })
3171
+ #
3172
+ # @example Response structure
3173
+ #
3174
+ # resp.external_systems_configuration.session_border_controller_types #=> Array
3175
+ # resp.external_systems_configuration.session_border_controller_types[0] #=> String, one of "RIBBON_SBC", "ORACLE_ACME_PACKET_SBC", "AVAYA_SBCE", "CISCO_UNIFIED_BORDER_ELEMENT", "AUDIOCODES_MEDIANT_SBC"
3176
+ # resp.external_systems_configuration.contact_center_system_types #=> Array
3177
+ # resp.external_systems_configuration.contact_center_system_types[0] #=> String, one of "GENESYS_ENGAGE_ON_PREMISES", "AVAYA_AURA_CALL_CENTER_ELITE", "AVAYA_AURA_CONTACT_CENTER", "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE"
3178
+ #
3179
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorExternalSystemsConfiguration AWS API Documentation
3180
+ #
3181
+ # @overload put_voice_connector_external_systems_configuration(params = {})
3182
+ # @param [Hash] params ({})
3183
+ def put_voice_connector_external_systems_configuration(params = {}, options = {})
3184
+ req = build_request(:put_voice_connector_external_systems_configuration, params)
3185
+ req.send_request(options)
3186
+ end
3187
+
3059
3188
  # Updates a Voice Connector's logging configuration.
3060
3189
  #
3061
3190
  # @option params [required, String] :voice_connector_id
@@ -4025,6 +4154,7 @@ module Aws::ChimeSDKVoice
4025
4154
  # resp.voice_connector.created_timestamp #=> Time
4026
4155
  # resp.voice_connector.updated_timestamp #=> Time
4027
4156
  # resp.voice_connector.voice_connector_arn #=> String
4157
+ # resp.voice_connector.integration_type #=> String, one of "CONNECT_CALL_TRANSFER_CONNECTOR", "CONNECT_ANALYTICS_CONNECTOR"
4028
4158
  #
4029
4159
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateVoiceConnector AWS API Documentation
4030
4160
  #
@@ -4279,7 +4409,7 @@ module Aws::ChimeSDKVoice
4279
4409
  tracer: tracer
4280
4410
  )
4281
4411
  context[:gem_name] = 'aws-sdk-chimesdkvoice'
4282
- context[:gem_version] = '1.33.0'
4412
+ context[:gem_version] = '1.34.0'
4283
4413
  Seahorse::Client::Request.new(handlers, context)
4284
4414
  end
4285
4415
 
@@ -45,6 +45,8 @@ module Aws::ChimeSDKVoice
45
45
  ClientRequestId = Shapes::StringShape.new(name: 'ClientRequestId')
46
46
  ConfidenceScore = Shapes::FloatShape.new(name: 'ConfidenceScore')
47
47
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
48
+ ContactCenterSystemType = Shapes::StringShape.new(name: 'ContactCenterSystemType')
49
+ ContactCenterSystemTypeList = Shapes::ListShape.new(name: 'ContactCenterSystemTypeList')
48
50
  Country = Shapes::StringShape.new(name: 'Country')
49
51
  CountryList = Shapes::ListShape.new(name: 'CountryList')
50
52
  CpsLimit = Shapes::IntegerShape.new(name: 'CpsLimit')
@@ -76,6 +78,7 @@ module Aws::ChimeSDKVoice
76
78
  DeleteSipMediaApplicationRequest = Shapes::StructureShape.new(name: 'DeleteSipMediaApplicationRequest')
77
79
  DeleteSipRuleRequest = Shapes::StructureShape.new(name: 'DeleteSipRuleRequest')
78
80
  DeleteVoiceConnectorEmergencyCallingConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteVoiceConnectorEmergencyCallingConfigurationRequest')
81
+ DeleteVoiceConnectorExternalSystemsConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteVoiceConnectorExternalSystemsConfigurationRequest')
79
82
  DeleteVoiceConnectorGroupRequest = Shapes::StructureShape.new(name: 'DeleteVoiceConnectorGroupRequest')
80
83
  DeleteVoiceConnectorOriginationRequest = Shapes::StructureShape.new(name: 'DeleteVoiceConnectorOriginationRequest')
81
84
  DeleteVoiceConnectorProxyRequest = Shapes::StructureShape.new(name: 'DeleteVoiceConnectorProxyRequest')
@@ -93,6 +96,7 @@ module Aws::ChimeSDKVoice
93
96
  E164PhoneNumberList = Shapes::ListShape.new(name: 'E164PhoneNumberList')
94
97
  EmergencyCallingConfiguration = Shapes::StructureShape.new(name: 'EmergencyCallingConfiguration')
95
98
  ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
99
+ ExternalSystemsConfiguration = Shapes::StructureShape.new(name: 'ExternalSystemsConfiguration')
96
100
  ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
97
101
  FunctionArn = Shapes::StringShape.new(name: 'FunctionArn')
98
102
  GeoMatchLevel = Shapes::StringShape.new(name: 'GeoMatchLevel')
@@ -117,6 +121,8 @@ module Aws::ChimeSDKVoice
117
121
  GetSpeakerSearchTaskResponse = Shapes::StructureShape.new(name: 'GetSpeakerSearchTaskResponse')
118
122
  GetVoiceConnectorEmergencyCallingConfigurationRequest = Shapes::StructureShape.new(name: 'GetVoiceConnectorEmergencyCallingConfigurationRequest')
119
123
  GetVoiceConnectorEmergencyCallingConfigurationResponse = Shapes::StructureShape.new(name: 'GetVoiceConnectorEmergencyCallingConfigurationResponse')
124
+ GetVoiceConnectorExternalSystemsConfigurationRequest = Shapes::StructureShape.new(name: 'GetVoiceConnectorExternalSystemsConfigurationRequest')
125
+ GetVoiceConnectorExternalSystemsConfigurationResponse = Shapes::StructureShape.new(name: 'GetVoiceConnectorExternalSystemsConfigurationResponse')
120
126
  GetVoiceConnectorGroupRequest = Shapes::StructureShape.new(name: 'GetVoiceConnectorGroupRequest')
121
127
  GetVoiceConnectorGroupResponse = Shapes::StructureShape.new(name: 'GetVoiceConnectorGroupResponse')
122
128
  GetVoiceConnectorLoggingConfigurationRequest = Shapes::StructureShape.new(name: 'GetVoiceConnectorLoggingConfigurationRequest')
@@ -225,6 +231,8 @@ module Aws::ChimeSDKVoice
225
231
  PutSipMediaApplicationLoggingConfigurationResponse = Shapes::StructureShape.new(name: 'PutSipMediaApplicationLoggingConfigurationResponse')
226
232
  PutVoiceConnectorEmergencyCallingConfigurationRequest = Shapes::StructureShape.new(name: 'PutVoiceConnectorEmergencyCallingConfigurationRequest')
227
233
  PutVoiceConnectorEmergencyCallingConfigurationResponse = Shapes::StructureShape.new(name: 'PutVoiceConnectorEmergencyCallingConfigurationResponse')
234
+ PutVoiceConnectorExternalSystemsConfigurationRequest = Shapes::StructureShape.new(name: 'PutVoiceConnectorExternalSystemsConfigurationRequest')
235
+ PutVoiceConnectorExternalSystemsConfigurationResponse = Shapes::StructureShape.new(name: 'PutVoiceConnectorExternalSystemsConfigurationResponse')
228
236
  PutVoiceConnectorLoggingConfigurationRequest = Shapes::StructureShape.new(name: 'PutVoiceConnectorLoggingConfigurationRequest')
229
237
  PutVoiceConnectorLoggingConfigurationResponse = Shapes::StructureShape.new(name: 'PutVoiceConnectorLoggingConfigurationResponse')
230
238
  PutVoiceConnectorOriginationRequest = Shapes::StructureShape.new(name: 'PutVoiceConnectorOriginationRequest')
@@ -250,6 +258,8 @@ module Aws::ChimeSDKVoice
250
258
  ServerSideEncryptionConfiguration = Shapes::StructureShape.new(name: 'ServerSideEncryptionConfiguration')
251
259
  ServiceFailureException = Shapes::StructureShape.new(name: 'ServiceFailureException')
252
260
  ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
261
+ SessionBorderControllerType = Shapes::StringShape.new(name: 'SessionBorderControllerType')
262
+ SessionBorderControllerTypeList = Shapes::ListShape.new(name: 'SessionBorderControllerTypeList')
253
263
  SipApplicationPriority = Shapes::IntegerShape.new(name: 'SipApplicationPriority')
254
264
  SipHeadersMap = Shapes::MapShape.new(name: 'SipHeadersMap')
255
265
  SipMediaApplication = Shapes::StructureShape.new(name: 'SipMediaApplication')
@@ -326,6 +336,7 @@ module Aws::ChimeSDKVoice
326
336
  VoiceConnectorGroup = Shapes::StructureShape.new(name: 'VoiceConnectorGroup')
327
337
  VoiceConnectorGroupList = Shapes::ListShape.new(name: 'VoiceConnectorGroupList')
328
338
  VoiceConnectorGroupName = Shapes::StringShape.new(name: 'VoiceConnectorGroupName')
339
+ VoiceConnectorIntegrationType = Shapes::StringShape.new(name: 'VoiceConnectorIntegrationType')
329
340
  VoiceConnectorItem = Shapes::StructureShape.new(name: 'VoiceConnectorItem')
330
341
  VoiceConnectorItemList = Shapes::ListShape.new(name: 'VoiceConnectorItemList')
331
342
  VoiceConnectorItemPriority = Shapes::IntegerShape.new(name: 'VoiceConnectorItemPriority')
@@ -410,6 +421,8 @@ module Aws::ChimeSDKVoice
410
421
 
411
422
  ConflictException.struct_class = Types::ConflictException
412
423
 
424
+ ContactCenterSystemTypeList.member = Shapes::ShapeRef.new(shape: ContactCenterSystemType)
425
+
413
426
  CountryList.member = Shapes::ShapeRef.new(shape: Country)
414
427
 
415
428
  CreatePhoneNumberOrderRequest.add_member(:product_type, Shapes::ShapeRef.new(shape: PhoneNumberProductType, required: true, location_name: "ProductType"))
@@ -473,6 +486,7 @@ module Aws::ChimeSDKVoice
473
486
  CreateVoiceConnectorRequest.add_member(:aws_region, Shapes::ShapeRef.new(shape: VoiceConnectorAwsRegion, location_name: "AwsRegion"))
474
487
  CreateVoiceConnectorRequest.add_member(:require_encryption, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "RequireEncryption"))
475
488
  CreateVoiceConnectorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
489
+ CreateVoiceConnectorRequest.add_member(:integration_type, Shapes::ShapeRef.new(shape: VoiceConnectorIntegrationType, location_name: "IntegrationType"))
476
490
  CreateVoiceConnectorRequest.struct_class = Types::CreateVoiceConnectorRequest
477
491
 
478
492
  CreateVoiceConnectorResponse.add_member(:voice_connector, Shapes::ShapeRef.new(shape: VoiceConnector, location_name: "VoiceConnector"))
@@ -523,6 +537,9 @@ module Aws::ChimeSDKVoice
523
537
  DeleteVoiceConnectorEmergencyCallingConfigurationRequest.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorId"))
524
538
  DeleteVoiceConnectorEmergencyCallingConfigurationRequest.struct_class = Types::DeleteVoiceConnectorEmergencyCallingConfigurationRequest
525
539
 
540
+ DeleteVoiceConnectorExternalSystemsConfigurationRequest.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorId"))
541
+ DeleteVoiceConnectorExternalSystemsConfigurationRequest.struct_class = Types::DeleteVoiceConnectorExternalSystemsConfigurationRequest
542
+
526
543
  DeleteVoiceConnectorGroupRequest.add_member(:voice_connector_group_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorGroupId"))
527
544
  DeleteVoiceConnectorGroupRequest.struct_class = Types::DeleteVoiceConnectorGroupRequest
528
545
 
@@ -570,6 +587,10 @@ module Aws::ChimeSDKVoice
570
587
  EmergencyCallingConfiguration.add_member(:dnis, Shapes::ShapeRef.new(shape: DNISEmergencyCallingConfigurationList, location_name: "DNIS"))
571
588
  EmergencyCallingConfiguration.struct_class = Types::EmergencyCallingConfiguration
572
589
 
590
+ ExternalSystemsConfiguration.add_member(:session_border_controller_types, Shapes::ShapeRef.new(shape: SessionBorderControllerTypeList, location_name: "SessionBorderControllerTypes"))
591
+ ExternalSystemsConfiguration.add_member(:contact_center_system_types, Shapes::ShapeRef.new(shape: ContactCenterSystemTypeList, location_name: "ContactCenterSystemTypes"))
592
+ ExternalSystemsConfiguration.struct_class = Types::ExternalSystemsConfiguration
593
+
573
594
  ForbiddenException.struct_class = Types::ForbiddenException
574
595
 
575
596
  GeoMatchParams.add_member(:country, Shapes::ShapeRef.new(shape: Country, required: true, location_name: "Country"))
@@ -639,6 +660,12 @@ module Aws::ChimeSDKVoice
639
660
  GetVoiceConnectorEmergencyCallingConfigurationResponse.add_member(:emergency_calling_configuration, Shapes::ShapeRef.new(shape: EmergencyCallingConfiguration, location_name: "EmergencyCallingConfiguration"))
640
661
  GetVoiceConnectorEmergencyCallingConfigurationResponse.struct_class = Types::GetVoiceConnectorEmergencyCallingConfigurationResponse
641
662
 
663
+ GetVoiceConnectorExternalSystemsConfigurationRequest.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorId"))
664
+ GetVoiceConnectorExternalSystemsConfigurationRequest.struct_class = Types::GetVoiceConnectorExternalSystemsConfigurationRequest
665
+
666
+ GetVoiceConnectorExternalSystemsConfigurationResponse.add_member(:external_systems_configuration, Shapes::ShapeRef.new(shape: ExternalSystemsConfiguration, location_name: "ExternalSystemsConfiguration"))
667
+ GetVoiceConnectorExternalSystemsConfigurationResponse.struct_class = Types::GetVoiceConnectorExternalSystemsConfigurationResponse
668
+
642
669
  GetVoiceConnectorGroupRequest.add_member(:voice_connector_group_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorGroupId"))
643
670
  GetVoiceConnectorGroupRequest.struct_class = Types::GetVoiceConnectorGroupRequest
644
671
 
@@ -953,6 +980,14 @@ module Aws::ChimeSDKVoice
953
980
  PutVoiceConnectorEmergencyCallingConfigurationResponse.add_member(:emergency_calling_configuration, Shapes::ShapeRef.new(shape: EmergencyCallingConfiguration, location_name: "EmergencyCallingConfiguration"))
954
981
  PutVoiceConnectorEmergencyCallingConfigurationResponse.struct_class = Types::PutVoiceConnectorEmergencyCallingConfigurationResponse
955
982
 
983
+ PutVoiceConnectorExternalSystemsConfigurationRequest.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString128, required: true, location: "uri", location_name: "voiceConnectorId"))
984
+ PutVoiceConnectorExternalSystemsConfigurationRequest.add_member(:session_border_controller_types, Shapes::ShapeRef.new(shape: SessionBorderControllerTypeList, location_name: "SessionBorderControllerTypes"))
985
+ PutVoiceConnectorExternalSystemsConfigurationRequest.add_member(:contact_center_system_types, Shapes::ShapeRef.new(shape: ContactCenterSystemTypeList, location_name: "ContactCenterSystemTypes"))
986
+ PutVoiceConnectorExternalSystemsConfigurationRequest.struct_class = Types::PutVoiceConnectorExternalSystemsConfigurationRequest
987
+
988
+ PutVoiceConnectorExternalSystemsConfigurationResponse.add_member(:external_systems_configuration, Shapes::ShapeRef.new(shape: ExternalSystemsConfiguration, location_name: "ExternalSystemsConfiguration"))
989
+ PutVoiceConnectorExternalSystemsConfigurationResponse.struct_class = Types::PutVoiceConnectorExternalSystemsConfigurationResponse
990
+
956
991
  PutVoiceConnectorLoggingConfigurationRequest.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorId"))
957
992
  PutVoiceConnectorLoggingConfigurationRequest.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: LoggingConfiguration, required: true, location_name: "LoggingConfiguration"))
958
993
  PutVoiceConnectorLoggingConfigurationRequest.struct_class = Types::PutVoiceConnectorLoggingConfigurationRequest
@@ -1032,6 +1067,8 @@ module Aws::ChimeSDKVoice
1032
1067
 
1033
1068
  ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
1034
1069
 
1070
+ SessionBorderControllerTypeList.member = Shapes::ShapeRef.new(shape: SessionBorderControllerType)
1071
+
1035
1072
  SipHeadersMap.key = Shapes::ShapeRef.new(shape: SensitiveString)
1036
1073
  SipHeadersMap.value = Shapes::ShapeRef.new(shape: SensitiveString)
1037
1074
 
@@ -1284,6 +1321,7 @@ module Aws::ChimeSDKVoice
1284
1321
  VoiceConnector.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
1285
1322
  VoiceConnector.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
1286
1323
  VoiceConnector.add_member(:voice_connector_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "VoiceConnectorArn"))
1324
+ VoiceConnector.add_member(:integration_type, Shapes::ShapeRef.new(shape: VoiceConnectorIntegrationType, location_name: "IntegrationType"))
1287
1325
  VoiceConnector.struct_class = Types::VoiceConnector
1288
1326
 
1289
1327
  VoiceConnectorAwsRegionList.member = Shapes::ShapeRef.new(shape: VoiceConnectorAwsRegion)
@@ -1678,6 +1716,21 @@ module Aws::ChimeSDKVoice
1678
1716
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
1679
1717
  end)
1680
1718
 
1719
+ api.add_operation(:delete_voice_connector_external_systems_configuration, Seahorse::Model::Operation.new.tap do |o|
1720
+ o.name = "DeleteVoiceConnectorExternalSystemsConfiguration"
1721
+ o.http_method = "DELETE"
1722
+ o.http_request_uri = "/voice-connectors/{voiceConnectorId}/external-systems-configuration"
1723
+ o.input = Shapes::ShapeRef.new(shape: DeleteVoiceConnectorExternalSystemsConfigurationRequest)
1724
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
1725
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
1726
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1727
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
1728
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1729
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
1730
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1731
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
1732
+ end)
1733
+
1681
1734
  api.add_operation(:delete_voice_connector_group, Seahorse::Model::Operation.new.tap do |o|
1682
1735
  o.name = "DeleteVoiceConnectorGroup"
1683
1736
  o.http_method = "DELETE"
@@ -2014,6 +2067,21 @@ module Aws::ChimeSDKVoice
2014
2067
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
2015
2068
  end)
2016
2069
 
2070
+ api.add_operation(:get_voice_connector_external_systems_configuration, Seahorse::Model::Operation.new.tap do |o|
2071
+ o.name = "GetVoiceConnectorExternalSystemsConfiguration"
2072
+ o.http_method = "GET"
2073
+ o.http_request_uri = "/voice-connectors/{voiceConnectorId}/external-systems-configuration"
2074
+ o.input = Shapes::ShapeRef.new(shape: GetVoiceConnectorExternalSystemsConfigurationRequest)
2075
+ o.output = Shapes::ShapeRef.new(shape: GetVoiceConnectorExternalSystemsConfigurationResponse)
2076
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
2077
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
2078
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
2079
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
2080
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
2081
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
2082
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
2083
+ end)
2084
+
2017
2085
  api.add_operation(:get_voice_connector_group, Seahorse::Model::Operation.new.tap do |o|
2018
2086
  o.name = "GetVoiceConnectorGroup"
2019
2087
  o.http_method = "GET"
@@ -2456,6 +2524,22 @@ module Aws::ChimeSDKVoice
2456
2524
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
2457
2525
  end)
2458
2526
 
2527
+ api.add_operation(:put_voice_connector_external_systems_configuration, Seahorse::Model::Operation.new.tap do |o|
2528
+ o.name = "PutVoiceConnectorExternalSystemsConfiguration"
2529
+ o.http_method = "PUT"
2530
+ o.http_request_uri = "/voice-connectors/{voiceConnectorId}/external-systems-configuration"
2531
+ o.input = Shapes::ShapeRef.new(shape: PutVoiceConnectorExternalSystemsConfigurationRequest)
2532
+ o.output = Shapes::ShapeRef.new(shape: PutVoiceConnectorExternalSystemsConfigurationResponse)
2533
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
2534
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
2535
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2536
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
2537
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
2538
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
2539
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
2540
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
2541
+ end)
2542
+
2459
2543
  api.add_operation(:put_voice_connector_logging_configuration, Seahorse::Model::Operation.new.tap do |o|
2460
2544
  o.name = "PutVoiceConnectorLoggingConfiguration"
2461
2545
  o.http_method = "PUT"
@@ -566,13 +566,46 @@ module Aws::ChimeSDKVoice
566
566
  # The tags assigned to the Voice Connector.
567
567
  # @return [Array<Types::Tag>]
568
568
  #
569
+ # @!attribute [rw] integration_type
570
+ # The connectors for use with Amazon Connect.
571
+ #
572
+ # The following options are available:
573
+ #
574
+ # * `CONNECT_CALL_TRANSFER_CONNECTOR` - Enables enterprises to
575
+ # integrate Amazon Connect with other voice systems to directly
576
+ # transfer voice calls and metadata without using the public
577
+ # telephone network. They can use Amazon Connect telephony and
578
+ # Interactive Voice Response (IVR) with their existing voice systems
579
+ # to modernize the IVR experience of their existing contact center
580
+ # and their enterprise and branch voice systems. Additionally,
581
+ # enterprises migrating their contact center to Amazon Connect can
582
+ # start with Connect telephony and IVR for immediate modernization
583
+ # ahead of agent migration.
584
+ #
585
+ # * `CONNECT_ANALYTICS_CONNECTOR` - Enables enterprises to integrate
586
+ # Amazon Connect with other voice systems for real-time and
587
+ # post-call analytics. They can use Amazon Connect Contact Lens with
588
+ # their existing voice systems to provides call recordings,
589
+ # conversational analytics (including contact transcript, sensitive
590
+ # data redaction, content categorization, theme detection, sentiment
591
+ # analysis, real-time alerts, and post-contact summary), and agent
592
+ # performance evaluations (including evaluation forms, automated
593
+ # evaluation, supervisor review) with a rich user experience to
594
+ # display, search and filter customer interactions, and programmatic
595
+ # access to data streams and the data lake. Additionally,
596
+ # enterprises migrating their contact center to Amazon Connect can
597
+ # start with Contact Lens analytics and performance insights ahead
598
+ # of agent migration.
599
+ # @return [String]
600
+ #
569
601
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceConnectorRequest AWS API Documentation
570
602
  #
571
603
  class CreateVoiceConnectorRequest < Struct.new(
572
604
  :name,
573
605
  :aws_region,
574
606
  :require_encryption,
575
- :tags)
607
+ :tags,
608
+ :integration_type)
576
609
  SENSITIVE = []
577
610
  include Aws::Structure
578
611
  end
@@ -774,6 +807,19 @@ module Aws::ChimeSDKVoice
774
807
  include Aws::Structure
775
808
  end
776
809
 
810
+ # @!attribute [rw] voice_connector_id
811
+ # The ID of the Voice Connector for which to delete the external
812
+ # system configuration.
813
+ # @return [String]
814
+ #
815
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceConnectorExternalSystemsConfigurationRequest AWS API Documentation
816
+ #
817
+ class DeleteVoiceConnectorExternalSystemsConfigurationRequest < Struct.new(
818
+ :voice_connector_id)
819
+ SENSITIVE = []
820
+ include Aws::Structure
821
+ end
822
+
777
823
  # @!attribute [rw] voice_connector_group_id
778
824
  # The Voice Connector Group ID.
779
825
  # @return [String]
@@ -966,6 +1012,26 @@ module Aws::ChimeSDKVoice
966
1012
  include Aws::Structure
967
1013
  end
968
1014
 
1015
+ # Contains information about an external systems configuration for a
1016
+ # Voice Connector.
1017
+ #
1018
+ # @!attribute [rw] session_border_controller_types
1019
+ # The session border controllers.
1020
+ # @return [Array<String>]
1021
+ #
1022
+ # @!attribute [rw] contact_center_system_types
1023
+ # The contact center system.
1024
+ # @return [Array<String>]
1025
+ #
1026
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ExternalSystemsConfiguration AWS API Documentation
1027
+ #
1028
+ class ExternalSystemsConfiguration < Struct.new(
1029
+ :session_border_controller_types,
1030
+ :contact_center_system_types)
1031
+ SENSITIVE = []
1032
+ include Aws::Structure
1033
+ end
1034
+
969
1035
  # The client is permanently forbidden from making the request.
970
1036
  #
971
1037
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ForbiddenException AWS API Documentation
@@ -1247,6 +1313,32 @@ module Aws::ChimeSDKVoice
1247
1313
  include Aws::Structure
1248
1314
  end
1249
1315
 
1316
+ # @!attribute [rw] voice_connector_id
1317
+ # The ID of the Voice Connector for which to return information about
1318
+ # the external system configuration.
1319
+ # @return [String]
1320
+ #
1321
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorExternalSystemsConfigurationRequest AWS API Documentation
1322
+ #
1323
+ class GetVoiceConnectorExternalSystemsConfigurationRequest < Struct.new(
1324
+ :voice_connector_id)
1325
+ SENSITIVE = []
1326
+ include Aws::Structure
1327
+ end
1328
+
1329
+ # @!attribute [rw] external_systems_configuration
1330
+ # An object that contains information about an external systems
1331
+ # configuration for a Voice Connector.
1332
+ # @return [Types::ExternalSystemsConfiguration]
1333
+ #
1334
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorExternalSystemsConfigurationResponse AWS API Documentation
1335
+ #
1336
+ class GetVoiceConnectorExternalSystemsConfigurationResponse < Struct.new(
1337
+ :external_systems_configuration)
1338
+ SENSITIVE = []
1339
+ include Aws::Structure
1340
+ end
1341
+
1250
1342
  # @!attribute [rw] voice_connector_group_id
1251
1343
  # The Voice Connector group ID.
1252
1344
  # @return [String]
@@ -2558,6 +2650,42 @@ module Aws::ChimeSDKVoice
2558
2650
  include Aws::Structure
2559
2651
  end
2560
2652
 
2653
+ # @!attribute [rw] voice_connector_id
2654
+ # The ID of the Voice Connector for which to add the external system
2655
+ # configuration.
2656
+ # @return [String]
2657
+ #
2658
+ # @!attribute [rw] session_border_controller_types
2659
+ # The session border controllers to use.
2660
+ # @return [Array<String>]
2661
+ #
2662
+ # @!attribute [rw] contact_center_system_types
2663
+ # The contact center system to use.
2664
+ # @return [Array<String>]
2665
+ #
2666
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorExternalSystemsConfigurationRequest AWS API Documentation
2667
+ #
2668
+ class PutVoiceConnectorExternalSystemsConfigurationRequest < Struct.new(
2669
+ :voice_connector_id,
2670
+ :session_border_controller_types,
2671
+ :contact_center_system_types)
2672
+ SENSITIVE = []
2673
+ include Aws::Structure
2674
+ end
2675
+
2676
+ # @!attribute [rw] external_systems_configuration
2677
+ # An object that contains information about an external systems
2678
+ # configuration for a Voice Connector.
2679
+ # @return [Types::ExternalSystemsConfiguration]
2680
+ #
2681
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorExternalSystemsConfigurationResponse AWS API Documentation
2682
+ #
2683
+ class PutVoiceConnectorExternalSystemsConfigurationResponse < Struct.new(
2684
+ :external_systems_configuration)
2685
+ SENSITIVE = []
2686
+ include Aws::Structure
2687
+ end
2688
+
2561
2689
  # @!attribute [rw] voice_connector_id
2562
2690
  # The Voice Connector ID.
2563
2691
  # @return [String]
@@ -3947,6 +4075,10 @@ module Aws::ChimeSDKVoice
3947
4075
  # The ARN of the Voice Connector.
3948
4076
  # @return [String]
3949
4077
  #
4078
+ # @!attribute [rw] integration_type
4079
+ # The connectors for use with Amazon Connect.
4080
+ # @return [String]
4081
+ #
3950
4082
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/VoiceConnector AWS API Documentation
3951
4083
  #
3952
4084
  class VoiceConnector < Struct.new(
@@ -3957,7 +4089,8 @@ module Aws::ChimeSDKVoice
3957
4089
  :require_encryption,
3958
4090
  :created_timestamp,
3959
4091
  :updated_timestamp,
3960
- :voice_connector_arn)
4092
+ :voice_connector_arn,
4093
+ :integration_type)
3961
4094
  SENSITIVE = []
3962
4095
  include Aws::Structure
3963
4096
  end
@@ -54,7 +54,7 @@ module Aws::ChimeSDKVoice
54
54
  autoload :EndpointProvider, 'aws-sdk-chimesdkvoice/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-chimesdkvoice/endpoints'
56
56
 
57
- GEM_VERSION = '1.33.0'
57
+ GEM_VERSION = '1.34.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -228,7 +228,8 @@ module Aws
228
228
  key: ::String,
229
229
  value: ::String
230
230
  },
231
- ]
231
+ ],
232
+ ?integration_type: ("CONNECT_CALL_TRANSFER_CONNECTOR" | "CONNECT_ANALYTICS_CONNECTOR")
232
233
  ) -> _CreateVoiceConnectorResponseSuccess
233
234
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVoiceConnectorResponseSuccess
234
235
 
@@ -316,6 +317,12 @@ module Aws
316
317
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
317
318
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
318
319
 
320
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_voice_connector_external_systems_configuration-instance_method
321
+ def delete_voice_connector_external_systems_configuration: (
322
+ voice_connector_id: ::String
323
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
324
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
325
+
319
326
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_voice_connector_group-instance_method
320
327
  def delete_voice_connector_group: (
321
328
  voice_connector_group_id: ::String
@@ -506,6 +513,16 @@ module Aws
506
513
  ) -> _GetVoiceConnectorEmergencyCallingConfigurationResponseSuccess
507
514
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceConnectorEmergencyCallingConfigurationResponseSuccess
508
515
 
516
+ interface _GetVoiceConnectorExternalSystemsConfigurationResponseSuccess
517
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceConnectorExternalSystemsConfigurationResponse]
518
+ def external_systems_configuration: () -> Types::ExternalSystemsConfiguration
519
+ end
520
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_voice_connector_external_systems_configuration-instance_method
521
+ def get_voice_connector_external_systems_configuration: (
522
+ voice_connector_id: ::String
523
+ ) -> _GetVoiceConnectorExternalSystemsConfigurationResponseSuccess
524
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceConnectorExternalSystemsConfigurationResponseSuccess
525
+
509
526
  interface _GetVoiceConnectorGroupResponseSuccess
510
527
  include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceConnectorGroupResponse]
511
528
  def voice_connector_group: () -> Types::VoiceConnectorGroup
@@ -808,6 +825,18 @@ module Aws
808
825
  ) -> _PutVoiceConnectorEmergencyCallingConfigurationResponseSuccess
809
826
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutVoiceConnectorEmergencyCallingConfigurationResponseSuccess
810
827
 
828
+ interface _PutVoiceConnectorExternalSystemsConfigurationResponseSuccess
829
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutVoiceConnectorExternalSystemsConfigurationResponse]
830
+ def external_systems_configuration: () -> Types::ExternalSystemsConfiguration
831
+ end
832
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#put_voice_connector_external_systems_configuration-instance_method
833
+ def put_voice_connector_external_systems_configuration: (
834
+ voice_connector_id: ::String,
835
+ ?session_border_controller_types: Array[("RIBBON_SBC" | "ORACLE_ACME_PACKET_SBC" | "AVAYA_SBCE" | "CISCO_UNIFIED_BORDER_ELEMENT" | "AUDIOCODES_MEDIANT_SBC")],
836
+ ?contact_center_system_types: Array[("GENESYS_ENGAGE_ON_PREMISES" | "AVAYA_AURA_CALL_CENTER_ELITE" | "AVAYA_AURA_CONTACT_CENTER" | "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE")]
837
+ ) -> _PutVoiceConnectorExternalSystemsConfigurationResponseSuccess
838
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutVoiceConnectorExternalSystemsConfigurationResponseSuccess
839
+
811
840
  interface _PutVoiceConnectorLoggingConfigurationResponseSuccess
812
841
  include ::Seahorse::Client::_ResponseSuccess[Types::PutVoiceConnectorLoggingConfigurationResponse]
813
842
  def logging_configuration: () -> Types::LoggingConfiguration
data/sig/types.rbs CHANGED
@@ -179,6 +179,7 @@ module Aws::ChimeSDKVoice
179
179
  attr_accessor aws_region: ("us-east-1" | "us-west-2" | "ca-central-1" | "eu-central-1" | "eu-west-1" | "eu-west-2" | "ap-northeast-2" | "ap-northeast-1" | "ap-southeast-1" | "ap-southeast-2")
180
180
  attr_accessor require_encryption: bool
181
181
  attr_accessor tags: ::Array[Types::Tag]
182
+ attr_accessor integration_type: ("CONNECT_CALL_TRANSFER_CONNECTOR" | "CONNECT_ANALYTICS_CONNECTOR")
182
183
  SENSITIVE: []
183
184
  end
184
185
 
@@ -250,6 +251,11 @@ module Aws::ChimeSDKVoice
250
251
  SENSITIVE: []
251
252
  end
252
253
 
254
+ class DeleteVoiceConnectorExternalSystemsConfigurationRequest
255
+ attr_accessor voice_connector_id: ::String
256
+ SENSITIVE: []
257
+ end
258
+
253
259
  class DeleteVoiceConnectorGroupRequest
254
260
  attr_accessor voice_connector_group_id: ::String
255
261
  SENSITIVE: []
@@ -323,6 +329,12 @@ module Aws::ChimeSDKVoice
323
329
  SENSITIVE: []
324
330
  end
325
331
 
332
+ class ExternalSystemsConfiguration
333
+ attr_accessor session_border_controller_types: ::Array[("RIBBON_SBC" | "ORACLE_ACME_PACKET_SBC" | "AVAYA_SBCE" | "CISCO_UNIFIED_BORDER_ELEMENT" | "AUDIOCODES_MEDIANT_SBC")]
334
+ attr_accessor contact_center_system_types: ::Array[("GENESYS_ENGAGE_ON_PREMISES" | "AVAYA_AURA_CALL_CENTER_ELITE" | "AVAYA_AURA_CONTACT_CENTER" | "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE")]
335
+ SENSITIVE: []
336
+ end
337
+
326
338
  class ForbiddenException < Aws::EmptyStructure
327
339
  end
328
340
 
@@ -435,6 +447,16 @@ module Aws::ChimeSDKVoice
435
447
  SENSITIVE: []
436
448
  end
437
449
 
450
+ class GetVoiceConnectorExternalSystemsConfigurationRequest
451
+ attr_accessor voice_connector_id: ::String
452
+ SENSITIVE: []
453
+ end
454
+
455
+ class GetVoiceConnectorExternalSystemsConfigurationResponse
456
+ attr_accessor external_systems_configuration: Types::ExternalSystemsConfiguration
457
+ SENSITIVE: []
458
+ end
459
+
438
460
  class GetVoiceConnectorGroupRequest
439
461
  attr_accessor voice_connector_group_id: ::String
440
462
  SENSITIVE: []
@@ -861,6 +883,18 @@ module Aws::ChimeSDKVoice
861
883
  SENSITIVE: []
862
884
  end
863
885
 
886
+ class PutVoiceConnectorExternalSystemsConfigurationRequest
887
+ attr_accessor voice_connector_id: ::String
888
+ attr_accessor session_border_controller_types: ::Array[("RIBBON_SBC" | "ORACLE_ACME_PACKET_SBC" | "AVAYA_SBCE" | "CISCO_UNIFIED_BORDER_ELEMENT" | "AUDIOCODES_MEDIANT_SBC")]
889
+ attr_accessor contact_center_system_types: ::Array[("GENESYS_ENGAGE_ON_PREMISES" | "AVAYA_AURA_CALL_CENTER_ELITE" | "AVAYA_AURA_CONTACT_CENTER" | "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE")]
890
+ SENSITIVE: []
891
+ end
892
+
893
+ class PutVoiceConnectorExternalSystemsConfigurationResponse
894
+ attr_accessor external_systems_configuration: Types::ExternalSystemsConfiguration
895
+ SENSITIVE: []
896
+ end
897
+
864
898
  class PutVoiceConnectorLoggingConfigurationRequest
865
899
  attr_accessor voice_connector_id: ::String
866
900
  attr_accessor logging_configuration: Types::LoggingConfiguration
@@ -1292,6 +1326,7 @@ module Aws::ChimeSDKVoice
1292
1326
  attr_accessor created_timestamp: ::Time
1293
1327
  attr_accessor updated_timestamp: ::Time
1294
1328
  attr_accessor voice_connector_arn: ::String
1329
+ attr_accessor integration_type: ("CONNECT_CALL_TRANSFER_CONNECTOR" | "CONNECT_ANALYTICS_CONNECTOR")
1295
1330
  SENSITIVE: []
1296
1331
  end
1297
1332
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chimesdkvoice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.33.0
4
+ version: 1.34.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2024-12-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core