aws-sdk-chimesdkvoice 1.32.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: cda63e2519947abb00c3a514cab54bf27a6b96c52496691e6b0cfdb316d5e85f
4
- data.tar.gz: ad03279011ca28e01728b12df137a48e149124b339377e28147c1b547d69ba4e
3
+ metadata.gz: a710e8872c289f72a7a257aaf268d3108f4d1a01168d07d8e173256d23240816
4
+ data.tar.gz: f9afbaabc390c8c4e84d2fc131d9576b27f4c9291ef4c64dbf3301526b2fbeab
5
5
  SHA512:
6
- metadata.gz: 85a91bba3e6749685ef9f0c5b4d9581b0fb07f1c12f901c5cbb0f7791e6b12d0c1167b30d008b9920e1c56ddcf0f3426e299b7fcd5ec5298bf170041ccc5f4e8
7
- data.tar.gz: aaca33155a6648bb306d85814e00528aa69c4802db8e4710d29c6905a64cc2c26cd124f2b0dd9e6a360461ab501efc71fe375e74009b431c6950a2297403749d
6
+ metadata.gz: 8968d6b6c6d5deedce7d6c3c9f151be6fb4e799a5e92ca65f83a1d0146a639c83e8ff5d299f740142fb76ca6d8a4492a6cbe36f7c6d85559c06e76c31bf2166c
7
+ data.tar.gz: 57c341cdf6538fe0edbbd6305ac4fdc8a6c31917adcf691a288f07a87bca66740182e2162c979eb5671178ce8a6d268b73602c7a7198365e1c675ef0c6d7a056
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.33.0 (2024-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.32.0 (2024-09-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.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.32.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"
@@ -52,15 +52,18 @@ module Aws::ChimeSDKVoice
52
52
  self[:region] = options[:region]
53
53
  self[:use_dual_stack] = options[:use_dual_stack]
54
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
- if self[:use_dual_stack].nil?
56
- raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
- end
58
55
  self[:use_fips] = options[:use_fips]
59
56
  self[:use_fips] = false if self[:use_fips].nil?
60
- if self[:use_fips].nil?
61
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
62
- end
63
57
  self[:endpoint] = options[:endpoint]
64
58
  end
59
+
60
+ def self.create(config, options={})
61
+ new({
62
+ region: config.region,
63
+ use_dual_stack: config.use_dualstack_endpoint,
64
+ use_fips: config.use_fips_endpoint,
65
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
66
+ }.merge(options))
67
+ end
65
68
  end
66
69
  end