aws-sdk-chime 1.74.0 → 1.76.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -28,6 +28,7 @@ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
30
  require 'aws-sdk-core/plugins/checksum_algorithm.rb'
31
+ require 'aws-sdk-core/plugins/request_compression.rb'
31
32
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
33
  require 'aws-sdk-core/plugins/recursion_detection.rb'
33
34
  require 'aws-sdk-core/plugins/sign.rb'
@@ -77,6 +78,7 @@ module Aws::Chime
77
78
  add_plugin(Aws::Plugins::TransferEncoding)
78
79
  add_plugin(Aws::Plugins::HttpChecksum)
79
80
  add_plugin(Aws::Plugins::ChecksumAlgorithm)
81
+ add_plugin(Aws::Plugins::RequestCompression)
80
82
  add_plugin(Aws::Plugins::DefaultsMode)
81
83
  add_plugin(Aws::Plugins::RecursionDetection)
82
84
  add_plugin(Aws::Plugins::Sign)
@@ -190,6 +192,10 @@ module Aws::Chime
190
192
  # Set to true to disable SDK automatically adding host prefix
191
193
  # to default service endpoint when available.
192
194
  #
195
+ # @option options [Boolean] :disable_request_compression (false)
196
+ # When set to 'true' the request body will not be compressed
197
+ # for supported operations.
198
+ #
193
199
  # @option options [String] :endpoint
194
200
  # The client endpoint is normally constructed from the `:region`
195
201
  # option. You should only configure an `:endpoint` when connecting
@@ -230,6 +236,11 @@ module Aws::Chime
230
236
  # Used when loading credentials from the shared credentials file
231
237
  # at HOME/.aws/credentials. When not specified, 'default' is used.
232
238
  #
239
+ # @option options [Integer] :request_min_compression_size_bytes (10240)
240
+ # The minimum size in bytes that triggers compression for request
241
+ # bodies. The value must be non-negative integer value between 0
242
+ # and 10485780 bytes inclusive.
243
+ #
233
244
  # @option options [Proc] :retry_backoff
234
245
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
235
246
  # This option is only used in the `legacy` retry mode.
@@ -406,6 +417,19 @@ module Aws::Chime
406
417
  # Associates phone numbers with the specified Amazon Chime Voice
407
418
  # Connector.
408
419
  #
420
+ # **This API is is no longer supported and will not be updated.** We
421
+ # recommend using the latest version,
422
+ # [AssociatePhoneNumbersWithVoiceConnector][1], in the Amazon Chime SDK.
423
+ #
424
+ # Using the latest version requires migrating to a dedicated namespace.
425
+ # For more information, refer to [Migrating from the Amazon Chime
426
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
427
+ #
428
+ #
429
+ #
430
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_AssociatePhoneNumbersWithVoiceConnector.html
431
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
432
+ #
409
433
  # @option params [required, String] :voice_connector_id
410
434
  # The Amazon Chime Voice Connector ID.
411
435
  #
@@ -449,6 +473,20 @@ module Aws::Chime
449
473
  # Associates phone numbers with the specified Amazon Chime Voice
450
474
  # Connector group.
451
475
  #
476
+ # **This API is is no longer supported and will not be updated.** We
477
+ # recommend using the latest version,
478
+ # [AssociatePhoneNumbersWithVoiceConnectorGroup][1], in the Amazon Chime
479
+ # SDK.
480
+ #
481
+ # Using the latest version requires migrating to a dedicated namespace.
482
+ # For more information, refer to [Migrating from the Amazon Chime
483
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
484
+ #
485
+ #
486
+ #
487
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_AssociatePhoneNumbersWithVoiceConnectorGroup.html
488
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
489
+ #
452
490
  # @option params [required, String] :voice_connector_group_id
453
491
  # The Amazon Chime Voice Connector group ID.
454
492
  #
@@ -521,12 +559,24 @@ module Aws::Chime
521
559
  end
522
560
 
523
561
  # Creates up to 100 new attendees for an active Amazon Chime SDK
524
- # meeting. For more information about the Amazon Chime SDK, see [Using
525
- # the Amazon Chime SDK][1] in the *Amazon Chime SDK Developer Guide*.
562
+ # meeting.
526
563
  #
564
+ # **This API is is no longer supported and will not be updated.** We
565
+ # recommend using the latest version, [BatchCreateAttendee][1], in the
566
+ # Amazon Chime SDK.
567
+ #
568
+ # Using the latest version requires migrating to a dedicated namespace.
569
+ # For more information, refer to [Migrating from the Amazon Chime
570
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
571
+ #
572
+ # For more information about the Amazon Chime SDK, see [Using the Amazon
573
+ # Chime SDK][3] in the *Amazon Chime SDK Developer Guide*.
527
574
  #
528
575
  #
529
- # [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
576
+ #
577
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_BatchCreateAttendee.html
578
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
579
+ # [3]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
530
580
  #
531
581
  # @option params [required, String] :meeting_id
532
582
  # The Amazon Chime SDK meeting ID.
@@ -578,6 +628,19 @@ module Aws::Chime
578
628
 
579
629
  # Adds a specified number of users to a channel.
580
630
  #
631
+ # **This API is is no longer supported and will not be updated.** We
632
+ # recommend using the latest version, [BatchCreateChannelMembership][1],
633
+ # in the Amazon Chime SDK.
634
+ #
635
+ # Using the latest version requires migrating to a dedicated namespace.
636
+ # For more information, refer to [Migrating from the Amazon Chime
637
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
638
+ #
639
+ #
640
+ #
641
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_BatchCreateChannelMembership.html
642
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
643
+ #
581
644
  # @option params [required, String] :channel_arn
582
645
  # The ARN of the channel to which you're adding users.
583
646
  #
@@ -963,6 +1026,19 @@ module Aws::Chime
963
1026
  # `CreateAppInstance` supports idempotency behavior as described in the
964
1027
  # AWS API Standard.
965
1028
  #
1029
+ # **This API is is no longer supported and will not be updated.** We
1030
+ # recommend using the latest version, [CreateAppInstance][1], in the
1031
+ # Amazon Chime SDK.
1032
+ #
1033
+ # Using the latest version requires migrating to a dedicated namespace.
1034
+ # For more information, refer to [Migrating from the Amazon Chime
1035
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
1036
+ #
1037
+ #
1038
+ #
1039
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_CreateAppInstance.html
1040
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
1041
+ #
966
1042
  # @option params [required, String] :name
967
1043
  # The name of the `AppInstance`.
968
1044
  #
@@ -1012,6 +1088,14 @@ module Aws::Chime
1012
1088
  # Promotes an `AppInstanceUser` to an `AppInstanceAdmin`. The promoted
1013
1089
  # user can perform the following actions.
1014
1090
  #
1091
+ # **This API is is no longer supported and will not be updated.** We
1092
+ # recommend using the latest version, [CreateAppInstanceAdmin][1], in
1093
+ # the Amazon Chime SDK.
1094
+ #
1095
+ # Using the latest version requires migrating to a dedicated namespace.
1096
+ # For more information, refer to [Migrating from the Amazon Chime
1097
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
1098
+ #
1015
1099
  # * `ChannelModerator` actions across all channels in the `AppInstance`.
1016
1100
  #
1017
1101
  # * `DeleteChannelMessage` actions.
@@ -1019,6 +1103,11 @@ module Aws::Chime
1019
1103
  # Only an `AppInstanceUser` can be promoted to an `AppInstanceAdmin`
1020
1104
  # role.
1021
1105
  #
1106
+ #
1107
+ #
1108
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_CreateAppInstanceAdmin.html
1109
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
1110
+ #
1022
1111
  # @option params [required, String] :app_instance_admin_arn
1023
1112
  # The ARN of the administrator of the current `AppInstance`.
1024
1113
  #
@@ -1055,6 +1144,19 @@ module Aws::Chime
1055
1144
  # Creates a user under an Amazon Chime `AppInstance`. The request
1056
1145
  # consists of a unique `appInstanceUserId` and `Name` for that user.
1057
1146
  #
1147
+ # **This API is is no longer supported and will not be updated.** We
1148
+ # recommend using the latest version, [CreateAppInstanceUser][1], in the
1149
+ # Amazon Chime SDK.
1150
+ #
1151
+ # Using the latest version requires migrating to a dedicated namespace.
1152
+ # For more information, refer to [Migrating from the Amazon Chime
1153
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
1154
+ #
1155
+ #
1156
+ #
1157
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_CreateAppInstanceUser.html
1158
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
1159
+ #
1058
1160
  # @option params [required, String] :app_instance_arn
1059
1161
  # The ARN of the `AppInstance` request.
1060
1162
  #
@@ -1113,9 +1215,19 @@ module Aws::Chime
1113
1215
  # more information about the Amazon Chime SDK, see [Using the Amazon
1114
1216
  # Chime SDK][1] in the *Amazon Chime SDK Developer Guide*.
1115
1217
  #
1218
+ # **This API is is no longer supported and will not be updated.** We
1219
+ # recommend using the latest version, [CreateAttendee][2], in the Amazon
1220
+ # Chime SDK.
1221
+ #
1222
+ # Using the latest version requires migrating to a dedicated namespace.
1223
+ # For more information, refer to [Migrating from the Amazon Chime
1224
+ # namespace][3] in the *Amazon Chime SDK Developer Guide*.
1225
+ #
1116
1226
  #
1117
1227
  #
1118
1228
  # [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
1229
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_CreateAttendee.html
1230
+ # [3]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
1119
1231
  #
1120
1232
  # @option params [required, String] :meeting_id
1121
1233
  # The Amazon Chime SDK meeting ID.
@@ -1213,6 +1325,19 @@ module Aws::Chime
1213
1325
  #
1214
1326
  # </note>
1215
1327
  #
1328
+ # **This API is is no longer supported and will not be updated.** We
1329
+ # recommend using the latest version, [CreateChannel][1], in the Amazon
1330
+ # Chime SDK.
1331
+ #
1332
+ # Using the latest version requires migrating to a dedicated namespace.
1333
+ # For more information, refer to [Migrating from the Amazon Chime
1334
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
1335
+ #
1336
+ #
1337
+ #
1338
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_CreateChannel.html
1339
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
1340
+ #
1216
1341
  # @option params [required, String] :app_instance_arn
1217
1342
  # The ARN of the channel request.
1218
1343
  #
@@ -1294,6 +1419,19 @@ module Aws::Chime
1294
1419
  #
1295
1420
  # </note>
1296
1421
  #
1422
+ # **This API is is no longer supported and will not be updated.** We
1423
+ # recommend using the latest version, [CreateChannelBan][1], in the
1424
+ # Amazon Chime SDK.
1425
+ #
1426
+ # Using the latest version requires migrating to a dedicated namespace.
1427
+ # For more information, refer to [Migrating from the Amazon Chime
1428
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
1429
+ #
1430
+ #
1431
+ #
1432
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_CreateChannelBan.html
1433
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
1434
+ #
1297
1435
  # @option params [required, String] :channel_arn
1298
1436
  # The ARN of the ban request.
1299
1437
  #
@@ -1357,6 +1495,19 @@ module Aws::Chime
1357
1495
  #
1358
1496
  # </note>
1359
1497
  #
1498
+ # **This API is is no longer supported and will not be updated.** We
1499
+ # recommend using the latest version, [CreateChannelMembership][1], in
1500
+ # the Amazon Chime SDK.
1501
+ #
1502
+ # Using the latest version requires migrating to a dedicated namespace.
1503
+ # For more information, refer to [Migrating from the Amazon Chime
1504
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
1505
+ #
1506
+ #
1507
+ #
1508
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_CreateChannelMembership.html
1509
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
1510
+ #
1360
1511
  # @option params [required, String] :channel_arn
1361
1512
  # The ARN of the channel to which you're adding users.
1362
1513
  #
@@ -1420,6 +1571,19 @@ module Aws::Chime
1420
1571
  #
1421
1572
  # </note>
1422
1573
  #
1574
+ # **This API is is no longer supported and will not be updated.** We
1575
+ # recommend using the latest version, [CreateChannelModerator][1], in
1576
+ # the Amazon Chime SDK.
1577
+ #
1578
+ # Using the latest version requires migrating to a dedicated namespace.
1579
+ # For more information, refer to [Migrating from the Amazon Chime
1580
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
1581
+ #
1582
+ #
1583
+ #
1584
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_CreateChannelModerator.html
1585
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
1586
+ #
1423
1587
  # @option params [required, String] :channel_arn
1424
1588
  # The ARN of the channel.
1425
1589
  #
@@ -1459,6 +1623,19 @@ module Aws::Chime
1459
1623
 
1460
1624
  # Creates a media capture pipeline.
1461
1625
  #
1626
+ # **This API is is no longer supported and will not be updated.** We
1627
+ # recommend using the latest version, [CreateMediaCapturePipeline][1],
1628
+ # in the Amazon Chime SDK.
1629
+ #
1630
+ # Using the latest version requires migrating to a dedicated namespace.
1631
+ # For more information, refer to [Migrating from the Amazon Chime
1632
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
1633
+ #
1634
+ #
1635
+ #
1636
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_media-pipelines-chime_CreateMediaCapturePipeline
1637
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
1638
+ #
1462
1639
  # @option params [required, String] :source_type
1463
1640
  # Source type from which the media artifacts will be captured. A Chime
1464
1641
  # SDK Meeting is the only supported source.
@@ -1554,12 +1731,22 @@ module Aws::Chime
1554
1731
  # Regions, see [Amazon Chime SDK Media Regions][1] in the *Amazon Chime
1555
1732
  # SDK Developer Guide* . For more information about the Amazon Chime
1556
1733
  # SDK, see [Using the Amazon Chime SDK][2] in the *Amazon Chime SDK
1557
- # Developer Guide* .
1734
+ # Developer Guide*.
1735
+ #
1736
+ # **This API is is no longer supported and will not be updated.** We
1737
+ # recommend using the latest version, [CreateMeeting][3], in the Amazon
1738
+ # Chime SDK.
1739
+ #
1740
+ # Using the latest version requires migrating to a dedicated namespace.
1741
+ # For more information, refer to [Migrating from the Amazon Chime
1742
+ # namespace][4] in the *Amazon Chime SDK Developer Guide*.
1558
1743
  #
1559
1744
  #
1560
1745
  #
1561
1746
  # [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/chime-sdk-meetings-regions.html
1562
1747
  # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
1748
+ # [3]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_CreateMeeting.html
1749
+ # [4]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
1563
1750
  #
1564
1751
  # @option params [required, String] :client_request_token
1565
1752
  # The unique identifier for the client request. Use a different token
@@ -1645,6 +1832,8 @@ module Aws::Chime
1645
1832
  # (IVR), use the `CreateSipMediaApplicationCall` action with the
1646
1833
  # corresponding SIP media application ID.
1647
1834
  #
1835
+ # **This API is is not available in a dedicated namespace.**
1836
+ #
1648
1837
  # @option params [required, String] :meeting_id
1649
1838
  # The Amazon Chime SDK meeting ID.
1650
1839
  #
@@ -1696,10 +1885,20 @@ module Aws::Chime
1696
1885
  # see [Using the Amazon Chime SDK][2] in the *Amazon Chime SDK Developer
1697
1886
  # Guide* .
1698
1887
  #
1888
+ # **This API is is no longer supported and will not be updated.** We
1889
+ # recommend using the latest version, [CreateMeetingWithAttendees][3],
1890
+ # in the Amazon Chime SDK.
1891
+ #
1892
+ # Using the latest version requires migrating to a dedicated namespace.
1893
+ # For more information, refer to [Migrating from the Amazon Chime
1894
+ # namespace][4] in the *Amazon Chime SDK Developer Guide*.
1895
+ #
1699
1896
  #
1700
1897
  #
1701
1898
  # [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/chime-sdk-meetings-regions.html
1702
1899
  # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
1900
+ # [3]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_CreateMeetingWithAttendees.html
1901
+ # [4]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
1703
1902
  #
1704
1903
  # @option params [required, String] :client_request_token
1705
1904
  # The unique identifier for the client request. Use a different token
@@ -1847,6 +2046,19 @@ module Aws::Chime
1847
2046
  # Creates a proxy session on the specified Amazon Chime Voice Connector
1848
2047
  # for the specified participant phone numbers.
1849
2048
  #
2049
+ # **This API is is no longer supported and will not be updated.** We
2050
+ # recommend using the latest version, [CreateProxySession][1], in the
2051
+ # Amazon Chime SDK.
2052
+ #
2053
+ # Using the latest version requires migrating to a dedicated namespace.
2054
+ # For more information, refer to [Migrating from the Amazon Chime
2055
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
2056
+ #
2057
+ #
2058
+ #
2059
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_CreateProxySession.html
2060
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2061
+ #
1850
2062
  # @option params [required, String] :voice_connector_id
1851
2063
  # The Amazon Chime voice connector ID.
1852
2064
  #
@@ -2019,6 +2231,19 @@ module Aws::Chime
2019
2231
 
2020
2232
  # Creates a SIP media application.
2021
2233
  #
2234
+ # **This API is is no longer supported and will not be updated.** We
2235
+ # recommend using the latest version, [CreateSipMediaApplication][1], in
2236
+ # the Amazon Chime SDK.
2237
+ #
2238
+ # Using the latest version requires migrating to a dedicated namespace.
2239
+ # For more information, refer to [Migrating from the Amazon Chime
2240
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
2241
+ #
2242
+ #
2243
+ #
2244
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_CreateSipMediaApplication.html
2245
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2246
+ #
2022
2247
  # @option params [required, String] :aws_region
2023
2248
  # The AWS Region assigned to the SIP media application.
2024
2249
  #
@@ -2068,6 +2293,19 @@ module Aws::Chime
2068
2293
  # specified in the request, and it invokes the endpoint of the specified
2069
2294
  # `sipMediaApplicationId`.
2070
2295
  #
2296
+ # **This API is is no longer supported and will not be updated.** We
2297
+ # recommend using the latest version,
2298
+ # [CreateSipMediaApplicationCall][1], in the Amazon Chime SDK.
2299
+ #
2300
+ # Using the latest version requires migrating to a dedicated namespace.
2301
+ # For more information, refer to [Migrating from the Amazon Chime
2302
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
2303
+ #
2304
+ #
2305
+ #
2306
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_CreateSipMediaApplicationCall.html
2307
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2308
+ #
2071
2309
  # @option params [required, String] :from_phone_number
2072
2310
  # The phone number that a user calls from. This is a phone number in
2073
2311
  # your Amazon Chime phone number inventory.
@@ -2112,6 +2350,19 @@ module Aws::Chime
2112
2350
  # Creates a SIP rule which can be used to run a SIP media application as
2113
2351
  # a target for a specific trigger type.
2114
2352
  #
2353
+ # **This API is is no longer supported and will not be updated.** We
2354
+ # recommend using the latest version, [CreateSipRule][1], in the Amazon
2355
+ # Chime SDK.
2356
+ #
2357
+ # Using the latest version requires migrating to a dedicated namespace.
2358
+ # For more information, refer to [Migrating from the Amazon Chime
2359
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
2360
+ #
2361
+ #
2362
+ #
2363
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_CreateSipRule.html
2364
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2365
+ #
2115
2366
  # @option params [required, String] :name
2116
2367
  # The name of the SIP rule.
2117
2368
  #
@@ -2241,6 +2492,19 @@ module Aws::Chime
2241
2492
  # and Secure RTP (SRTP) for media. Inbound calls use TLS transport, and
2242
2493
  # unencrypted outbound calls are blocked.
2243
2494
  #
2495
+ # **This API is is no longer supported and will not be updated.** We
2496
+ # recommend using the latest version, [CreateVoiceConnector][1], in the
2497
+ # Amazon Chime SDK.
2498
+ #
2499
+ # Using the latest version requires migrating to a dedicated namespace.
2500
+ # For more information, refer to [Migrating from the Amazon Chime
2501
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
2502
+ #
2503
+ #
2504
+ #
2505
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_CreateVoiceConnector.html
2506
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2507
+ #
2244
2508
  # @option params [required, String] :name
2245
2509
  # The name of the Amazon Chime Voice Connector.
2246
2510
  #
@@ -2293,6 +2557,19 @@ module Aws::Chime
2293
2557
  # Regions in your group. This creates a fault tolerant mechanism for
2294
2558
  # fallback in case of availability events.
2295
2559
  #
2560
+ # **This API is is no longer supported and will not be updated.** We
2561
+ # recommend using the latest version, [CreateVoiceConnectorGroup][1], in
2562
+ # the Amazon Chime SDK.
2563
+ #
2564
+ # Using the latest version requires migrating to a dedicated namespace.
2565
+ # For more information, refer to [Migrating from the Amazon Chime
2566
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
2567
+ #
2568
+ #
2569
+ #
2570
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_CreateVoiceConnectorGroup.html
2571
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2572
+ #
2296
2573
  # @option params [required, String] :name
2297
2574
  # The name of the Amazon Chime Voice Connector group.
2298
2575
  #
@@ -2372,6 +2649,19 @@ module Aws::Chime
2372
2649
 
2373
2650
  # Deletes an `AppInstance` and all associated data asynchronously.
2374
2651
  #
2652
+ # **This API is is no longer supported and will not be updated.** We
2653
+ # recommend using the latest version, [DeleteAppInstance][1], in the
2654
+ # Amazon Chime SDK.
2655
+ #
2656
+ # Using the latest version requires migrating to a dedicated namespace.
2657
+ # For more information, refer to [Migrating from the Amazon Chime
2658
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
2659
+ #
2660
+ #
2661
+ #
2662
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_DeleteAppInstance.html
2663
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2664
+ #
2375
2665
  # @option params [required, String] :app_instance_arn
2376
2666
  # The ARN of the `AppInstance`.
2377
2667
  #
@@ -2395,6 +2685,19 @@ module Aws::Chime
2395
2685
  # Demotes an `AppInstanceAdmin` to an `AppInstanceUser`. This action
2396
2686
  # does not delete the user.
2397
2687
  #
2688
+ # **This API is is no longer supported and will not be updated.** We
2689
+ # recommend using the latest version, [DeleteAppInstanceAdmin][1], in
2690
+ # the Amazon Chime SDK.
2691
+ #
2692
+ # Using the latest version requires migrating to a dedicated namespace.
2693
+ # For more information, refer to [Migrating from the Amazon Chime
2694
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
2695
+ #
2696
+ #
2697
+ #
2698
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_DeleteAppInstanceAdmin.html
2699
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2700
+ #
2398
2701
  # @option params [required, String] :app_instance_admin_arn
2399
2702
  # The ARN of the `AppInstance`'s administrator.
2400
2703
  #
@@ -2421,6 +2724,20 @@ module Aws::Chime
2421
2724
 
2422
2725
  # Deletes the streaming configurations of an `AppInstance`.
2423
2726
  #
2727
+ # **This API is is no longer supported and will not be updated.** We
2728
+ # recommend using the latest version,
2729
+ # [DeleteAppInstanceStreamingConfigurations][1], in the Amazon Chime
2730
+ # SDK.
2731
+ #
2732
+ # Using the latest version requires migrating to a dedicated namespace.
2733
+ # For more information, refer to [Migrating from the Amazon Chime
2734
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
2735
+ #
2736
+ #
2737
+ #
2738
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_DeleteAppInstanceStreamingConfigurations.html
2739
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2740
+ #
2424
2741
  # @option params [required, String] :app_instance_arn
2425
2742
  # The ARN of the streaming configurations being deleted.
2426
2743
  #
@@ -2443,6 +2760,19 @@ module Aws::Chime
2443
2760
 
2444
2761
  # Deletes an `AppInstanceUser`.
2445
2762
  #
2763
+ # **This API is is no longer supported and will not be updated.** We
2764
+ # recommend using the latest version, [DeleteAppInstanceUser][1], in the
2765
+ # Amazon Chime SDK.
2766
+ #
2767
+ # Using the latest version requires migrating to a dedicated namespace.
2768
+ # For more information, refer to [Migrating from the Amazon Chime
2769
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
2770
+ #
2771
+ #
2772
+ #
2773
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_DeleteAppInstanceUser.html
2774
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2775
+ #
2446
2776
  # @option params [required, String] :app_instance_user_arn
2447
2777
  # The ARN of the user request being deleted.
2448
2778
  #
@@ -2469,9 +2799,19 @@ module Aws::Chime
2469
2799
  # Amazon Chime SDK, see [Using the Amazon Chime SDK][1] in the *Amazon
2470
2800
  # Chime SDK Developer Guide*.
2471
2801
  #
2802
+ # **This API is is no longer supported and will not be updated.** We
2803
+ # recommend using the latest version, [DeleteAttendee][2], in the Amazon
2804
+ # Chime SDK.
2805
+ #
2806
+ # Using the latest version requires migrating to a dedicated namespace.
2807
+ # For more information, refer to [Migrating from the Amazon Chime
2808
+ # namespace][3] in the *Amazon Chime SDK Developer Guide*.
2809
+ #
2472
2810
  #
2473
2811
  #
2474
2812
  # [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
2813
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_DeleteAttendee.html
2814
+ # [3]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2475
2815
  #
2476
2816
  # @option params [required, String] :meeting_id
2477
2817
  # The Amazon Chime SDK meeting ID.
@@ -2506,6 +2846,19 @@ module Aws::Chime
2506
2846
  #
2507
2847
  # </note>
2508
2848
  #
2849
+ # **This API is is no longer supported and will not be updated.** We
2850
+ # recommend using the latest version, [DeleteChannel][1], in the Amazon
2851
+ # Chime SDK.
2852
+ #
2853
+ # Using the latest version requires migrating to a dedicated namespace.
2854
+ # For more information, refer to [Migrating from the Amazon Chime
2855
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
2856
+ #
2857
+ #
2858
+ #
2859
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_DeleteChannel.html
2860
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2861
+ #
2509
2862
  # @option params [required, String] :channel_arn
2510
2863
  # The ARN of the channel being deleted.
2511
2864
  #
@@ -2538,6 +2891,19 @@ module Aws::Chime
2538
2891
  #
2539
2892
  # </note>
2540
2893
  #
2894
+ # **This API is is no longer supported and will not be updated.** We
2895
+ # recommend using the latest version, [DeleteChannelBan][1], in the
2896
+ # Amazon Chime SDK.
2897
+ #
2898
+ # Using the latest version requires migrating to a dedicated namespace.
2899
+ # For more information, refer to [Migrating from the Amazon Chime
2900
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
2901
+ #
2902
+ #
2903
+ #
2904
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_DeleteChannelBan.html
2905
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2906
+ #
2541
2907
  # @option params [required, String] :channel_arn
2542
2908
  # The ARN of the channel from which the `AppInstanceUser` was banned.
2543
2909
  #
@@ -2574,6 +2940,19 @@ module Aws::Chime
2574
2940
  #
2575
2941
  # </note>
2576
2942
  #
2943
+ # **This API is is no longer supported and will not be updated.** We
2944
+ # recommend using the latest version, [DeleteChannelMembership][1], in
2945
+ # the Amazon Chime SDK.
2946
+ #
2947
+ # Using the latest version requires migrating to a dedicated namespace.
2948
+ # For more information, refer to [Migrating from the Amazon Chime
2949
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
2950
+ #
2951
+ #
2952
+ #
2953
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_DeleteChannelMembership.html
2954
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2955
+ #
2577
2956
  # @option params [required, String] :channel_arn
2578
2957
  # The ARN of the channel from which you want to remove the user.
2579
2958
  #
@@ -2612,6 +2991,19 @@ module Aws::Chime
2612
2991
  #
2613
2992
  # </note>
2614
2993
  #
2994
+ # **This API is is no longer supported and will not be updated.** We
2995
+ # recommend using the latest version, [DeleteChannelMessage][1], in the
2996
+ # Amazon Chime SDK.
2997
+ #
2998
+ # Using the latest version requires migrating to a dedicated namespace.
2999
+ # For more information, refer to [Migrating from the Amazon Chime
3000
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3001
+ #
3002
+ #
3003
+ #
3004
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_DeleteChannelMessage.html
3005
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3006
+ #
2615
3007
  # @option params [required, String] :channel_arn
2616
3008
  # The ARN of the channel.
2617
3009
  #
@@ -2648,6 +3040,19 @@ module Aws::Chime
2648
3040
  #
2649
3041
  # </note>
2650
3042
  #
3043
+ # **This API is is no longer supported and will not be updated.** We
3044
+ # recommend using the latest version, [DeleteChannelModerator][1], in
3045
+ # the Amazon Chime SDK.
3046
+ #
3047
+ # Using the latest version requires migrating to a dedicated namespace.
3048
+ # For more information, refer to [Migrating from the Amazon Chime
3049
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3050
+ #
3051
+ #
3052
+ #
3053
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_DeleteChannelModerator.html
3054
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3055
+ #
2651
3056
  # @option params [required, String] :channel_arn
2652
3057
  # The ARN of the channel.
2653
3058
  #
@@ -2705,6 +3110,19 @@ module Aws::Chime
2705
3110
 
2706
3111
  # Deletes the media capture pipeline.
2707
3112
  #
3113
+ # **This API is is no longer supported and will not be updated.** We
3114
+ # recommend using the latest version, [DeleteMediaCapturePipeline][1],
3115
+ # in the Amazon Chime SDK.
3116
+ #
3117
+ # Using the latest version requires migrating to a dedicated namespace.
3118
+ # For more information, refer to [Migrating from the Amazon Chime
3119
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3120
+ #
3121
+ #
3122
+ #
3123
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_media-pipelines-chime_DeleteMediaCapturePipeline.html
3124
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3125
+ #
2708
3126
  # @option params [required, String] :media_pipeline_id
2709
3127
  # The ID of the media capture pipeline being deleted.
2710
3128
  #
@@ -2731,9 +3149,19 @@ module Aws::Chime
2731
3149
  # see [Using the Amazon Chime SDK][1] in the *Amazon Chime SDK Developer
2732
3150
  # Guide*.
2733
3151
  #
3152
+ # **This API is is no longer supported and will not be updated.** We
3153
+ # recommend using the latest version, [DeleteMeeting][2], in the Amazon
3154
+ # Chime SDK.
3155
+ #
3156
+ # Using the latest version requires migrating to a dedicated namespace.
3157
+ # For more information, refer to [Migrating from the Amazon Chime
3158
+ # namespace][3] in the *Amazon Chime SDK Developer Guide*.
3159
+ #
2734
3160
  #
2735
3161
  #
2736
3162
  # [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
3163
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_DeleteMeeting.html
3164
+ # [3]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
2737
3165
  #
2738
3166
  # @option params [required, String] :meeting_id
2739
3167
  # The Amazon Chime SDK meeting ID.
@@ -2785,6 +3213,19 @@ module Aws::Chime
2785
3213
  # Deletes the specified proxy session from the specified Amazon Chime
2786
3214
  # Voice Connector.
2787
3215
  #
3216
+ # **This API is is no longer supported and will not be updated.** We
3217
+ # recommend using the latest version, [DeleteProxySession][1], in the
3218
+ # Amazon Chime SDK.
3219
+ #
3220
+ # Using the latest version requires migrating to a dedicated namespace.
3221
+ # For more information, refer to [Migrating from the Amazon Chime
3222
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3223
+ #
3224
+ #
3225
+ #
3226
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_DeleteProxySession.html
3227
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3228
+ #
2788
3229
  # @option params [required, String] :voice_connector_id
2789
3230
  # The Amazon Chime voice connector ID.
2790
3231
  #
@@ -2868,6 +3309,19 @@ module Aws::Chime
2868
3309
 
2869
3310
  # Deletes a SIP media application.
2870
3311
  #
3312
+ # **This API is is no longer supported and will not be updated.** We
3313
+ # recommend using the latest version, [DeleteSipMediaApplication][1], in
3314
+ # the Amazon Chime SDK.
3315
+ #
3316
+ # Using the latest version requires migrating to a dedicated namespace.
3317
+ # For more information, refer to [Migrating from the Amazon Chime
3318
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3319
+ #
3320
+ #
3321
+ #
3322
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_DeleteSipMediaApplication.html
3323
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3324
+ #
2871
3325
  # @option params [required, String] :sip_media_application_id
2872
3326
  # The SIP media application ID.
2873
3327
  #
@@ -2891,6 +3345,19 @@ module Aws::Chime
2891
3345
  # Deletes a SIP rule. You must disable a SIP rule before you can delete
2892
3346
  # it.
2893
3347
  #
3348
+ # **This API is is no longer supported and will not be updated.** We
3349
+ # recommend using the latest version, [DeleteSipRule][1], in the Amazon
3350
+ # Chime SDK.
3351
+ #
3352
+ # Using the latest version requires migrating to a dedicated namespace.
3353
+ # For more information, refer to [Migrating from the Amazon Chime
3354
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3355
+ #
3356
+ #
3357
+ #
3358
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_DeleteSipRule.html
3359
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3360
+ #
2894
3361
  # @option params [required, String] :sip_rule_id
2895
3362
  # The SIP rule ID.
2896
3363
  #
@@ -2915,6 +3382,19 @@ module Aws::Chime
2915
3382
  # associated with the Amazon Chime Voice Connector must be disassociated
2916
3383
  # from it before it can be deleted.
2917
3384
  #
3385
+ # **This API is is no longer supported and will not be updated.** We
3386
+ # recommend using the latest version, [DeleteVoiceConnector][1], in the
3387
+ # Amazon Chime SDK.
3388
+ #
3389
+ # Using the latest version requires migrating to a dedicated namespace.
3390
+ # For more information, refer to [Migrating from the Amazon Chime
3391
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3392
+ #
3393
+ #
3394
+ #
3395
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_DeleteVoiceConnector.html
3396
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3397
+ #
2918
3398
  # @option params [required, String] :voice_connector_id
2919
3399
  # The Amazon Chime Voice Connector ID.
2920
3400
  #
@@ -2938,6 +3418,20 @@ module Aws::Chime
2938
3418
  # Deletes the emergency calling configuration details from the specified
2939
3419
  # Amazon Chime Voice Connector.
2940
3420
  #
3421
+ # **This API is is no longer supported and will not be updated.** We
3422
+ # recommend using the latest version,
3423
+ # [DeleteVoiceConnectorEmergencyCallingConfiguration][1], in the Amazon
3424
+ # Chime SDK.
3425
+ #
3426
+ # Using the latest version requires migrating to a dedicated namespace.
3427
+ # For more information, refer to [Migrating from the Amazon Chime
3428
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3429
+ #
3430
+ #
3431
+ #
3432
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_DeleteVoiceConnectorEmergencyCallingConfiguration.html
3433
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3434
+ #
2941
3435
  # @option params [required, String] :voice_connector_id
2942
3436
  # The Amazon Chime Voice Connector ID.
2943
3437
  #
@@ -2962,6 +3456,19 @@ module Aws::Chime
2962
3456
  # `VoiceConnectorItems` and phone numbers associated with the group must
2963
3457
  # be removed before it can be deleted.
2964
3458
  #
3459
+ # **This API is is no longer supported and will not be updated.** We
3460
+ # recommend using the latest version, [DeleteVoiceConnectorGroup][1], in
3461
+ # the Amazon Chime SDK.
3462
+ #
3463
+ # Using the latest version requires migrating to a dedicated namespace.
3464
+ # For more information, refer to [Migrating from the Amazon Chime
3465
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3466
+ #
3467
+ #
3468
+ #
3469
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_DeleteVoiceConnectorGroup.html
3470
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3471
+ #
2965
3472
  # @option params [required, String] :voice_connector_group_id
2966
3473
  # The Amazon Chime Voice Connector group ID.
2967
3474
  #
@@ -2991,6 +3498,19 @@ module Aws::Chime
2991
3498
  #
2992
3499
  # </note>
2993
3500
  #
3501
+ # **This API is is no longer supported and will not be updated.** We
3502
+ # recommend using the latest version,
3503
+ # [DeleteVoiceConnectorOrigination][1], in the Amazon Chime SDK.
3504
+ #
3505
+ # Using the latest version requires migrating to a dedicated namespace.
3506
+ # For more information, refer to [Migrating from the Amazon Chime
3507
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3508
+ #
3509
+ #
3510
+ #
3511
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_DeleteVoiceConnectorOrigination.html
3512
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3513
+ #
2994
3514
  # @option params [required, String] :voice_connector_id
2995
3515
  # The Amazon Chime Voice Connector ID.
2996
3516
  #
@@ -3014,6 +3534,19 @@ module Aws::Chime
3014
3534
  # Deletes the proxy configuration from the specified Amazon Chime Voice
3015
3535
  # Connector.
3016
3536
  #
3537
+ # **This API is is no longer supported and will not be updated.** We
3538
+ # recommend using the latest version, [DeleteVoiceProxy][1], in the
3539
+ # Amazon Chime SDK.
3540
+ #
3541
+ # Using the latest version requires migrating to a dedicated namespace.
3542
+ # For more information, refer to [Migrating from the Amazon Chime
3543
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3544
+ #
3545
+ #
3546
+ #
3547
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_DeleteVoiceConnectorProxy.html
3548
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3549
+ #
3017
3550
  # @option params [required, String] :voice_connector_id
3018
3551
  # The Amazon Chime Voice Connector ID.
3019
3552
  #
@@ -3037,6 +3570,20 @@ module Aws::Chime
3037
3570
  # Deletes the streaming configuration for the specified Amazon Chime
3038
3571
  # Voice Connector.
3039
3572
  #
3573
+ # **This API is is no longer supported and will not be updated.** We
3574
+ # recommend using the latest version,
3575
+ # [DeleteVoiceConnectorStreamingConfiguration][1], in the Amazon Chime
3576
+ # SDK.
3577
+ #
3578
+ # Using the latest version requires migrating to a dedicated namespace.
3579
+ # For more information, refer to [Migrating from the Amazon Chime
3580
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3581
+ #
3582
+ #
3583
+ #
3584
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_DeleteVoiceConnectorStreamingConfiguration.html
3585
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3586
+ #
3040
3587
  # @option params [required, String] :voice_connector_id
3041
3588
  # The Amazon Chime Voice Connector ID.
3042
3589
  #
@@ -3066,6 +3613,19 @@ module Aws::Chime
3066
3613
  #
3067
3614
  # </note>
3068
3615
  #
3616
+ # **This API is is no longer supported and will not be updated.** We
3617
+ # recommend using the latest version,
3618
+ # [DeleteVoiceConnectorTermination][1], in the Amazon Chime SDK.
3619
+ #
3620
+ # Using the latest version requires migrating to a dedicated namespace.
3621
+ # For more information, refer to [Migrating from the Amazon Chime
3622
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3623
+ #
3624
+ #
3625
+ #
3626
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_DeleteVoiceConnectorTermination.html
3627
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3628
+ #
3069
3629
  # @option params [required, String] :voice_connector_id
3070
3630
  # The Amazon Chime Voice Connector ID.
3071
3631
  #
@@ -3089,6 +3649,20 @@ module Aws::Chime
3089
3649
  # Deletes the specified SIP credentials used by your equipment to
3090
3650
  # authenticate during call termination.
3091
3651
  #
3652
+ # **This API is is no longer supported and will not be updated.** We
3653
+ # recommend using the latest version,
3654
+ # [DeleteVoiceConnectorTerminationCredentials][1], in the Amazon Chime
3655
+ # SDK.
3656
+ #
3657
+ # Using the latest version requires migrating to a dedicated namespace.
3658
+ # For more information, refer to [Migrating from the Amazon Chime
3659
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3660
+ #
3661
+ #
3662
+ #
3663
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_DeleteVoiceConnectorTerminationCredentials.html
3664
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3665
+ #
3092
3666
  # @option params [required, String] :voice_connector_id
3093
3667
  # The Amazon Chime Voice Connector ID.
3094
3668
  #
@@ -3116,6 +3690,19 @@ module Aws::Chime
3116
3690
 
3117
3691
  # Returns the full details of an `AppInstance`.
3118
3692
  #
3693
+ # **This API is is no longer supported and will not be updated.** We
3694
+ # recommend using the latest version, [DescribeAppInstance][1], in the
3695
+ # Amazon Chime SDK.
3696
+ #
3697
+ # Using the latest version requires migrating to a dedicated namespace.
3698
+ # For more information, refer to [Migrating from the Amazon Chime
3699
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3700
+ #
3701
+ #
3702
+ #
3703
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_DescribeAppInstance.html
3704
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3705
+ #
3119
3706
  # @option params [required, String] :app_instance_arn
3120
3707
  # The ARN of the `AppInstance`.
3121
3708
  #
@@ -3148,6 +3735,19 @@ module Aws::Chime
3148
3735
 
3149
3736
  # Returns the full details of an `AppInstanceAdmin`.
3150
3737
  #
3738
+ # **This API is is no longer supported and will not be updated.** We
3739
+ # recommend using the latest version, [DescribeAppInstanceAdmin][1], in
3740
+ # the Amazon Chime SDK.
3741
+ #
3742
+ # Using the latest version requires migrating to a dedicated namespace.
3743
+ # For more information, refer to [Migrating from the Amazon Chime
3744
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3745
+ #
3746
+ #
3747
+ #
3748
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_DescribeAppInstanceAdmin.html
3749
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3750
+ #
3151
3751
  # @option params [required, String] :app_instance_admin_arn
3152
3752
  # The ARN of the `AppInstanceAdmin`.
3153
3753
  #
@@ -3183,6 +3783,19 @@ module Aws::Chime
3183
3783
 
3184
3784
  # Returns the full details of an `AppInstanceUser`.
3185
3785
  #
3786
+ # **This API is is no longer supported and will not be updated.** We
3787
+ # recommend using the latest version, [DescribeAppInstanceUser][1], in
3788
+ # the Amazon Chime SDK.
3789
+ #
3790
+ # Using the latest version requires migrating to a dedicated namespace.
3791
+ # For more information, refer to [Migrating from the Amazon Chime
3792
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3793
+ #
3794
+ #
3795
+ #
3796
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_DescribeAppInstanceUser.html
3797
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3798
+ #
3186
3799
  # @option params [required, String] :app_instance_user_arn
3187
3800
  # The ARN of the `AppInstanceUser`.
3188
3801
  #
@@ -3222,6 +3835,19 @@ module Aws::Chime
3222
3835
  #
3223
3836
  # </note>
3224
3837
  #
3838
+ # **This API is is no longer supported and will not be updated.** We
3839
+ # recommend using the latest version, [DescribeChannel][1], in the
3840
+ # Amazon Chime SDK.
3841
+ #
3842
+ # Using the latest version requires migrating to a dedicated namespace.
3843
+ # For more information, refer to [Migrating from the Amazon Chime
3844
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3845
+ #
3846
+ #
3847
+ #
3848
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_DescribeChannel.html
3849
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3850
+ #
3225
3851
  # @option params [required, String] :channel_arn
3226
3852
  # The ARN of the channel.
3227
3853
  #
@@ -3269,6 +3895,19 @@ module Aws::Chime
3269
3895
  #
3270
3896
  # </note>
3271
3897
  #
3898
+ # **This API is is no longer supported and will not be updated.** We
3899
+ # recommend using the latest version, [DescribeChannelBan][1], in the
3900
+ # Amazon Chime SDK.
3901
+ #
3902
+ # Using the latest version requires migrating to a dedicated namespace.
3903
+ # For more information, refer to [Migrating from the Amazon Chime
3904
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3905
+ #
3906
+ #
3907
+ #
3908
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_DescribeChannelBan.html
3909
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3910
+ #
3272
3911
  # @option params [required, String] :channel_arn
3273
3912
  # The ARN of the channel from which the user is banned.
3274
3913
  #
@@ -3316,6 +3955,19 @@ module Aws::Chime
3316
3955
  #
3317
3956
  # </note>
3318
3957
  #
3958
+ # **This API is is no longer supported and will not be updated.** We
3959
+ # recommend using the latest version, [DescribeChannelMembership][1], in
3960
+ # the Amazon Chime SDK.
3961
+ #
3962
+ # Using the latest version requires migrating to a dedicated namespace.
3963
+ # For more information, refer to [Migrating from the Amazon Chime
3964
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
3965
+ #
3966
+ #
3967
+ #
3968
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_DescribeChannelMembership.html
3969
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3970
+ #
3319
3971
  # @option params [required, String] :channel_arn
3320
3972
  # The ARN of the channel.
3321
3973
  #
@@ -3366,6 +4018,20 @@ module Aws::Chime
3366
4018
  #
3367
4019
  # </note>
3368
4020
  #
4021
+ # **This API is is no longer supported and will not be updated.** We
4022
+ # recommend using the latest version,
4023
+ # [DescribeChannelMembershipForAppInstanceUser][1], in the Amazon Chime
4024
+ # SDK.
4025
+ #
4026
+ # Using the latest version requires migrating to a dedicated namespace.
4027
+ # For more information, refer to [Migrating from the Amazon Chime
4028
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
4029
+ #
4030
+ #
4031
+ #
4032
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_DescribeChannelMembershipForAppInstanceUser.html
4033
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
4034
+ #
3369
4035
  # @option params [required, String] :channel_arn
3370
4036
  # The ARN of the channel to which the user belongs.
3371
4037
  #
@@ -3416,6 +4082,20 @@ module Aws::Chime
3416
4082
  #
3417
4083
  # </note>
3418
4084
  #
4085
+ # **This API is is no longer supported and will not be updated.** We
4086
+ # recommend using the latest version,
4087
+ # [DescribeChannelModeratedByAppInstanceUser][1], in the Amazon Chime
4088
+ # SDK.
4089
+ #
4090
+ # Using the latest version requires migrating to a dedicated namespace.
4091
+ # For more information, refer to [Migrating from the Amazon Chime
4092
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
4093
+ #
4094
+ #
4095
+ #
4096
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_DescribeChannelModeratedByAppInstanceUser.html
4097
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
4098
+ #
3419
4099
  # @option params [required, String] :channel_arn
3420
4100
  # The ARN of the moderated channel.
3421
4101
  #
@@ -3463,6 +4143,19 @@ module Aws::Chime
3463
4143
  #
3464
4144
  # </note>
3465
4145
  #
4146
+ # **This API is is no longer supported and will not be updated.** We
4147
+ # recommend using the latest version, [DescribeChannelModerator][1], in
4148
+ # the Amazon Chime SDK.
4149
+ #
4150
+ # Using the latest version requires migrating to a dedicated namespace.
4151
+ # For more information, refer to [Migrating from the Amazon Chime
4152
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
4153
+ #
4154
+ #
4155
+ #
4156
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_DescribeChannelModerator.html
4157
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
4158
+ #
3466
4159
  # @option params [required, String] :channel_arn
3467
4160
  # The ARN of the channel.
3468
4161
  #
@@ -3532,6 +4225,20 @@ module Aws::Chime
3532
4225
  # Disassociates the specified phone numbers from the specified Amazon
3533
4226
  # Chime Voice Connector.
3534
4227
  #
4228
+ # **This API is is no longer supported and will not be updated.** We
4229
+ # recommend using the latest version,
4230
+ # [DisassociatePhoneNumbersFromVoiceConnector][1], in the Amazon Chime
4231
+ # SDK.
4232
+ #
4233
+ # Using the latest version requires migrating to a dedicated namespace.
4234
+ # For more information, refer to [Migrating from the Amazon Chime
4235
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
4236
+ #
4237
+ #
4238
+ #
4239
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_DisassociatePhoneNumbersFromVoiceConnector.html
4240
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
4241
+ #
3535
4242
  # @option params [required, String] :voice_connector_id
3536
4243
  # The Amazon Chime Voice Connector ID.
3537
4244
  #
@@ -3568,6 +4275,20 @@ module Aws::Chime
3568
4275
  # Disassociates the specified phone numbers from the specified Amazon
3569
4276
  # Chime Voice Connector group.
3570
4277
  #
4278
+ # **This API is is no longer supported and will not be updated.** We
4279
+ # recommend using the latest version,
4280
+ # [DisassociatePhoneNumbersFromVoiceConnectorGroup][1], in the Amazon
4281
+ # Chime SDK.
4282
+ #
4283
+ # Using the latest version requires migrating to a dedicated namespace.
4284
+ # For more information, refer to [Migrating from the Amazon Chime
4285
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
4286
+ #
4287
+ #
4288
+ #
4289
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_DisassociatePhoneNumbersFromVoiceConnectorGroup.html
4290
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
4291
+ #
3571
4292
  # @option params [required, String] :voice_connector_group_id
3572
4293
  # The Amazon Chime Voice Connector group ID.
3573
4294
  #
@@ -3705,6 +4426,19 @@ module Aws::Chime
3705
4426
 
3706
4427
  # Gets the retention settings for an `AppInstance`.
3707
4428
  #
4429
+ # **This API is is no longer supported and will not be updated.** We
4430
+ # recommend using the latest version,
4431
+ # [GetMessagingRetentionSettings][1], in the Amazon Chime SDK.
4432
+ #
4433
+ # Using the latest version requires migrating to a dedicated namespace.
4434
+ # For more information, refer to [Migrating from the Amazon Chime
4435
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
4436
+ #
4437
+ #
4438
+ #
4439
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_GetAppInstanceRetentionSettings.html
4440
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
4441
+ #
3708
4442
  # @option params [required, String] :app_instance_arn
3709
4443
  # The ARN of the `AppInstance`.
3710
4444
  #
@@ -3735,6 +4469,19 @@ module Aws::Chime
3735
4469
 
3736
4470
  # Gets the streaming settings for an `AppInstance`.
3737
4471
  #
4472
+ # **This API is is no longer supported and will not be updated.** We
4473
+ # recommend using the latest version,
4474
+ # [GetMessagingStreamingConfigurations][1], in the Amazon Chime SDK.
4475
+ #
4476
+ # Using the latest version requires migrating to a dedicated namespace.
4477
+ # For more information, refer to [Migrating from the Amazon Chime
4478
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
4479
+ #
4480
+ #
4481
+ #
4482
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_GetMessagingStreamingConfigurations.html
4483
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
4484
+ #
3738
4485
  # @option params [required, String] :app_instance_arn
3739
4486
  # The ARN of the `AppInstance`.
3740
4487
  #
@@ -3766,11 +4513,21 @@ module Aws::Chime
3766
4513
  # Gets the Amazon Chime SDK attendee details for a specified meeting ID
3767
4514
  # and attendee ID. For more information about the Amazon Chime SDK, see
3768
4515
  # [Using the Amazon Chime SDK][1] in the *Amazon Chime SDK Developer
3769
- # Guide* .
4516
+ # Guide*.
4517
+ #
4518
+ # **This API is is no longer supported and will not be updated.** We
4519
+ # recommend using the latest version, [GetAttendee][2], in the Amazon
4520
+ # Chime SDK.
4521
+ #
4522
+ # Using the latest version requires migrating to a dedicated namespace.
4523
+ # For more information, refer to [Migrating from the Amazon Chime
4524
+ # namespace][3] in the *Amazon Chime SDK Developer Guide*.
3770
4525
  #
3771
4526
  #
3772
4527
  #
3773
4528
  # [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
4529
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_GetAttendee.html
4530
+ # [3]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
3774
4531
  #
3775
4532
  # @option params [required, String] :meeting_id
3776
4533
  # The Amazon Chime SDK meeting ID.
@@ -3853,6 +4610,19 @@ module Aws::Chime
3853
4610
  #
3854
4611
  # </note>
3855
4612
  #
4613
+ # **This API is is no longer supported and will not be updated.** We
4614
+ # recommend using the latest version, [GetChannelMessage][1], in the
4615
+ # Amazon Chime SDK.
4616
+ #
4617
+ # Using the latest version requires migrating to a dedicated namespace.
4618
+ # For more information, refer to [Migrating from the Amazon Chime
4619
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
4620
+ #
4621
+ #
4622
+ #
4623
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_GetChannelMessage.html
4624
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
4625
+ #
3856
4626
  # @option params [required, String] :channel_arn
3857
4627
  # The ARN of the channel.
3858
4628
  #
@@ -3958,6 +4728,19 @@ module Aws::Chime
3958
4728
 
3959
4729
  # Gets an existing media capture pipeline.
3960
4730
  #
4731
+ # **This API is is no longer supported and will not be updated.** We
4732
+ # recommend using the latest version, [GetMediaCapturePipeline][1], in
4733
+ # the Amazon Chime SDK.
4734
+ #
4735
+ # Using the latest version requires migrating to a dedicated namespace.
4736
+ # For more information, refer to [Migrating from the Amazon Chime
4737
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
4738
+ #
4739
+ #
4740
+ #
4741
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_media-pipelines-chime_GetMediaCapturePipeline.html
4742
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
4743
+ #
3961
4744
  # @option params [required, String] :media_pipeline_id
3962
4745
  # The ID of the pipeline that you want to get.
3963
4746
  #
@@ -4000,13 +4783,23 @@ module Aws::Chime
4000
4783
  req.send_request(options)
4001
4784
  end
4002
4785
 
4786
+ # **This API is is no longer supported and will not be updated.** We
4787
+ # recommend using the latest version, [GetMeeting][1], in the Amazon
4788
+ # Chime SDK.
4789
+ #
4790
+ # Using the latest version requires migrating to a dedicated namespace.
4791
+ # For more information, refer to [Migrating from the Amazon Chime
4792
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
4793
+ #
4003
4794
  # Gets the Amazon Chime SDK meeting details for the specified meeting
4004
4795
  # ID. For more information about the Amazon Chime SDK, see [Using the
4005
- # Amazon Chime SDK][1] in the *Amazon Chime SDK Developer Guide* .
4796
+ # Amazon Chime SDK][3] in the *Amazon Chime SDK Developer Guide* .
4006
4797
  #
4007
4798
  #
4008
4799
  #
4009
- # [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
4800
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_GetMeeting.html
4801
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
4802
+ # [3]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
4010
4803
  #
4011
4804
  # @option params [required, String] :meeting_id
4012
4805
  # The Amazon Chime SDK meeting ID.
@@ -4046,6 +4839,19 @@ module Aws::Chime
4046
4839
 
4047
4840
  # The details of the endpoint for the messaging session.
4048
4841
  #
4842
+ # **This API is is no longer supported and will not be updated.** We
4843
+ # recommend using the latest version, [GetMessagingSessionEndpoint][1],
4844
+ # in the Amazon Chime SDK.
4845
+ #
4846
+ # Using the latest version requires migrating to a dedicated namespace.
4847
+ # For more information, refer to [Migrating from the Amazon Chime
4848
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
4849
+ #
4850
+ #
4851
+ #
4852
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_GetMessagingSessionEndpoint.html
4853
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
4854
+ #
4049
4855
  # @return [Types::GetMessagingSessionEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4050
4856
  #
4051
4857
  # * {Types::GetMessagingSessionEndpointResponse#endpoint #endpoint} => Types::MessagingSessionEndpoint
@@ -4174,6 +4980,19 @@ module Aws::Chime
4174
4980
  # Gets the specified proxy session details for the specified Amazon
4175
4981
  # Chime Voice Connector.
4176
4982
  #
4983
+ # **This API is is no longer supported and will not be updated.** We
4984
+ # recommend using the latest version, [GetProxySession][1], in the
4985
+ # Amazon Chime SDK.
4986
+ #
4987
+ # Using the latest version requires migrating to a dedicated namespace.
4988
+ # For more information, refer to [Migrating from the Amazon Chime
4989
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
4990
+ #
4991
+ #
4992
+ #
4993
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetProxySession.html
4994
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
4995
+ #
4177
4996
  # @option params [required, String] :voice_connector_id
4178
4997
  # The Amazon Chime voice connector ID.
4179
4998
  #
@@ -4299,6 +5118,19 @@ module Aws::Chime
4299
5118
  # Retrieves the information for a SIP media application, including name,
4300
5119
  # AWS Region, and endpoints.
4301
5120
  #
5121
+ # **This API is is no longer supported and will not be updated.** We
5122
+ # recommend using the latest version, [GetSipMediaApplication][1], in
5123
+ # the Amazon Chime SDK.
5124
+ #
5125
+ # Using the latest version requires migrating to a dedicated namespace.
5126
+ # For more information, refer to [Migrating from the Amazon Chime
5127
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5128
+ #
5129
+ #
5130
+ #
5131
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetSipMediaApplication.html
5132
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5133
+ #
4302
5134
  # @option params [required, String] :sip_media_application_id
4303
5135
  # The SIP media application ID.
4304
5136
  #
@@ -4334,6 +5166,20 @@ module Aws::Chime
4334
5166
  # Returns the logging configuration for the specified SIP media
4335
5167
  # application.
4336
5168
  #
5169
+ # **This API is is no longer supported and will not be updated.** We
5170
+ # recommend using the latest version,
5171
+ # [GetSipMediaApplicationLoggingConfiguration][1], in the Amazon Chime
5172
+ # SDK.
5173
+ #
5174
+ # Using the latest version requires migrating to a dedicated namespace.
5175
+ # For more information, refer to [Migrating from the Amazon Chime
5176
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5177
+ #
5178
+ #
5179
+ #
5180
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetSipMediaApplicationLoggingConfiguration.html
5181
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5182
+ #
4337
5183
  # @option params [required, String] :sip_media_application_id
4338
5184
  # The SIP media application ID.
4339
5185
  #
@@ -4363,6 +5209,19 @@ module Aws::Chime
4363
5209
  # Retrieves the details of a SIP rule, such as the rule ID, name,
4364
5210
  # triggers, and target endpoints.
4365
5211
  #
5212
+ # **This API is is no longer supported and will not be updated.** We
5213
+ # recommend using the latest version, [GetSipRule][1], in the Amazon
5214
+ # Chime SDK.
5215
+ #
5216
+ # Using the latest version requires migrating to a dedicated namespace.
5217
+ # For more information, refer to [Migrating from the Amazon Chime
5218
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5219
+ #
5220
+ #
5221
+ #
5222
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetSipRule.html
5223
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5224
+ #
4366
5225
  # @option params [required, String] :sip_rule_id
4367
5226
  # The SIP rule ID.
4368
5227
  #
@@ -4486,6 +5345,19 @@ module Aws::Chime
4486
5345
  # Retrieves details for the specified Amazon Chime Voice Connector, such
4487
5346
  # as timestamps,name, outbound host, and encryption requirements.
4488
5347
  #
5348
+ # **This API is is no longer supported and will not be updated.** We
5349
+ # recommend using the latest version, [GetVoiceConnector][1], in the
5350
+ # Amazon Chime SDK.
5351
+ #
5352
+ # Using the latest version requires migrating to a dedicated namespace.
5353
+ # For more information, refer to [Migrating from the Amazon Chime
5354
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5355
+ #
5356
+ #
5357
+ #
5358
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnector.html
5359
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5360
+ #
4489
5361
  # @option params [required, String] :voice_connector_id
4490
5362
  # The Amazon Chime Voice Connector ID.
4491
5363
  #
@@ -4522,6 +5394,20 @@ module Aws::Chime
4522
5394
  # Gets the emergency calling configuration details for the specified
4523
5395
  # Amazon Chime Voice Connector.
4524
5396
  #
5397
+ # **This API is is no longer supported and will not be updated.** We
5398
+ # recommend using the latest version,
5399
+ # [GetVoiceConnectorEmergencyCallingConfiguration][1], in the Amazon
5400
+ # Chime SDK.
5401
+ #
5402
+ # Using the latest version requires migrating to a dedicated namespace.
5403
+ # For more information, refer to [Migrating from the Amazon Chime
5404
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5405
+ #
5406
+ #
5407
+ #
5408
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorEmergencyCallingConfiguration.html
5409
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5410
+ #
4525
5411
  # @option params [required, String] :voice_connector_id
4526
5412
  # The Amazon Chime Voice Connector ID.
4527
5413
  #
@@ -4554,6 +5440,19 @@ module Aws::Chime
4554
5440
  # Retrieves details for the specified Amazon Chime Voice Connector
4555
5441
  # group, such as timestamps,name, and associated `VoiceConnectorItems`.
4556
5442
  #
5443
+ # **This API is is no longer supported and will not be updated.** We
5444
+ # recommend using the latest version, [GetVoiceConnectorGroup][1], in
5445
+ # the Amazon Chime SDK.
5446
+ #
5447
+ # Using the latest version requires migrating to a dedicated namespace.
5448
+ # For more information, refer to [Migrating from the Amazon Chime
5449
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5450
+ #
5451
+ #
5452
+ #
5453
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorGroup.html
5454
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5455
+ #
4557
5456
  # @option params [required, String] :voice_connector_group_id
4558
5457
  # The Amazon Chime Voice Connector group ID.
4559
5458
  #
@@ -4591,6 +5490,19 @@ module Aws::Chime
4591
5490
  # Chime Voice Connector. Shows whether SIP message logs are enabled for
4592
5491
  # sending to Amazon CloudWatch Logs.
4593
5492
  #
5493
+ # **This API is is no longer supported and will not be updated.** We
5494
+ # recommend using the latest version,
5495
+ # [GetVoiceConnectorLoggingConfiguration][1], in the Amazon Chime SDK.
5496
+ #
5497
+ # Using the latest version requires migrating to a dedicated namespace.
5498
+ # For more information, refer to [Migrating from the Amazon Chime
5499
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5500
+ #
5501
+ #
5502
+ #
5503
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorLoggingConfiguration.html
5504
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5505
+ #
4594
5506
  # @option params [required, String] :voice_connector_id
4595
5507
  # The Amazon Chime Voice Connector ID.
4596
5508
  #
@@ -4621,6 +5533,19 @@ module Aws::Chime
4621
5533
  # Retrieves origination setting details for the specified Amazon Chime
4622
5534
  # Voice Connector.
4623
5535
  #
5536
+ # **This API is is no longer supported and will not be updated.** We
5537
+ # recommend using the latest version, [GetVoiceConnectorOrigination][1],
5538
+ # in the Amazon Chime SDK.
5539
+ #
5540
+ # Using the latest version requires migrating to a dedicated namespace.
5541
+ # For more information, refer to [Migrating from the Amazon Chime
5542
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5543
+ #
5544
+ #
5545
+ #
5546
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorOrigination.html
5547
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5548
+ #
4624
5549
  # @option params [required, String] :voice_connector_id
4625
5550
  # The Amazon Chime Voice Connector ID.
4626
5551
  #
@@ -4656,6 +5581,19 @@ module Aws::Chime
4656
5581
  # Gets the proxy configuration details for the specified Amazon Chime
4657
5582
  # Voice Connector.
4658
5583
  #
5584
+ # **This API is is no longer supported and will not be updated.** We
5585
+ # recommend using the latest version, [GetVoiceConnectorProxy][1], in
5586
+ # the Amazon Chime SDK.
5587
+ #
5588
+ # Using the latest version requires migrating to a dedicated namespace.
5589
+ # For more information, refer to [Migrating from the Amazon Chime
5590
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5591
+ #
5592
+ #
5593
+ #
5594
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorProxy.html
5595
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5596
+ #
4659
5597
  # @option params [required, String] :voice_connector_id
4660
5598
  # The Amazon Chime voice connector ID.
4661
5599
  #
@@ -4691,6 +5629,19 @@ module Aws::Chime
4691
5629
  # sending to Amazon Kinesis. It also shows the retention period, in
4692
5630
  # hours, for the Amazon Kinesis data.
4693
5631
  #
5632
+ # **This API is is no longer supported and will not be updated.** We
5633
+ # recommend using the latest version,
5634
+ # [GetVoiceConnectorStreamingConfiguration][1], in the Amazon Chime SDK.
5635
+ #
5636
+ # Using the latest version requires migrating to a dedicated namespace.
5637
+ # For more information, refer to [Migrating from the Amazon Chime
5638
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5639
+ #
5640
+ #
5641
+ #
5642
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorStreamingConfiguration.html
5643
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5644
+ #
4694
5645
  # @option params [required, String] :voice_connector_id
4695
5646
  # The Amazon Chime Voice Connector ID.
4696
5647
  #
@@ -4723,6 +5674,19 @@ module Aws::Chime
4723
5674
  # Retrieves termination setting details for the specified Amazon Chime
4724
5675
  # Voice Connector.
4725
5676
  #
5677
+ # **This API is is no longer supported and will not be updated.** We
5678
+ # recommend using the latest version, [GetVoiceConnectorTermination][1],
5679
+ # in the Amazon Chime SDK.
5680
+ #
5681
+ # Using the latest version requires migrating to a dedicated namespace.
5682
+ # For more information, refer to [Migrating from the Amazon Chime
5683
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5684
+ #
5685
+ #
5686
+ #
5687
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorTermination.html
5688
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5689
+ #
4726
5690
  # @option params [required, String] :voice_connector_id
4727
5691
  # The Amazon Chime Voice Connector ID.
4728
5692
  #
@@ -4755,10 +5719,23 @@ module Aws::Chime
4755
5719
  req.send_request(options)
4756
5720
  end
4757
5721
 
5722
+ # **This API is is no longer supported and will not be updated.** We
5723
+ # recommend using the latest version,
5724
+ # [GetVoiceConnectorTerminationHealth][1], in the Amazon Chime SDK.
5725
+ #
5726
+ # Using the latest version requires migrating to a dedicated namespace.
5727
+ # For more information, refer to [Migrating from the Amazon Chime
5728
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5729
+ #
4758
5730
  # Retrieves information about the last time a SIP `OPTIONS` ping was
4759
5731
  # received from your SIP infrastructure for the specified Amazon Chime
4760
5732
  # Voice Connector.
4761
5733
  #
5734
+ #
5735
+ #
5736
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorTerminationHealth.html
5737
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5738
+ #
4762
5739
  # @option params [required, String] :voice_connector_id
4763
5740
  # The Amazon Chime Voice Connector ID.
4764
5741
  #
@@ -4889,6 +5866,19 @@ module Aws::Chime
4889
5866
 
4890
5867
  # Returns a list of the administrators in the `AppInstance`.
4891
5868
  #
5869
+ # **This API is is no longer supported and will not be updated.** We
5870
+ # recommend using the latest version, [ListAppInstanceAdmins][1], in the
5871
+ # Amazon Chime SDK.
5872
+ #
5873
+ # Using the latest version requires migrating to a dedicated namespace.
5874
+ # For more information, refer to [Migrating from the Amazon Chime
5875
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5876
+ #
5877
+ #
5878
+ #
5879
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_ListAppInstanceAdmins.html
5880
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5881
+ #
4892
5882
  # @option params [required, String] :app_instance_arn
4893
5883
  # The ARN of the `AppInstance`.
4894
5884
  #
@@ -4934,6 +5924,19 @@ module Aws::Chime
4934
5924
 
4935
5925
  # List all `AppInstanceUsers` created under a single `AppInstance`.
4936
5926
  #
5927
+ # **This API is is no longer supported and will not be updated.** We
5928
+ # recommend using the latest version, [ListAppInstanceUsers][1], in the
5929
+ # Amazon Chime SDK.
5930
+ #
5931
+ # Using the latest version requires migrating to a dedicated namespace.
5932
+ # For more information, refer to [Migrating from the Amazon Chime
5933
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5934
+ #
5935
+ #
5936
+ #
5937
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_ListAppInstanceUsers.html
5938
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5939
+ #
4937
5940
  # @option params [required, String] :app_instance_arn
4938
5941
  # The ARN of the `AppInstance`.
4939
5942
  #
@@ -4981,6 +5984,19 @@ module Aws::Chime
4981
5984
  # Lists all Amazon Chime `AppInstance`s created under a single AWS
4982
5985
  # account.
4983
5986
  #
5987
+ # **This API is is no longer supported and will not be updated.** We
5988
+ # recommend using the latest version, [ListAppInstances][1], in the
5989
+ # Amazon Chime SDK.
5990
+ #
5991
+ # Using the latest version requires migrating to a dedicated namespace.
5992
+ # For more information, refer to [Migrating from the Amazon Chime
5993
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
5994
+ #
5995
+ #
5996
+ #
5997
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_ListAppInstances.html
5998
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5999
+ #
4984
6000
  # @option params [Integer] :max_results
4985
6001
  # The maximum number of `AppInstance`s that you want to return.
4986
6002
  #
@@ -5021,6 +6037,9 @@ module Aws::Chime
5021
6037
 
5022
6038
  # Lists the tags applied to an Amazon Chime SDK attendee resource.
5023
6039
  #
6040
+ # ListAttendeeTags is not supported in the Amazon Chime SDK Meetings
6041
+ # Namespace. Update your application to remove calls to this API.
6042
+ #
5024
6043
  # @option params [required, String] :meeting_id
5025
6044
  # The Amazon Chime SDK meeting ID.
5026
6045
  #
@@ -5057,9 +6076,19 @@ module Aws::Chime
5057
6076
  # more information about the Amazon Chime SDK, see [Using the Amazon
5058
6077
  # Chime SDK][1] in the *Amazon Chime SDK Developer Guide*.
5059
6078
  #
6079
+ # **This API is is no longer supported and will not be updated.** We
6080
+ # recommend using the latest version, [ListAttendees][2], in the Amazon
6081
+ # Chime SDK.
6082
+ #
6083
+ # Using the latest version requires migrating to a dedicated namespace.
6084
+ # For more information, refer to [Migrating from the Amazon Chime
6085
+ # namespace][3] in the *Amazon Chime SDK Developer Guide*.
6086
+ #
5060
6087
  #
5061
6088
  #
5062
6089
  # [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
6090
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_ListAttendees.html
6091
+ # [3]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
5063
6092
  #
5064
6093
  # @option params [required, String] :meeting_id
5065
6094
  # The Amazon Chime SDK meeting ID.
@@ -5161,6 +6190,19 @@ module Aws::Chime
5161
6190
  #
5162
6191
  # </note>
5163
6192
  #
6193
+ # **This API is is no longer supported and will not be updated.** We
6194
+ # recommend using the latest version, [ListChannelBans][1], in the
6195
+ # Amazon Chime SDK.
6196
+ #
6197
+ # Using the latest version requires migrating to a dedicated namespace.
6198
+ # For more information, refer to [Migrating from the Amazon Chime
6199
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
6200
+ #
6201
+ #
6202
+ #
6203
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannelBans.html
6204
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
6205
+ #
5164
6206
  # @option params [required, String] :channel_arn
5165
6207
  # The ARN of the channel.
5166
6208
  #
@@ -5216,6 +6258,19 @@ module Aws::Chime
5216
6258
  #
5217
6259
  # </note>
5218
6260
  #
6261
+ # **This API is is no longer supported and will not be updated.** We
6262
+ # recommend using the latest version, [ListChannelMemberships][1], in
6263
+ # the Amazon Chime SDK.
6264
+ #
6265
+ # Using the latest version requires migrating to a dedicated namespace.
6266
+ # For more information, refer to [Migrating from the Amazon Chime
6267
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
6268
+ #
6269
+ #
6270
+ #
6271
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannelMemberships.html
6272
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
6273
+ #
5219
6274
  # @option params [required, String] :channel_arn
5220
6275
  # The maximum number of channel memberships that you want returned.
5221
6276
  #
@@ -5281,6 +6336,20 @@ module Aws::Chime
5281
6336
  #
5282
6337
  # </note>
5283
6338
  #
6339
+ # **This API is is no longer supported and will not be updated.** We
6340
+ # recommend using the latest version,
6341
+ # [ListChannelMembershipsForAppInstanceUser][1], in the Amazon Chime
6342
+ # SDK.
6343
+ #
6344
+ # Using the latest version requires migrating to a dedicated namespace.
6345
+ # For more information, refer to [Migrating from the Amazon Chime
6346
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
6347
+ #
6348
+ #
6349
+ #
6350
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannelMembershipsForAppInstanceUser.html
6351
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
6352
+ #
5284
6353
  # @option params [String] :app_instance_user_arn
5285
6354
  # The ARN of the `AppInstanceUser`s
5286
6355
  #
@@ -5346,6 +6415,19 @@ module Aws::Chime
5346
6415
  #
5347
6416
  # </note>
5348
6417
  #
6418
+ # **This API is is no longer supported and will not be updated.** We
6419
+ # recommend using the latest version, [ListChannelMessages][1], in the
6420
+ # Amazon Chime SDK.
6421
+ #
6422
+ # Using the latest version requires migrating to a dedicated namespace.
6423
+ # For more information, refer to [Migrating from the Amazon Chime
6424
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
6425
+ #
6426
+ #
6427
+ #
6428
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannelMessages.html
6429
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
6430
+ #
5349
6431
  # @option params [required, String] :channel_arn
5350
6432
  # The ARN of the channel.
5351
6433
  #
@@ -5422,6 +6504,19 @@ module Aws::Chime
5422
6504
  #
5423
6505
  # </note>
5424
6506
  #
6507
+ # **This API is is no longer supported and will not be updated.** We
6508
+ # recommend using the latest version, [ListChannelModerators][1], in the
6509
+ # Amazon Chime SDK.
6510
+ #
6511
+ # Using the latest version requires migrating to a dedicated namespace.
6512
+ # For more information, refer to [Migrating from the Amazon Chime
6513
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
6514
+ #
6515
+ #
6516
+ #
6517
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannelModerators.html
6518
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
6519
+ #
5425
6520
  # @option params [required, String] :channel_arn
5426
6521
  # The ARN of the channel.
5427
6522
  #
@@ -5486,6 +6581,19 @@ module Aws::Chime
5486
6581
  #
5487
6582
  # </note>
5488
6583
  #
6584
+ # **This API is is no longer supported and will not be updated.** We
6585
+ # recommend using the latest version, [ListChannels][1], in the Amazon
6586
+ # Chime SDK.
6587
+ #
6588
+ # Using the latest version requires migrating to a dedicated namespace.
6589
+ # For more information, refer to [Migrating from the Amazon Chime
6590
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
6591
+ #
6592
+ #
6593
+ #
6594
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannels.html
6595
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
6596
+ #
5489
6597
  # @option params [required, String] :app_instance_arn
5490
6598
  # The ARN of the `AppInstance`.
5491
6599
  #
@@ -5549,6 +6657,19 @@ module Aws::Chime
5549
6657
  #
5550
6658
  # </note>
5551
6659
  #
6660
+ # **This API is is no longer supported and will not be updated.** We
6661
+ # recommend using the latest version,
6662
+ # [ListChannelsModeratedByAppInstanceUser][1], in the Amazon Chime SDK.
6663
+ #
6664
+ # Using the latest version requires migrating to a dedicated namespace.
6665
+ # For more information, refer to [Migrating from the Amazon Chime
6666
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
6667
+ #
6668
+ #
6669
+ #
6670
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannelsModeratedByAppInstanceUser.html
6671
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
6672
+ #
5552
6673
  # @option params [String] :app_instance_user_arn
5553
6674
  # The ARN of the user in the moderated channel.
5554
6675
  #
@@ -5600,6 +6721,19 @@ module Aws::Chime
5600
6721
 
5601
6722
  # Returns a list of media capture pipelines.
5602
6723
  #
6724
+ # **This API is is no longer supported and will not be updated.** We
6725
+ # recommend using the latest version, [ListMediaCapturePipelines][1], in
6726
+ # the Amazon Chime SDK.
6727
+ #
6728
+ # Using the latest version requires migrating to a dedicated namespace.
6729
+ # For more information, refer to [Migrating from the Amazon Chime
6730
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
6731
+ #
6732
+ #
6733
+ #
6734
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_media-pipelines-chime_ListMediaCapturePipelines.html
6735
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
6736
+ #
5603
6737
  # @option params [String] :next_token
5604
6738
  # The token used to retrieve the next page of results.
5605
6739
  #
@@ -5654,6 +6788,19 @@ module Aws::Chime
5654
6788
 
5655
6789
  # Lists the tags applied to an Amazon Chime SDK meeting resource.
5656
6790
  #
6791
+ # **This API is is no longer supported and will not be updated.** We
6792
+ # recommend using the latest version, [ListTagsForResource][1], in the
6793
+ # Amazon Chime SDK.
6794
+ #
6795
+ # Using the latest version requires migrating to a dedicated namespace.
6796
+ # For more information, refer to [Migrating from the Amazon Chime
6797
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
6798
+ #
6799
+ #
6800
+ #
6801
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_ListTagsForResource.html
6802
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
6803
+ #
5657
6804
  # @option params [required, String] :meeting_id
5658
6805
  # The Amazon Chime SDK meeting ID.
5659
6806
  #
@@ -5682,9 +6829,13 @@ module Aws::Chime
5682
6829
  req.send_request(options)
5683
6830
  end
5684
6831
 
5685
- # Lists up to 100 active Amazon Chime SDK meetings. For more information
5686
- # about the Amazon Chime SDK, see [Using the Amazon Chime SDK][1] in the
5687
- # *Amazon Chime SDK Developer Guide*.
6832
+ # Lists up to 100 active Amazon Chime SDK meetings.
6833
+ #
6834
+ # ListMeetings is not supported in the Amazon Chime SDK Meetings
6835
+ # Namespace. Update your application to remove calls to this API.
6836
+ #
6837
+ # For more information about the Amazon Chime SDK, see [Using the Amazon
6838
+ # Chime SDK][1] in the *Amazon Chime SDK Developer Guide*.
5688
6839
  #
5689
6840
  #
5690
6841
  #
@@ -5858,6 +7009,19 @@ module Aws::Chime
5858
7009
  # Lists the proxy sessions for the specified Amazon Chime Voice
5859
7010
  # Connector.
5860
7011
  #
7012
+ # **This API is is no longer supported and will not be updated.** We
7013
+ # recommend using the latest version, [ListProxySessions][1], in the
7014
+ # Amazon Chime SDK.
7015
+ #
7016
+ # Using the latest version requires migrating to a dedicated namespace.
7017
+ # For more information, refer to [Migrating from the Amazon Chime
7018
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
7019
+ #
7020
+ #
7021
+ #
7022
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_ListProxySessions.html
7023
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
7024
+ #
5861
7025
  # @option params [required, String] :voice_connector_id
5862
7026
  # The Amazon Chime voice connector ID.
5863
7027
  #
@@ -6027,6 +7191,19 @@ module Aws::Chime
6027
7191
  # Lists the SIP media applications under the administrator's AWS
6028
7192
  # account.
6029
7193
  #
7194
+ # **This API is is no longer supported and will not be updated.** We
7195
+ # recommend using the latest version, [ListSipMediaApplications][1], in
7196
+ # the Amazon Chime SDK.
7197
+ #
7198
+ # Using the latest version requires migrating to a dedicated namespace.
7199
+ # For more information, refer to [Migrating from the Amazon Chime
7200
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
7201
+ #
7202
+ #
7203
+ #
7204
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_ListSipMediaApplications.html
7205
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
7206
+ #
6030
7207
  # @option params [Integer] :max_results
6031
7208
  # The maximum number of results to return in a single call. Defaults to
6032
7209
  # 100.
@@ -6071,6 +7248,19 @@ module Aws::Chime
6071
7248
 
6072
7249
  # Lists the SIP rules under the administrator's AWS account.
6073
7250
  #
7251
+ # **This API is is no longer supported and will not be updated.** We
7252
+ # recommend using the latest version, [ListSipRules][1], in the Amazon
7253
+ # Chime SDK.
7254
+ #
7255
+ # Using the latest version requires migrating to a dedicated namespace.
7256
+ # For more information, refer to [Migrating from the Amazon Chime
7257
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
7258
+ #
7259
+ #
7260
+ #
7261
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_ListSipRules.html
7262
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
7263
+ #
6074
7264
  # @option params [String] :sip_media_application_id
6075
7265
  # The SIP media application ID.
6076
7266
  #
@@ -6152,7 +7342,25 @@ module Aws::Chime
6152
7342
  req.send_request(options)
6153
7343
  end
6154
7344
 
6155
- # Lists the tags applied to an Amazon Chime SDK meeting resource.
7345
+ # Lists the tags applied to an Amazon Chime SDK meeting and messaging
7346
+ # resources.
7347
+ #
7348
+ # **This API is is no longer supported and will not be updated.** We
7349
+ # recommend using the applicable latest version in the Amazon Chime SDK.
7350
+ #
7351
+ # * For meetings: [ListTagsForResource][1].
7352
+ #
7353
+ # * For messaging: [ListTagsForResource][2].
7354
+ #
7355
+ # Using the latest version requires migrating to a dedicated namespace.
7356
+ # For more information, refer to [Migrating from the Amazon Chime
7357
+ # namespace][3] in the *Amazon Chime SDK Developer Guide*.
7358
+ #
7359
+ #
7360
+ #
7361
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_ListTagsForResource.html
7362
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListTagsForResource.html
7363
+ # [3]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
6156
7364
  #
6157
7365
  # @option params [required, String] :resource_arn
6158
7366
  # The resource ARN.
@@ -6250,6 +7458,19 @@ module Aws::Chime
6250
7458
  # Lists the Amazon Chime Voice Connector groups for the administrator's
6251
7459
  # AWS account.
6252
7460
  #
7461
+ # **This API is is no longer supported and will not be updated.** We
7462
+ # recommend using the latest version, [ListVoiceConnectorGroups][1], in
7463
+ # the Amazon Chime SDK.
7464
+ #
7465
+ # Using the latest version requires migrating to a dedicated namespace.
7466
+ # For more information, refer to [Migrating from the Amazon Chime
7467
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
7468
+ #
7469
+ #
7470
+ #
7471
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_ListVoiceConnectorGroups.html
7472
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
7473
+ #
6253
7474
  # @option params [String] :next_token
6254
7475
  # The token to use to retrieve the next page of results.
6255
7476
  #
@@ -6295,6 +7516,20 @@ module Aws::Chime
6295
7516
  # Lists the SIP credentials for the specified Amazon Chime Voice
6296
7517
  # Connector.
6297
7518
  #
7519
+ # **This API is is no longer supported and will not be updated.** We
7520
+ # recommend using the latest version,
7521
+ # [ListVoiceConnectorTerminationCredentials][1], in the Amazon Chime
7522
+ # SDK.
7523
+ #
7524
+ # Using the latest version requires migrating to a dedicated namespace.
7525
+ # For more information, refer to [Migrating from the Amazon Chime
7526
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
7527
+ #
7528
+ #
7529
+ #
7530
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_ListVoiceConnectorTerminationCredentials.html
7531
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
7532
+ #
6298
7533
  # @option params [required, String] :voice_connector_id
6299
7534
  # The Amazon Chime Voice Connector ID.
6300
7535
  #
@@ -6325,6 +7560,19 @@ module Aws::Chime
6325
7560
  # Lists the Amazon Chime Voice Connectors for the administrator's AWS
6326
7561
  # account.
6327
7562
  #
7563
+ # **This API is is no longer supported and will not be updated.** We
7564
+ # recommend using the latest version, [ListVoiceConnectors][1], in the
7565
+ # Amazon Chime SDK.
7566
+ #
7567
+ # Using the latest version requires migrating to a dedicated namespace.
7568
+ # For more information, refer to [Migrating from the Amazon Chime
7569
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
7570
+ #
7571
+ #
7572
+ #
7573
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_ListVoiceConnectors.html
7574
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
7575
+ #
6328
7576
  # @option params [String] :next_token
6329
7577
  # The token to use to retrieve the next page of results.
6330
7578
  #
@@ -6397,6 +7645,19 @@ module Aws::Chime
6397
7645
  # Sets the amount of time in days that a given `AppInstance` retains
6398
7646
  # data.
6399
7647
  #
7648
+ # **This API is is no longer supported and will not be updated.** We
7649
+ # recommend using the latest version,
7650
+ # [PutAppInstanceRetentionSettings][1], in the Amazon Chime SDK.
7651
+ #
7652
+ # Using the latest version requires migrating to a dedicated namespace.
7653
+ # For more information, refer to [Migrating from the Amazon Chime
7654
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
7655
+ #
7656
+ #
7657
+ #
7658
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_PutAppInstanceRetentionSettings.html
7659
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
7660
+ #
6400
7661
  # @option params [required, String] :app_instance_arn
6401
7662
  # The ARN of the `AppInstance`.
6402
7663
  #
@@ -6435,6 +7696,19 @@ module Aws::Chime
6435
7696
 
6436
7697
  # The data streaming configurations of an `AppInstance`.
6437
7698
  #
7699
+ # **This API is is no longer supported and will not be updated.** We
7700
+ # recommend using the latest version,
7701
+ # [PutMessagingStreamingConfigurations][1], in the Amazon Chime SDK.
7702
+ #
7703
+ # Using the latest version requires migrating to a dedicated namespace.
7704
+ # For more information, refer to [Migrating from the Amazon Chime
7705
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
7706
+ #
7707
+ #
7708
+ #
7709
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_PutMessagingStreamingConfigurations.html
7710
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
7711
+ #
6438
7712
  # @option params [required, String] :app_instance_arn
6439
7713
  # The ARN of the `AppInstance`.
6440
7714
  #
@@ -6576,6 +7850,20 @@ module Aws::Chime
6576
7850
  # Updates the logging configuration for the specified SIP media
6577
7851
  # application.
6578
7852
  #
7853
+ # **This API is is no longer supported and will not be updated.** We
7854
+ # recommend using the latest version,
7855
+ # [PutSipMediaApplicationLoggingConfiguration][1], in the Amazon Chime
7856
+ # SDK.
7857
+ #
7858
+ # Using the latest version requires migrating to a dedicated namespace.
7859
+ # For more information, refer to [Migrating from the Amazon Chime
7860
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
7861
+ #
7862
+ #
7863
+ #
7864
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutSipMediaApplicationLoggingConfiguration.html
7865
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
7866
+ #
6579
7867
  # @option params [required, String] :sip_media_application_id
6580
7868
  # The SIP media application ID.
6581
7869
  #
@@ -6614,6 +7902,20 @@ module Aws::Chime
6614
7902
  # the Amazon Chime Voice Connector before emergency calling can be
6615
7903
  # configured.
6616
7904
  #
7905
+ # **This API is is no longer supported and will not be updated.** We
7906
+ # recommend using the latest version,
7907
+ # [PutVoiceConnectorEmergencyCallingConfiguration][1], in the Amazon
7908
+ # Chime SDK.
7909
+ #
7910
+ # Using the latest version requires migrating to a dedicated namespace.
7911
+ # For more information, refer to [Migrating from the Amazon Chime
7912
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
7913
+ #
7914
+ #
7915
+ #
7916
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutVoiceConnectorEmergencyCallingConfiguration.html
7917
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
7918
+ #
6617
7919
  # @option params [required, String] :voice_connector_id
6618
7920
  # The Amazon Chime Voice Connector ID.
6619
7921
  #
@@ -6659,6 +7961,19 @@ module Aws::Chime
6659
7961
  # Connector. The logging configuration specifies whether SIP message
6660
7962
  # logs are enabled for sending to Amazon CloudWatch Logs.
6661
7963
  #
7964
+ # **This API is is no longer supported and will not be updated.** We
7965
+ # recommend using the latest version,
7966
+ # [PutVoiceConnectorLoggingConfiguration][1], in the Amazon Chime SDK.
7967
+ #
7968
+ # Using the latest version requires migrating to a dedicated namespace.
7969
+ # For more information, refer to [Migrating from the Amazon Chime
7970
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
7971
+ #
7972
+ #
7973
+ #
7974
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutVoiceConnectorLoggingConfiguration.html
7975
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
7976
+ #
6662
7977
  # @option params [required, String] :voice_connector_id
6663
7978
  # The Amazon Chime Voice Connector ID.
6664
7979
  #
@@ -6702,6 +8017,19 @@ module Aws::Chime
6702
8017
  #
6703
8018
  # </note>
6704
8019
  #
8020
+ # **This API is is no longer supported and will not be updated.** We
8021
+ # recommend using the latest version, [PutVoiceConnectorOrigination][1],
8022
+ # in the Amazon Chime SDK.
8023
+ #
8024
+ # Using the latest version requires migrating to a dedicated namespace.
8025
+ # For more information, refer to [Migrating from the Amazon Chime
8026
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
8027
+ #
8028
+ #
8029
+ #
8030
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutVoiceConnectorOrigination.html
8031
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
8032
+ #
6705
8033
  # @option params [required, String] :voice_connector_id
6706
8034
  # The Amazon Chime Voice Connector ID.
6707
8035
  #
@@ -6752,6 +8080,19 @@ module Aws::Chime
6752
8080
  # Puts the specified proxy configuration to the specified Amazon Chime
6753
8081
  # Voice Connector.
6754
8082
  #
8083
+ # **This API is is no longer supported and will not be updated.** We
8084
+ # recommend using the latest version, [PutVoiceConnectorProxy][1], in
8085
+ # the Amazon Chime SDK.
8086
+ #
8087
+ # Using the latest version requires migrating to a dedicated namespace.
8088
+ # For more information, refer to [Migrating from the Amazon Chime
8089
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
8090
+ #
8091
+ #
8092
+ #
8093
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutVoiceConnectorProxy.html
8094
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
8095
+ #
6755
8096
  # @option params [required, String] :voice_connector_id
6756
8097
  # The Amazon Chime voice connector ID.
6757
8098
  #
@@ -6804,6 +8145,19 @@ module Aws::Chime
6804
8145
  # streaming is enabled for sending to Kinesis. It also sets the
6805
8146
  # retention period, in hours, for the Amazon Kinesis data.
6806
8147
  #
8148
+ # **This API is is no longer supported and will not be updated.** We
8149
+ # recommend using the latest version,
8150
+ # [PutVoiceConnectorStreamingConfiguration][1], in the Amazon Chime SDK.
8151
+ #
8152
+ # Using the latest version requires migrating to a dedicated namespace.
8153
+ # For more information, refer to [Migrating from the Amazon Chime
8154
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
8155
+ #
8156
+ #
8157
+ #
8158
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutVoiceConnectorStreamingConfiguration.html
8159
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
8160
+ #
6807
8161
  # @option params [required, String] :voice_connector_id
6808
8162
  # The Amazon Chime Voice Connector ID.
6809
8163
  #
@@ -6854,6 +8208,19 @@ module Aws::Chime
6854
8208
  #
6855
8209
  # </note>
6856
8210
  #
8211
+ # **This API is is no longer supported and will not be updated.** We
8212
+ # recommend using the latest version, [PutVoiceConnectorTermination][1],
8213
+ # in the Amazon Chime SDK.
8214
+ #
8215
+ # Using the latest version requires migrating to a dedicated namespace.
8216
+ # For more information, refer to [Migrating from the Amazon Chime
8217
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
8218
+ #
8219
+ #
8220
+ #
8221
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutVoiceConnectorTermination.html
8222
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
8223
+ #
6857
8224
  # @option params [required, String] :voice_connector_id
6858
8225
  # The Amazon Chime Voice Connector ID.
6859
8226
  #
@@ -6899,6 +8266,19 @@ module Aws::Chime
6899
8266
  # Adds termination SIP credentials for the specified Amazon Chime Voice
6900
8267
  # Connector.
6901
8268
  #
8269
+ # **This API is is no longer supported and will not be updated.** We
8270
+ # recommend using the latest version,
8271
+ # [PutVoiceConnectorTerminationCredentials][1], in the Amazon Chime SDK.
8272
+ #
8273
+ # Using the latest version requires migrating to a dedicated namespace.
8274
+ # For more information, refer to [Migrating from the Amazon Chime
8275
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
8276
+ #
8277
+ #
8278
+ #
8279
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutVoiceConnectorTerminationCredentials.html
8280
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
8281
+ #
6902
8282
  # @option params [required, String] :voice_connector_id
6903
8283
  # The Amazon Chime Voice Connector ID.
6904
8284
  #
@@ -6938,6 +8318,19 @@ module Aws::Chime
6938
8318
  #
6939
8319
  # </note>
6940
8320
  #
8321
+ # **This API is is no longer supported and will not be updated.** We
8322
+ # recommend using the latest version, [RedactChannelMessage][1], in the
8323
+ # Amazon Chime SDK.
8324
+ #
8325
+ # Using the latest version requires migrating to a dedicated namespace.
8326
+ # For more information, refer to [Migrating from the Amazon Chime
8327
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
8328
+ #
8329
+ #
8330
+ #
8331
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_RedactChannelMessage.html
8332
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
8333
+ #
6941
8334
  # @option params [required, String] :channel_arn
6942
8335
  # The ARN of the channel containing the messages that you want to
6943
8336
  # redact.
@@ -7253,6 +8646,19 @@ module Aws::Chime
7253
8646
  #
7254
8647
  # </note>
7255
8648
  #
8649
+ # **This API is is no longer supported and will not be updated.** We
8650
+ # recommend using the latest version, [SendChannelMessage][1], in the
8651
+ # Amazon Chime SDK.
8652
+ #
8653
+ # Using the latest version requires migrating to a dedicated namespace.
8654
+ # For more information, refer to [Migrating from the Amazon Chime
8655
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
8656
+ #
8657
+ #
8658
+ #
8659
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_SendChannelMessage.html
8660
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
8661
+ #
7256
8662
  # @option params [required, String] :channel_arn
7257
8663
  # The ARN of the channel.
7258
8664
  #
@@ -7319,16 +8725,28 @@ module Aws::Chime
7319
8725
  # combinations are valid, refer to the [StartStreamTranscription][2] API
7320
8726
  # in the *Amazon Transcribe Developer Guide*.
7321
8727
  #
7322
- # Amazon Chime SDK live transcription is powered by Amazon Transcribe.
8728
+ # <note markdown="1"> Amazon Chime SDK live transcription is powered by Amazon Transcribe.
7323
8729
  # Use of Amazon Transcribe is subject to the [AWS Service Terms][3],
7324
8730
  # including the terms specific to the AWS Machine Learning and
7325
8731
  # Artificial Intelligence Services.
7326
8732
  #
8733
+ # </note>
8734
+ #
8735
+ # **This API is is no longer supported and will not be updated.** We
8736
+ # recommend using the latest version, [StartMeetingTranscription][4], in
8737
+ # the Amazon Chime SDK.
8738
+ #
8739
+ # Using the latest version requires migrating to a dedicated namespace.
8740
+ # For more information, refer to [Migrating from the Amazon Chime
8741
+ # namespace][5] in the *Amazon Chime SDK Developer Guide*.
8742
+ #
7327
8743
  #
7328
8744
  #
7329
8745
  # [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meeting-transcription.html
7330
8746
  # [2]: https://docs.aws.amazon.com/transcribe/latest/APIReference/API_streaming_StartStreamTranscription.html
7331
8747
  # [3]: https://aws.amazon.com/service-terms/
8748
+ # [4]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_StartMeetingTranscription.html
8749
+ # [5]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
7332
8750
  #
7333
8751
  # @option params [required, String] :meeting_id
7334
8752
  # The unique ID of the meeting being transcribed.
@@ -7385,6 +8803,19 @@ module Aws::Chime
7385
8803
 
7386
8804
  # Stops transcription for the specified `meetingId`.
7387
8805
  #
8806
+ # **This API is is no longer supported and will not be updated.** We
8807
+ # recommend using the latest version, [StopMeetingTranscription][1], in
8808
+ # the Amazon Chime SDK.
8809
+ #
8810
+ # Using the latest version requires migrating to a dedicated namespace.
8811
+ # For more information, refer to [Migrating from the Amazon Chime
8812
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
8813
+ #
8814
+ #
8815
+ #
8816
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_StopMeetingTranscription.html
8817
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
8818
+ #
7388
8819
  # @option params [required, String] :meeting_id
7389
8820
  # The unique ID of the meeting for which you stop transcription.
7390
8821
  #
@@ -7405,7 +8836,10 @@ module Aws::Chime
7405
8836
  req.send_request(options)
7406
8837
  end
7407
8838
 
7408
- # Applies the specified tags to the specified Amazon Chime SDK attendee.
8839
+ # Applies the specified tags to the specified Amazon Chime attendee.
8840
+ #
8841
+ # TagAttendee is not supported in the Amazon Chime SDK Meetings
8842
+ # Namespace. Update your application to remove calls to this API.
7409
8843
  #
7410
8844
  # @option params [required, String] :meeting_id
7411
8845
  # The Amazon Chime SDK meeting ID.
@@ -7442,6 +8876,19 @@ module Aws::Chime
7442
8876
 
7443
8877
  # Applies the specified tags to the specified Amazon Chime SDK meeting.
7444
8878
  #
8879
+ # **This API is is no longer supported and will not be updated.** We
8880
+ # recommend using the latest version, [TagResource][1], in the Amazon
8881
+ # Chime SDK.
8882
+ #
8883
+ # Using the latest version requires migrating to a dedicated namespace.
8884
+ # For more information, refer to [Migrating from the Amazon Chime
8885
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
8886
+ #
8887
+ #
8888
+ #
8889
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_TagResource.html
8890
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
8891
+ #
7445
8892
  # @option params [required, String] :meeting_id
7446
8893
  # The Amazon Chime SDK meeting ID.
7447
8894
  #
@@ -7474,6 +8921,19 @@ module Aws::Chime
7474
8921
  # Applies the specified tags to the specified Amazon Chime SDK meeting
7475
8922
  # resource.
7476
8923
  #
8924
+ # **This API is is no longer supported and will not be updated.** We
8925
+ # recommend using the latest version, [TagResource][1], in the Amazon
8926
+ # Chime SDK.
8927
+ #
8928
+ # Using the latest version requires migrating to a dedicated namespace.
8929
+ # For more information, refer to [Migrating from the Amazon Chime
8930
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
8931
+ #
8932
+ #
8933
+ #
8934
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_TagResource.html
8935
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
8936
+ #
7477
8937
  # @option params [required, String] :resource_arn
7478
8938
  # The resource ARN.
7479
8939
  #
@@ -7506,6 +8966,9 @@ module Aws::Chime
7506
8966
  # Untags the specified tags from the specified Amazon Chime SDK
7507
8967
  # attendee.
7508
8968
  #
8969
+ # UntagAttendee is not supported in the Amazon Chime SDK Meetings
8970
+ # Namespace. Update your application to remove calls to this API.
8971
+ #
7509
8972
  # @option params [required, String] :meeting_id
7510
8973
  # The Amazon Chime SDK meeting ID.
7511
8974
  #
@@ -7536,6 +8999,19 @@ module Aws::Chime
7536
8999
 
7537
9000
  # Untags the specified tags from the specified Amazon Chime SDK meeting.
7538
9001
  #
9002
+ # **This API is is no longer supported and will not be updated.** We
9003
+ # recommend using the latest version, [UntagResource][1], in the Amazon
9004
+ # Chime SDK.
9005
+ #
9006
+ # Using the latest version requires migrating to a dedicated namespace.
9007
+ # For more information, refer to [Migrating from the Amazon Chime
9008
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
9009
+ #
9010
+ #
9011
+ #
9012
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_UntagResource.html
9013
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
9014
+ #
7539
9015
  # @option params [required, String] :meeting_id
7540
9016
  # The Amazon Chime SDK meeting ID.
7541
9017
  #
@@ -7563,6 +9039,22 @@ module Aws::Chime
7563
9039
  # Untags the specified tags from the specified Amazon Chime SDK meeting
7564
9040
  # resource.
7565
9041
  #
9042
+ # Applies the specified tags to the specified Amazon Chime SDK meeting
9043
+ # resource.
9044
+ #
9045
+ # **This API is is no longer supported and will not be updated.** We
9046
+ # recommend using the latest version, [UntagResource][1], in the Amazon
9047
+ # Chime SDK.
9048
+ #
9049
+ # Using the latest version requires migrating to a dedicated namespace.
9050
+ # For more information, refer to [Migrating from the Amazon Chime
9051
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
9052
+ #
9053
+ #
9054
+ #
9055
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_UntagResource.html
9056
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
9057
+ #
7566
9058
  # @option params [required, String] :resource_arn
7567
9059
  # The resource ARN.
7568
9060
  #
@@ -7674,6 +9166,19 @@ module Aws::Chime
7674
9166
 
7675
9167
  # Updates `AppInstance` metadata.
7676
9168
  #
9169
+ # **This API is is no longer supported and will not be updated.** We
9170
+ # recommend using the latest version, [UpdateAppInstance][1], in the
9171
+ # Amazon Chime SDK.
9172
+ #
9173
+ # Using the latest version requires migrating to a dedicated namespace.
9174
+ # For more information, refer to [Migrating from the Amazon Chime
9175
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
9176
+ #
9177
+ #
9178
+ #
9179
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_UpdateAppInstance.html
9180
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
9181
+ #
7677
9182
  # @option params [required, String] :app_instance_arn
7678
9183
  # The ARN of the `AppInstance`.
7679
9184
  #
@@ -7711,6 +9216,19 @@ module Aws::Chime
7711
9216
  # Updates the details of an `AppInstanceUser`. You can update names and
7712
9217
  # metadata.
7713
9218
  #
9219
+ # **This API is is no longer supported and will not be updated.** We
9220
+ # recommend using the latest version, [UpdateAppInstanceUser][1], in the
9221
+ # Amazon Chime SDK.
9222
+ #
9223
+ # Using the latest version requires migrating to a dedicated namespace.
9224
+ # For more information, refer to [Migrating from the Amazon Chime
9225
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
9226
+ #
9227
+ #
9228
+ #
9229
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_UpdateAppInstanceUser.html
9230
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
9231
+ #
7714
9232
  # @option params [required, String] :app_instance_user_arn
7715
9233
  # The ARN of the `AppInstanceUser`.
7716
9234
  #
@@ -7800,6 +9318,19 @@ module Aws::Chime
7800
9318
  #
7801
9319
  # </note>
7802
9320
  #
9321
+ # **This API is is no longer supported and will not be updated.** We
9322
+ # recommend using the latest version, [UpdateChannel][1], in the Amazon
9323
+ # Chime SDK.
9324
+ #
9325
+ # Using the latest version requires migrating to a dedicated namespace.
9326
+ # For more information, refer to [Migrating from the Amazon Chime
9327
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
9328
+ #
9329
+ #
9330
+ #
9331
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_UpdateChannel.html
9332
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
9333
+ #
7803
9334
  # @option params [required, String] :channel_arn
7804
9335
  # The ARN of the channel.
7805
9336
  #
@@ -7850,6 +9381,19 @@ module Aws::Chime
7850
9381
  #
7851
9382
  # </note>
7852
9383
  #
9384
+ # **This API is is no longer supported and will not be updated.** We
9385
+ # recommend using the latest version, [UpdateChannelMessage][1], in the
9386
+ # Amazon Chime SDK.
9387
+ #
9388
+ # Using the latest version requires migrating to a dedicated namespace.
9389
+ # For more information, refer to [Migrating from the Amazon Chime
9390
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
9391
+ #
9392
+ #
9393
+ #
9394
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_UpdateChannelMessage.html
9395
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
9396
+ #
7853
9397
  # @option params [required, String] :channel_arn
7854
9398
  # The ARN of the channel.
7855
9399
  #
@@ -7902,6 +9446,19 @@ module Aws::Chime
7902
9446
  #
7903
9447
  # </note>
7904
9448
  #
9449
+ # **This API is is no longer supported and will not be updated.** We
9450
+ # recommend using the latest version, [UpdateChannelReadMarker][1], in
9451
+ # the Amazon Chime SDK.
9452
+ #
9453
+ # Using the latest version requires migrating to a dedicated namespace.
9454
+ # For more information, refer to [Migrating from the Amazon Chime
9455
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
9456
+ #
9457
+ #
9458
+ #
9459
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_UpdateChannelReadMarker.html
9460
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
9461
+ #
7905
9462
  # @option params [required, String] :channel_arn
7906
9463
  # The ARN of the channel.
7907
9464
  #
@@ -8059,6 +9616,19 @@ module Aws::Chime
8059
9616
  # Updates the specified proxy session details, such as voice or SMS
8060
9617
  # capabilities.
8061
9618
  #
9619
+ # **This API is is no longer supported and will not be updated.** We
9620
+ # recommend using the latest version, [UpdateProxySession][1], in the
9621
+ # Amazon Chime SDK.
9622
+ #
9623
+ # Using the latest version requires migrating to a dedicated namespace.
9624
+ # For more information, refer to [Migrating from the Amazon Chime
9625
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
9626
+ #
9627
+ #
9628
+ #
9629
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_UpdateProxySession.html
9630
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
9631
+ #
8062
9632
  # @option params [required, String] :voice_connector_id
8063
9633
  # The Amazon Chime voice connector ID.
8064
9634
  #
@@ -8208,6 +9778,19 @@ module Aws::Chime
8208
9778
 
8209
9779
  # Updates the details of the specified SIP media application.
8210
9780
  #
9781
+ # **This API is is no longer supported and will not be updated.** We
9782
+ # recommend using the latest version, [UpdateSipMediaApplication][1], in
9783
+ # the Amazon Chime SDK.
9784
+ #
9785
+ # Using the latest version requires migrating to a dedicated namespace.
9786
+ # For more information, refer to [Migrating from the Amazon Chime
9787
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
9788
+ #
9789
+ #
9790
+ #
9791
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_UpdateSipMediaApplication.html
9792
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
9793
+ #
8211
9794
  # @option params [required, String] :sip_media_application_id
8212
9795
  # The SIP media application ID.
8213
9796
  #
@@ -8256,6 +9839,19 @@ module Aws::Chime
8256
9839
  # application and transaction ID in an update request. The Lambda
8257
9840
  # function can then return a new set of actions.
8258
9841
  #
9842
+ # **This API is is no longer supported and will not be updated.** We
9843
+ # recommend using the latest version,
9844
+ # [UpdateSipMediaApplicationCall][1], in the Amazon Chime SDK.
9845
+ #
9846
+ # Using the latest version requires migrating to a dedicated namespace.
9847
+ # For more information, refer to [Migrating from the Amazon Chime
9848
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
9849
+ #
9850
+ #
9851
+ #
9852
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_UpdateSipMediaApplicationCall.html
9853
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
9854
+ #
8259
9855
  # @option params [required, String] :sip_media_application_id
8260
9856
  # The ID of the SIP media application handling the call.
8261
9857
  #
@@ -8295,6 +9891,19 @@ module Aws::Chime
8295
9891
 
8296
9892
  # Updates the details of the specified SIP rule.
8297
9893
  #
9894
+ # **This API is is no longer supported and will not be updated.** We
9895
+ # recommend using the latest version, [UpdateSipRule][1], in the Amazon
9896
+ # Chime SDK.
9897
+ #
9898
+ # Using the latest version requires migrating to a dedicated namespace.
9899
+ # For more information, refer to [Migrating from the Amazon Chime
9900
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
9901
+ #
9902
+ #
9903
+ #
9904
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_UpdateSipRule.html
9905
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
9906
+ #
8298
9907
  # @option params [required, String] :sip_rule_id
8299
9908
  # The SIP rule ID.
8300
9909
  #
@@ -8450,6 +10059,19 @@ module Aws::Chime
8450
10059
 
8451
10060
  # Updates details for the specified Amazon Chime Voice Connector.
8452
10061
  #
10062
+ # **This API is is no longer supported and will not be updated.** We
10063
+ # recommend using the latest version, [UpdateVoiceConnector][1], in the
10064
+ # Amazon Chime SDK.
10065
+ #
10066
+ # Using the latest version requires migrating to a dedicated namespace.
10067
+ # For more information, refer to [Migrating from the Amazon Chime
10068
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
10069
+ #
10070
+ #
10071
+ #
10072
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_UpdateVoiceConnector.html
10073
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
10074
+ #
8453
10075
  # @option params [required, String] :voice_connector_id
8454
10076
  # The Amazon Chime Voice Connector ID.
8455
10077
  #
@@ -8495,6 +10117,19 @@ module Aws::Chime
8495
10117
  # Updates details of the specified Amazon Chime Voice Connector group,
8496
10118
  # such as the name and Amazon Chime Voice Connector priority ranking.
8497
10119
  #
10120
+ # **This API is is no longer supported and will not be updated.** We
10121
+ # recommend using the latest version, [UpdateVoiceConnectorGroup][1], in
10122
+ # the Amazon Chime SDK.
10123
+ #
10124
+ # Using the latest version requires migrating to a dedicated namespace.
10125
+ # For more information, refer to [Migrating from the Amazon Chime
10126
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
10127
+ #
10128
+ #
10129
+ #
10130
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_UpdateVoiceConnectorGroup.html
10131
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
10132
+ #
8498
10133
  # @option params [required, String] :voice_connector_group_id
8499
10134
  # The Amazon Chime Voice Connector group ID.
8500
10135
  #
@@ -8547,6 +10182,19 @@ module Aws::Chime
8547
10182
  # requests. That helps ensure that addresses are routed to the
8548
10183
  # appropriate Public Safety Answering Point.
8549
10184
  #
10185
+ # **This API is is no longer supported and will not be updated.** We
10186
+ # recommend using the latest version, [ValidateE911Address][1], in the
10187
+ # Amazon Chime SDK.
10188
+ #
10189
+ # Using the latest version requires migrating to a dedicated namespace.
10190
+ # For more information, refer to [Migrating from the Amazon Chime
10191
+ # namespace][2] in the *Amazon Chime SDK Developer Guide*.
10192
+ #
10193
+ #
10194
+ #
10195
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_ValidateE911Address.html
10196
+ # [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html
10197
+ #
8550
10198
  # @option params [required, String] :aws_account_id
8551
10199
  # The AWS account ID.
8552
10200
  #
@@ -8632,7 +10280,7 @@ module Aws::Chime
8632
10280
  params: params,
8633
10281
  config: config)
8634
10282
  context[:gem_name] = 'aws-sdk-chime'
8635
- context[:gem_version] = '1.74.0'
10283
+ context[:gem_version] = '1.76.0'
8636
10284
  Seahorse::Client::Request.new(handlers, context)
8637
10285
  end
8638
10286