awscli 1.38.0__py3-none-any.whl → 1.38.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of awscli might be problematic. Click here for more details.

Files changed (49) hide show
  1. awscli/__init__.py +1 -1
  2. awscli/customizations/cloudformation/deploy.py +7 -3
  3. {awscli-1.38.0.dist-info → awscli-1.38.2.dist-info}/METADATA +2 -2
  4. {awscli-1.38.0.dist-info → awscli-1.38.2.dist-info}/RECORD +12 -49
  5. awscli/examples/chime/associate-phone-numbers-with-voice-connector-group.rst +0 -16
  6. awscli/examples/chime/associate-phone-numbers-with-voice-connector.rst +0 -16
  7. awscli/examples/chime/create-proxy-session.rst +0 -37
  8. awscli/examples/chime/create-voice-connector-group.rst +0 -21
  9. awscli/examples/chime/create-voice-connector.rst +0 -24
  10. awscli/examples/chime/delete-proxy-session.rst +0 -11
  11. awscli/examples/chime/delete-voice-connector-group.rst +0 -10
  12. awscli/examples/chime/delete-voice-connector-origination.rst +0 -10
  13. awscli/examples/chime/delete-voice-connector-proxy.rst +0 -10
  14. awscli/examples/chime/delete-voice-connector-streaming-configuration.rst +0 -10
  15. awscli/examples/chime/delete-voice-connector-termination-credentials.rst +0 -11
  16. awscli/examples/chime/delete-voice-connector-termination.rst +0 -10
  17. awscli/examples/chime/delete-voice-connector.rst +0 -10
  18. awscli/examples/chime/disassociate-phone-numbers-from-voice-connector-group.rst +0 -15
  19. awscli/examples/chime/disassociate-phone-numbers-from-voice-connector.rst +0 -15
  20. awscli/examples/chime/get-proxy-session.rst +0 -36
  21. awscli/examples/chime/get-voice-connector-group.rst +0 -20
  22. awscli/examples/chime/get-voice-connector-logging-configuration.rst +0 -17
  23. awscli/examples/chime/get-voice-connector-origination.rst +0 -25
  24. awscli/examples/chime/get-voice-connector-proxy.rst +0 -20
  25. awscli/examples/chime/get-voice-connector-streaming-configuration.rst +0 -17
  26. awscli/examples/chime/get-voice-connector-termination-health.rst +0 -17
  27. awscli/examples/chime/get-voice-connector-termination.rst +0 -25
  28. awscli/examples/chime/get-voice-connector.rst +0 -22
  29. awscli/examples/chime/list-proxy-sessions.rst +0 -35
  30. awscli/examples/chime/list-voice-connector-groups.rst +0 -21
  31. awscli/examples/chime/list-voice-connector-termination-credentials.rst +0 -17
  32. awscli/examples/chime/list-voice-connectors.rst +0 -32
  33. awscli/examples/chime/put-voice-connector-logging-configuration.rst +0 -17
  34. awscli/examples/chime/put-voice-connector-origination.rst +0 -26
  35. awscli/examples/chime/put-voice-connector-proxy.rst +0 -22
  36. awscli/examples/chime/put-voice-connector-streaming-configuration.rst +0 -18
  37. awscli/examples/chime/put-voice-connector-termination-credentials.rst +0 -11
  38. awscli/examples/chime/put-voice-connector-termination.rst +0 -24
  39. awscli/examples/chime/update-proxy-session.rst +0 -36
  40. awscli/examples/chime/update-voice-connector-group.rst +0 -27
  41. awscli/examples/chime/update-voice-connector.rst +0 -24
  42. {awscli-1.38.0.data → awscli-1.38.2.data}/scripts/aws +0 -0
  43. {awscli-1.38.0.data → awscli-1.38.2.data}/scripts/aws.cmd +0 -0
  44. {awscli-1.38.0.data → awscli-1.38.2.data}/scripts/aws_bash_completer +0 -0
  45. {awscli-1.38.0.data → awscli-1.38.2.data}/scripts/aws_completer +0 -0
  46. {awscli-1.38.0.data → awscli-1.38.2.data}/scripts/aws_zsh_completer.sh +0 -0
  47. {awscli-1.38.0.dist-info → awscli-1.38.2.dist-info}/LICENSE.txt +0 -0
  48. {awscli-1.38.0.dist-info → awscli-1.38.2.dist-info}/WHEEL +0 -0
  49. {awscli-1.38.0.dist-info → awscli-1.38.2.dist-info}/top_level.txt +0 -0
awscli/__init__.py CHANGED
@@ -18,7 +18,7 @@ A Universal Command Line Environment for Amazon Web Services.
18
18
 
19
19
  import os
20
20
 
21
- __version__ = '1.38.0'
21
+ __version__ = '1.38.2'
22
22
 
23
23
  #
24
24
  # Get our data path to be added to botocore's search path
@@ -224,9 +224,13 @@ class DeployCommand(BasicCommand):
224
224
  'dest': 'fail_on_empty_changeset',
225
225
  'default': True,
226
226
  'help_text': (
227
- 'Specify if the CLI should return a non-zero exit code if '
228
- 'there are no changes to be made to the stack. The default '
229
- 'behavior is to return a non-zero exit code.'
227
+ 'Specify if the CLI should return a non-zero exit code '
228
+ 'when there are no changes to be made to the stack. By '
229
+ 'default, a non-zero exit code is returned, and this is '
230
+ 'the same behavior that occurs when '
231
+ '`--fail-on-empty-changeset` is specified. If '
232
+ '`--no-fail-on-empty-changeset` is specified, then the '
233
+ 'CLI will return a zero exit code.'
230
234
  )
231
235
  },
232
236
  {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: awscli
3
- Version: 1.38.0
3
+ Version: 1.38.2
4
4
  Summary: Universal Command Line Environment for AWS.
5
5
  Home-page: http://aws.amazon.com/cli/
6
6
  Author: Amazon Web Services
@@ -23,7 +23,7 @@ Classifier: Programming Language :: Python :: 3.11
23
23
  Classifier: Programming Language :: Python :: 3.12
24
24
  Requires-Python: >= 3.8
25
25
  License-File: LICENSE.txt
26
- Requires-Dist: botocore (==1.37.0)
26
+ Requires-Dist: botocore (==1.37.2)
27
27
  Requires-Dist: docutils (<0.17,>=0.10)
28
28
  Requires-Dist: s3transfer (<0.12.0,>=0.11.0)
29
29
  Requires-Dist: PyYAML (<6.1,>=3.10)
@@ -1,4 +1,4 @@
1
- awscli/__init__.py,sha256=daRs3DZPzdL_Lb6bCYKmNiAfMdeHzcvLGuQBiKGNjKs,1533
1
+ awscli/__init__.py,sha256=W0DRBgqFoyYEiYyvgYpoNgd5LmVNWT2St3od2djsm4w,1533
2
2
  awscli/__main__.py,sha256=iBjOg0tBxNlhzTi_tyc1G0SMGBvHMVvBJzX3JqYaooY,662
3
3
  awscli/alias.py,sha256=Jj2jetpajUMcjqx9tFhHUOKpzLChQygnH2zqDFfmgIM,11315
4
4
  awscli/argparser.py,sha256=3Pxx-vWytdV985Y6MIl9DeutUXyehIvACIs_PDby8GI,7650
@@ -79,7 +79,7 @@ awscli/customizations/utils.py,sha256=L8-YMiyqtZr-N1dlTsSj9ieOXKiD8PiBlFlCKRob3p
79
79
  awscli/customizations/waiters.py,sha256=y1k7XVkOzG_1Nj3spq7GX5Io1pdCbssezWviFh5swLI,9806
80
80
  awscli/customizations/cloudformation/__init__.py,sha256=rcZDPPnatHSw8I0ogt3eHOL4HKIW3DbUFKEZdf76TEg,1281
81
81
  awscli/customizations/cloudformation/artifact_exporter.py,sha256=evvQTSzPkv4bUyYr318HqwQwfkxiz0cMCxfYr8x2R6o,23617
82
- awscli/customizations/cloudformation/deploy.py,sha256=DYTGAQyiiZ6NQk4mQxxC3bFDkXgr0sZYBaOBeREHgyc,15259
82
+ awscli/customizations/cloudformation/deploy.py,sha256=asnSL7rMIqWEPIf8chH3rtYbGudGOhQBP6bem2Hl9No,15507
83
83
  awscli/customizations/cloudformation/deployer.py,sha256=buWrrr0dt4VkOGrObrtDq_YS_m-hZYENIS29CK4Q6ao,9848
84
84
  awscli/customizations/cloudformation/exceptions.py,sha256=G5F8FB8lxSzKMHmDZPhl4UdbrjB87mUWaBzgY901JJA,2137
85
85
  awscli/customizations/cloudformation/package.py,sha256=8Sxhj_OrNQJ1CAQQhuPvt2z0NcezlHICmr5Ut-U4g4g,6062
@@ -668,8 +668,6 @@ awscli/examples/ce/get-reservation-purchase-recommendation.rst,sha256=95tXko8oaZ
668
668
  awscli/examples/ce/get-reservation-utilization.rst,sha256=2MAHKSoUg07C1BmD3RysxGrAP9AyjRU4AnB3JDPeJ0E,1014
669
669
  awscli/examples/ce/get-tags.rst,sha256=yk1hVDS_oZGE7DtAgXEJ_capnMmP2phbwEXZMaNYogs,428
670
670
  awscli/examples/chime/associate-phone-number-with-user.rst,sha256=qsPHmcg_QTFMKz31ZJp-4mCppPsZi2KANjklasswgrw,567
671
- awscli/examples/chime/associate-phone-numbers-with-voice-connector-group.rst,sha256=n-T-FSbo3mL9jUfKJzSlMd9XIJpZUJDosSm1I2MGJrM,720
672
- awscli/examples/chime/associate-phone-numbers-with-voice-connector.rst,sha256=MdkMrKKy6mCvrqO5ReIzNvkF1F0CeR_1EgitXnEKs_8,663
673
671
  awscli/examples/chime/associate-signin-delegate-groups-with-account.rst,sha256=c4s0eyyHSSwfTouOmSQcD3G_x616X7H6rHLaHZLhTUM,592
674
672
  awscli/examples/chime/batch-create-room-membership.rst,sha256=Grxc7zGgCul71_S09t7NVOlBpZbSWGZ9sIkHo6MlDwA,1218
675
673
  awscli/examples/chime/batch-delete-phone-number.rst,sha256=MddXg2GspzslpjS8pmNaPD9UaHlDDXSkQqS3y--3fVk,496
@@ -680,27 +678,14 @@ awscli/examples/chime/batch-update-user.rst,sha256=IOI-Fk3RaUD_9ILNuPGthxZ08D-bB
680
678
  awscli/examples/chime/create-account.rst,sha256=XwyS12QJwQmkq_ACgCzl70nrVzMjKIRgS2yGA2oVvxU,950
681
679
  awscli/examples/chime/create-bot.rst,sha256=kmkXM_vMmjAchCmA9wLeJzCUs5TPq7zvdIZ-LE2lUbA,993
682
680
  awscli/examples/chime/create-phone-number-order.rst,sha256=zai9ksGt0FaWadro2bgQmzhFzZwgm6s_Ng0YDozPHtI,1266
683
- awscli/examples/chime/create-proxy-session.rst,sha256=cT7nxCOZuRwU_DYH7mtc5I1y82r7eRaWLsCrhXuTQuQ,1326
684
681
  awscli/examples/chime/create-room-membership.rst,sha256=D2VADrjR4nt6hHNjwr60vQkFhHoAxvxxio5rHI-TU9I,1095
685
682
  awscli/examples/chime/create-room.rst,sha256=6Ehxp2Z0ziIMHGUIeP4L3DXd-iHd7SXN16VDOX1IIqM,793
686
683
  awscli/examples/chime/create-user.rst,sha256=JfdckzznVhVep5ce9539LjuRSi5jWWi2NOFEgsOzsQk,1042
687
- awscli/examples/chime/create-voice-connector-group.rst,sha256=A2xcvjfQjbEUCsSRy6gR6vpAPi7Efz3xwwn8mUxyKz0,899
688
- awscli/examples/chime/create-voice-connector.rst,sha256=tit9XsCqdEVzVaE33muYg8ChfPpw6WwutX7059m5UZ4,955
689
684
  awscli/examples/chime/delete-account.rst,sha256=jJeR_r9TRcPTWUW3n9UyBCKg3zPIZ0vKg61YekhbJEU,381
690
685
  awscli/examples/chime/delete-phone-number.rst,sha256=FmGtc5fAVBKMwTzX8RXwBKbr5Zoi-LDeUd2wzR0NkgE,416
691
- awscli/examples/chime/delete-proxy-session.rst,sha256=6XzY81ex_-mPS_TFJPW805we4Gsg1TmsGqQtKeu-A6A,482
692
686
  awscli/examples/chime/delete-room-membership.rst,sha256=Kt8Ae_mxcyE_UCJLraUTSuRCYpTT5IidPHr_jVQdlvc,560
693
687
  awscli/examples/chime/delete-room.rst,sha256=oGXAbAHnliOtfZRO6_BK4ltPIX_P7bqslj_qYlAAff0,469
694
- awscli/examples/chime/delete-voice-connector-group.rst,sha256=mo4Fa1Y5WY-Rocn8yir5rL2FGYzSwZjLF9b21-DDHss,476
695
- awscli/examples/chime/delete-voice-connector-origination.rst,sha256=gB0k7MyghRlZ_LKIii-GxwZyXkBz-UmuLnnVTcdA38c,540
696
- awscli/examples/chime/delete-voice-connector-proxy.rst,sha256=W7-TqIVzj_8yE6ZCxIrK-lCkpqzkH57PB0vmIPhLTc8,472
697
- awscli/examples/chime/delete-voice-connector-streaming-configuration.rst,sha256=2hSfIZEmhmG9DdgHtnHav0zGazmxn1T8BvLcCaBhPSM,549
698
- awscli/examples/chime/delete-voice-connector-termination-credentials.rst,sha256=jVPm4taPDcAdWN4abyvlbEgQqsIkv3K9sfMgQyydJho,578
699
- awscli/examples/chime/delete-voice-connector-termination.rst,sha256=h82HzX1LRMLfKsl9nwHFj_ph0NgY8Q5oftZUJMnH1b4,505
700
- awscli/examples/chime/delete-voice-connector.rst,sha256=ICn1AChdtveli2GlgzizsFnnH8Ar_Vt-SfsHkmPglr4,420
701
688
  awscli/examples/chime/disassociate-phone-number-from-user.rst,sha256=IHxBPY2ZkvR1fiy3JPt-HWHWzSyV110SAK83V3xRSFE,534
702
- awscli/examples/chime/disassociate-phone-numbers-from-voice-connector-group.rst,sha256=3CZmtHFlw05q_xv7sB6KgIaHIwKYwXkcKktqv_oDshA,704
703
- awscli/examples/chime/disassociate-phone-numbers-from-voice-connector.rst,sha256=3hflVd2TmQdHzOJu3SmgM-7-Dkg51LlNe8DSH7a__kQ,648
704
689
  awscli/examples/chime/disassociate-signin-delegate-groups-from-account.rst,sha256=5dlfyO8hW9reCUlBWTuy3DVr-ite13JlqpVNNKVC84I,585
705
690
  awscli/examples/chime/get-account-settings.rst,sha256=SNmCu4yPskGIMVjRDxe5bY1IfW-qUJOQvSe68zxww_M,557
706
691
  awscli/examples/chime/get-account.rst,sha256=MhHqIVZxwGPLdFwDPY-2BIkgvART0HiqDV_CcVOduI4,1026
@@ -709,37 +694,18 @@ awscli/examples/chime/get-global-settings.rst,sha256=3eYCu-DWDYz1tgslIILiOXUr9oi
709
694
  awscli/examples/chime/get-phone-number-order.rst,sha256=edPuxV8TsnD69ebWkXKiPSsKCTGSq-mq0s69aKeKkx8,1209
710
695
  awscli/examples/chime/get-phone-number-settings.rst,sha256=JdGF7fxIo3lm6KHlFykzc82GuuElK2JyKbzKdl9fwFA,541
711
696
  awscli/examples/chime/get-phone-number.rst,sha256=b9Y9pspMhCaJO-JdKL_C1xYxG1YLA9y5VPFQ4fk4V4Y,1323
712
- awscli/examples/chime/get-proxy-session.rst,sha256=fJESfGKek-WZ3BNxZM08nBSK3vQymVZEadZvMrL85Jg,1274
713
697
  awscli/examples/chime/get-room.rst,sha256=EmrysjOkOA1jQsprsT6efnS04PHw6_wj7JjL3Jj4Ap8,820
714
698
  awscli/examples/chime/get-user-settings.rst,sha256=t_O-WATsuNZ7BUzlDKR-cmUZoPBd26oEmaE0PAODGxc,640
715
699
  awscli/examples/chime/get-user.rst,sha256=aJj268Y08SNaBL5s_cwW8EkezgfzcFZKnPO7gBn5QJE,1107
716
- awscli/examples/chime/get-voice-connector-group.rst,sha256=6k-erYJ27XiyGwbaSJ-5wiUEPZIGZiq6V5HmPTu5vF8,833
717
- awscli/examples/chime/get-voice-connector-logging-configuration.rst,sha256=g_0TFCiSFtNn-Cddh7Et8q1t3GL_yhaCWUmejmiGgr0,616
718
- awscli/examples/chime/get-voice-connector-origination.rst,sha256=9MzU8wDCWJiIs85E2qRL0uy6CcrXdXc7ybRu5QBAfU8,848
719
- awscli/examples/chime/get-voice-connector-proxy.rst,sha256=UjsYvLZTscE2vmpHaUPu23jqylrGkEYUkcOCFJLEsbk,652
720
- awscli/examples/chime/get-voice-connector-streaming-configuration.rst,sha256=k2aUTx-j6gxufitIfRtaHLQtaQUSiiP6NsNNf6IlgXE,656
721
- awscli/examples/chime/get-voice-connector-termination-health.rst,sha256=1qX2iUmgfaJ3aoj3hkeuKZ9vSRWSWwIPkb0IZvRi39U,652
722
- awscli/examples/chime/get-voice-connector-termination.rst,sha256=OOI93Y74MZE3Z_ted_JZ2NE5JTptCtT4nhG3Z2LbSJo,815
723
- awscli/examples/chime/get-voice-connector.rst,sha256=1LkwHJjA_DW-mPjJKOYKKXcLutpvfF7RgQ0DDFIiV2U,887
724
700
  awscli/examples/chime/invite-users.rst,sha256=bHohkhhmRZDvAR18kKIHp9o9fcPAdliANNnx1lLr5xU,1010
725
701
  awscli/examples/chime/list-accounts.rst,sha256=_EJ-PbVOOMY-HBzIVzt50NjFnEs0Hzs1ckBWjdTZVCY,1689
726
702
  awscli/examples/chime/list-bots.rst,sha256=a0GBePK-ydVcN2Sfn6VB1Z4kIEe2k-vuC0FsxX0HEOw,922
727
703
  awscli/examples/chime/list-phone-number-orders.rst,sha256=_uBvVL1M64xWZ-OsbQomnqKh9LnePP7pl0urJXQ7f14,2093
728
704
  awscli/examples/chime/list-phone-numbers.rst,sha256=vRgnIEaPqSDQBvdWyKiF5MZ0zyf4mtIDu_gvGnkQ17g,2505
729
- awscli/examples/chime/list-proxy-sessions.rst,sha256=2TcPGjtQbj9elfvfzQFGP2kVw-bqXta0MWP7-0w17GA,1219
730
705
  awscli/examples/chime/list-room-memberships.rst,sha256=DQLCzOCIa5jPjv2Pe4BXVfZNik3OQ1Y-fowaVO9HMnA,1712
731
706
  awscli/examples/chime/list-rooms.rst,sha256=ctMEjxiBKyQC7k0wee9DLcIKzX7LHw-IK0nMIW9kWyM,899
732
707
  awscli/examples/chime/list-users.rst,sha256=Q7mnSD-AJlCbVR4lrHlsQNDCj93j9uNIXispzFyfqcg,2806
733
- awscli/examples/chime/list-voice-connector-groups.rst,sha256=Dj1MvHNbkH-GTDCjmwtQ502NdiNPP9d27PfGf3LEKJs,860
734
- awscli/examples/chime/list-voice-connector-termination-credentials.rst,sha256=PY0vzzs6q2ybYKk_oHYgtgPrLlh-OZKygYxNRwqZrrU,629
735
- awscli/examples/chime/list-voice-connectors.rst,sha256=KQn284BRz1TiDSgPT2m0On9JCOHzkUiZBflHMSsVbjg,1340
736
708
  awscli/examples/chime/logout-user.rst,sha256=vpt9SIUzpqKO8-sERCK1i1Lsinq3dJW4MqWNyMhFY18,271
737
- awscli/examples/chime/put-voice-connector-logging-configuration.rst,sha256=7fobkKXTlra6xAa09_jq1xe4K4YfiT_LrFf-fPu46Bo,694
738
- awscli/examples/chime/put-voice-connector-origination.rst,sha256=eC7lw4CLnA-PfwJ2_OU1hreMCDNRUY10SQ-gP0oji90,957
739
- awscli/examples/chime/put-voice-connector-proxy.rst,sha256=-hDT5Ynx8WCj4AXljnWKQOZbczfzbU-wiAFL8i6J22I,728
740
- awscli/examples/chime/put-voice-connector-streaming-configuration.rst,sha256=JSaib3S26uz98HTvWB_DIEjpBdhP7mZTo0ThmVfnaT8,853
741
- awscli/examples/chime/put-voice-connector-termination-credentials.rst,sha256=3JVwk8egMX45b1TfLO7SbpsTHAsAYkAA1d37R5qIYbs,582
742
- awscli/examples/chime/put-voice-connector-termination.rst,sha256=HylRY3SyZkbzxYgoR8O6_6rNnUS4fNWelviX7aDDcII,852
743
709
  awscli/examples/chime/regenerate-security-token.rst,sha256=G803gUASkqcfiGljwZVBPsbUx1pBqzK2rj_Arg1nN2g,991
744
710
  awscli/examples/chime/reset-personal-pin.rst,sha256=V_sVcDT0LoSQxRJ8NCN_rkMo8oAK-QSL548F04iGucg,1140
745
711
  awscli/examples/chime/restore-phone-number.rst,sha256=87GvvutKbyUuzmJq27eIQjGy9Aesir4HznQ34aZ-E5Y,1067
@@ -750,13 +716,10 @@ awscli/examples/chime/update-bot.rst,sha256=MWCb-CWwF7AIgW_GAm1zjWKqo3-3A2NfUPie
750
716
  awscli/examples/chime/update-global-settings.rst,sha256=WhXU4nBWznu1FARQa7TjjQzReCtc3qWZJ91z7NDhcqU,592
751
717
  awscli/examples/chime/update-phone-number-settings.rst,sha256=XjzLLWbNkqTfhBiWyZ69fZMVGzWrn87dXgd06C-FyeY,456
752
718
  awscli/examples/chime/update-phone-number.rst,sha256=TMzRSI88KZzmrbFFeX714ZHJe14gk_IWf9iI12QGkUE,2196
753
- awscli/examples/chime/update-proxy-session.rst,sha256=vvrQgbMca8MffwRcfktMoGngXMYKsn95UxKj6VhBL48,1277
754
719
  awscli/examples/chime/update-room-membership.rst,sha256=ovrOiJoGwkcLa5MaYh3VG8hBVYyjKPUJb47hIHaBiZE,1153
755
720
  awscli/examples/chime/update-room.rst,sha256=jRPtQ2cRIAS-70KKXxZroeCYw3p8yEa3vspqSFCVUnQ,835
756
721
  awscli/examples/chime/update-user-settings.rst,sha256=XlLM2o7v2wnRge5EskeH4hQ0thh8P35qsbgqP3U0cqE,618
757
722
  awscli/examples/chime/update-user.rst,sha256=qPuOoid0A5nE0TpSkK5H5FmTDT24ORPg9ixfGa6oBvs,395
758
- awscli/examples/chime/update-voice-connector-group.rst,sha256=y791x9UnhVCht7fV4PDBLzRui5wudKC29Pwx-PlkLnA,1119
759
- awscli/examples/chime/update-voice-connector.rst,sha256=HPZ3BqzUs1LkmZ_5z-4nl31s3pQ4_RZLhyyY0g_qsiM,942
760
723
  awscli/examples/cloud9/create-environment-ec2.rst,sha256=nrZcKlgF7_yxs0CLsm__F1xIblL0OjyJ53nP8rosgw0,913
761
724
  awscli/examples/cloud9/create-environment-membership.rst,sha256=WA0mkqXvuzVjm_UHbxzTCpXjM6_jqjn4gFtrLwKOjxg,612
762
725
  awscli/examples/cloud9/delete-environment-membership.rst,sha256=IZ3IorsWXJK0LDUKeiv0i2d8OwRzMjCoX19OFrABORM,370
@@ -6092,13 +6055,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
6092
6055
  awscli/topics/s3-config.rst,sha256=kyLbdEEePnHW0hoMmQDkt4o6PbqAdpO5ph_51GgQyXg,11664
6093
6056
  awscli/topics/s3-faq.rst,sha256=Kw1w4NFHOTXq9Mz5S3HHw3mBkyeEzH4ruB0PD6-EO1c,2938
6094
6057
  awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
6095
- awscli-1.38.0.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6096
- awscli-1.38.0.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6097
- awscli-1.38.0.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6098
- awscli-1.38.0.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6099
- awscli-1.38.0.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6100
- awscli-1.38.0.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6101
- awscli-1.38.0.dist-info/METADATA,sha256=UiioPQbvYaddtT6ndIkpBNbhWeLN5-37w4CsSnEeNec,11329
6102
- awscli-1.38.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6103
- awscli-1.38.0.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6104
- awscli-1.38.0.dist-info/RECORD,,
6058
+ awscli-1.38.2.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6059
+ awscli-1.38.2.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6060
+ awscli-1.38.2.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6061
+ awscli-1.38.2.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6062
+ awscli-1.38.2.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6063
+ awscli-1.38.2.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6064
+ awscli-1.38.2.dist-info/METADATA,sha256=PVRWbhZfZtbvwbSFJr0C2A_q-bCFkyLaP7K16OorVKs,11329
6065
+ awscli-1.38.2.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6066
+ awscli-1.38.2.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6067
+ awscli-1.38.2.dist-info/RECORD,,
@@ -1,16 +0,0 @@
1
- **To associate phone numbers with an Amazon Chime Voice Connector group**
2
-
3
- The following ``associate-phone-numbers-with-voice-connector-group`` example associates the specified phone numbers with an Amazon Chime Voice Connector group. ::
4
-
5
- aws chime associate-phone-numbers-with-voice-connector-group \
6
- --voice-connector-group-id 123a456b-c7d8-90e1-fg23-4h567jkl8901 \
7
- --e164-phone-numbers "+12065550100" "+12065550101" \
8
- --force-associate
9
-
10
- Output::
11
-
12
- {
13
- "PhoneNumberErrors": []
14
- }
15
-
16
- For more information, see `Working with Amazon Chime Voice Connector groups <https://docs.aws.amazon.com/chime/latest/ag/voice-connector-groups.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,16 +0,0 @@
1
- **To associate phone numbers with an Amazon Chime Voice Connector**
2
-
3
- The following ``associate-phone-numbers-with-voice-connector`` example associates the specified phone numbers with an Amazon Chime Voice Connector. ::
4
-
5
- aws chime associate-phone-numbers-with-voice-connector \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4 \
7
- --e164-phone-numbers "+12065550100" "+12065550101"
8
- --force-associate
9
-
10
- Output::
11
-
12
- {
13
- "PhoneNumberErrors": []
14
- }
15
-
16
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,37 +0,0 @@
1
- **To create a proxy session**
2
-
3
- The following ``create-proxy-session`` example creates a proxy session with voice and SMS capabilities. ::
4
-
5
- aws chime create-proxy-session \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4 \
7
- --participant-phone-numbers "+14015550101" "+12065550100" \
8
- --capabilities "Voice" "SMS"
9
-
10
- Output::
11
-
12
- {
13
- "ProxySession": {
14
- "VoiceConnectorId": "abcdef1ghij2klmno3pqr4",
15
- "ProxySessionId": "123a4bc5-67d8-901e-2f3g-h4ghjk56789l",
16
- "Status": "Open",
17
- "ExpiryMinutes": 60,
18
- "Capabilities": [
19
- "SMS",
20
- "Voice"
21
- ],
22
- "CreatedTimestamp": "2020-04-15T16:10:10.288Z",
23
- "UpdatedTimestamp": "2020-04-15T16:10:10.288Z",
24
- "Participants": [
25
- {
26
- "PhoneNumber": "+12065550100",
27
- "ProxyPhoneNumber": "+19135550199"
28
- },
29
- {
30
- "PhoneNumber": "+14015550101",
31
- "ProxyPhoneNumber": "+19135550199"
32
- }
33
- ]
34
- }
35
- }
36
-
37
- For more information, see `Proxy Phone Sessions <https://docs.aws.amazon.com/chime/latest/dg/proxy-phone-sessions.html>`__ in the *Amazon Chime Developer Guide*.
@@ -1,21 +0,0 @@
1
- **To create an Amazon Chime Voice Connector group**
2
-
3
- The following ``create-voice-connector-group`` example creates an Amazon Chime Voice Connector group that includes the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime create-voice-connector-group \
6
- --name myGroup \
7
- --voice-connector-items VoiceConnectorId=abcdef1ghij2klmno3pqr4,Priority=2
8
-
9
- Output::
10
-
11
- {
12
- "VoiceConnectorGroup": {
13
- "VoiceConnectorGroupId": "123a456b-c7d8-90e1-fg23-4h567jkl8901",
14
- "Name": "myGroup",
15
- "VoiceConnectorItems": [],
16
- "CreatedTimestamp": "2019-09-18T16:38:34.734Z",
17
- "UpdatedTimestamp": "2019-09-18T16:38:34.734Z"
18
- }
19
- }
20
-
21
- For more information, see `Working with Amazon Chime Voice Connector Groups <https://docs.aws.amazon.com/chime/latest/ag/voice-connector-groups.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,24 +0,0 @@
1
- **To create an Amazon Chime Voice Connector**
2
-
3
- The following ``create-voice-connector`` example creates an Amazon Chime Voice Connector in the specified AWS Region, with encryption enabled. ::
4
-
5
- aws chime create-voice-connector \
6
- --name newVoiceConnector \
7
- --aws-region us-west-2 \
8
- --require-encryption
9
-
10
- Output::
11
-
12
- {
13
- "VoiceConnector": {
14
- "VoiceConnectorId": "abcdef1ghij2klmno3pqr4",
15
- "AwsRegion": "us-west-2",
16
- "Name": "newVoiceConnector",
17
- "OutboundHostName": "abcdef1ghij2klmno3pqr4.voiceconnector.chime.aws",
18
- "RequireEncryption": true,
19
- "CreatedTimestamp": "2019-09-18T20:34:01.352Z",
20
- "UpdatedTimestamp": "2019-09-18T20:34:01.352Z"
21
- }
22
- }
23
-
24
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,11 +0,0 @@
1
- **To delete a proxy session**
2
-
3
- The following ``delete-proxy-session`` example deletes the specified proxy session. ::
4
-
5
- aws chime delete-proxy-session \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4 \
7
- --proxy-session-id 123a4bc5-67d8-901e-2f3g-h4ghjk56789l
8
-
9
- This command produces no output.
10
-
11
- For more information, see `Proxy Phone Sessions <https://docs.aws.amazon.com/chime/latest/dg/proxy-phone-sessions.html>`__ in the *Amazon Chime Developer Guide*.
@@ -1,10 +0,0 @@
1
- **title**
2
-
3
- The following ``delete-voice-connector-group`` example deletes the specified Amazon Chime Voice Connector group. ::
4
-
5
- aws chime delete-voice-connector-group \
6
- --voice-connector-group-id 123a456b-c7d8-90e1-fg23-4h567jkl8901
7
-
8
- This command produces no output.
9
-
10
- For more information, see `Working with Amazon Chime Voice Connector Groups <https://docs.aws.amazon.com/chime/latest/ag/voice-connector-groups.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,10 +0,0 @@
1
- **To delete origination settings**
2
-
3
- The following ``delete-voice-connector-origination`` example deletes the origination host, port, protocol, priority, and weight from the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime delete-voice-connector-origination \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4
7
-
8
- This command produces no output.
9
-
10
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,10 +0,0 @@
1
- **To delete a proxy configuration**
2
-
3
- The following ``delete-voice-connector-proxy`` example deletes the proxy configuration from your Amazon Chime Voice Connector. ::
4
-
5
- aws chime delete-voice-connector-proxy \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4
7
-
8
- This command produces no output.
9
-
10
- For more information, see `Proxy Phone Sessions <https://docs.aws.amazon.com/chime/latest/dg/proxy-phone-sessions.html>`__ in the *Amazon Chime Developer Guide*.
@@ -1,10 +0,0 @@
1
- **To delete a streaming configuration**
2
-
3
- The following ``delete-voice-connector-streaming-configuration`` example deletes the streaming configuration for the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime delete-voice-connector-streaming-configuration \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4
7
-
8
- This command produces no output.
9
-
10
- For more information, see `Streaming Amazon Chime Voice Connector Data to Kinesis <https://docs.aws.amazon.com/chime/latest/ag/start-kinesis-vc.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,11 +0,0 @@
1
- **To delete termination credentials**
2
-
3
- The following ``delete-voice-connector-termination-credentials`` example deletes the termination credentials for the specified user name and Amazon Chime Voice Connector. ::
4
-
5
- aws chime delete-voice-connector-termination-credentials \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4 \
7
- --usernames "jdoe"
8
-
9
- This command produces no output.
10
-
11
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,10 +0,0 @@
1
- **To delete termination settings**
2
-
3
- The following ``delete-voice-connector-termination`` example deletes the termination settings for the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime delete-voice-connector-termination \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4
7
-
8
- This command produces no output.
9
-
10
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,10 +0,0 @@
1
- **To delete an Amazon Chime Voice Connector**
2
-
3
- The following ``delete-voice-connector`` example doesthis ::
4
-
5
- aws chime delete-voice-connector \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4
7
-
8
- This command produces no output.
9
-
10
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,15 +0,0 @@
1
- **To disassociate phone numbers from an Amazon Chime Voice Connector group**
2
-
3
- The following ``disassociate-phone-numbers-from-voice-connector-group`` example disassociates the specified phone numbers from an Amazon Chime Voice Connector group. ::
4
-
5
- aws chime disassociate-phone-numbers-from-voice-connector-group \
6
- --voice-connector-group-id 123a456b-c7d8-90e1-fg23-4h567jkl8901 \
7
- --e164-phone-numbers "+12065550100" "+12065550101"
8
-
9
- Output::
10
-
11
- {
12
- "PhoneNumberErrors": []
13
- }
14
-
15
- For more information, see `Working with Amazon Chime Voice Connector Groups <https://docs.aws.amazon.com/chime/latest/ag/voice-connector-groups.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,15 +0,0 @@
1
- **To disassociate phone numbers from an Amazon Chime Voice Connector**
2
-
3
- The following ``disassociate-phone-numbers-from-voice-connector`` example disassociates the specified phone numbers from an Amazon Chime Voice Connector. ::
4
-
5
- aws chime disassociate-phone-numbers-from-voice-connector \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4 \
7
- --e164-phone-numbers "+12065550100" "+12065550101"
8
-
9
- Output::
10
-
11
- {
12
- "PhoneNumberErrors": []
13
- }
14
-
15
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,36 +0,0 @@
1
- **To get proxy session details**
2
-
3
- The following ``get-proxy-session`` example lists the details of the specified proxy session. ::
4
-
5
- aws chime get-proxy-session \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4 \
7
- --proxy-session-id 123a4bc5-67d8-901e-2f3g-h4ghjk56789l
8
-
9
- Output::
10
-
11
- {
12
- "ProxySession": {
13
- "VoiceConnectorId": "abcdef1ghij2klmno3pqr4",
14
- "ProxySessionId": "123a4bc5-67d8-901e-2f3g-h4ghjk56789l",
15
- "Status": "Open",
16
- "ExpiryMinutes": 60,
17
- "Capabilities": [
18
- "SMS",
19
- "Voice"
20
- ],
21
- "CreatedTimestamp": "2020-04-15T16:10:10.288Z",
22
- "UpdatedTimestamp": "2020-04-15T16:10:10.288Z",
23
- "Participants": [
24
- {
25
- "PhoneNumber": "+12065550100",
26
- "ProxyPhoneNumber": "+19135550199"
27
- },
28
- {
29
- "PhoneNumber": "+14015550101",
30
- "ProxyPhoneNumber": "+19135550199"
31
- }
32
- ]
33
- }
34
- }
35
-
36
- For more information, see `Proxy Phone Sessions <https://docs.aws.amazon.com/chime/latest/dg/proxy-phone-sessions.html>`__ in the *Amazon Chime Developer Guide*.
@@ -1,20 +0,0 @@
1
- **To get details for an Amazon Chime Voice Connector group**
2
-
3
- The following ``get-voice-connector-group`` example displays details for the specified Amazon Chime Voice Connector group. ::
4
-
5
- aws chime get-voice-connector-group \
6
- --voice-connector-group-id 123a456b-c7d8-90e1-fg23-4h567jkl8901
7
-
8
- Output::
9
-
10
- {
11
- "VoiceConnectorGroup": {
12
- "VoiceConnectorGroupId": "123a456b-c7d8-90e1-fg23-4h567jkl8901",
13
- "Name": "myGroup",
14
- "VoiceConnectorItems": [],
15
- "CreatedTimestamp": "2019-09-18T16:38:34.734Z",
16
- "UpdatedTimestamp": "2019-09-18T16:38:34.734Z"
17
- }
18
- }
19
-
20
- For more information, see `Working with Amazon Chime Voice Connector Groups <https://docs.aws.amazon.com/chime/latest/ag/voice-connector-groups.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,17 +0,0 @@
1
- **To get logging configuration details**
2
-
3
- The following ``get-voice-connector-logging-configuration`` example retreives the logging configuration details for the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime get-voice-connector-logging-configuration \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4
7
-
8
- Output::
9
-
10
- {
11
- "LoggingConfiguration": {
12
- "EnableSIPLogs": true
13
- }
14
- }
15
-
16
-
17
- For more information, see `Streaming Amazon Chime Voice Connector Media to Kinesis <https://docs.aws.amazon.com/chime/latest/ag/start-kinesis-vc.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,25 +0,0 @@
1
- **To retrieve origination settings**
2
-
3
- The following ``get-voice-connector-origination`` example retrieves the origination host, port, protocol, priority, and weight for the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime get-voice-connector-origination \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4
7
-
8
- Output::
9
-
10
- {
11
- "Origination": {
12
- "Routes": [
13
- {
14
- "Host": "10.24.34.0",
15
- "Port": 1234,
16
- "Protocol": "TCP",
17
- "Priority": 1,
18
- "Weight": 5
19
- }
20
- ],
21
- "Disabled": false
22
- }
23
- }
24
-
25
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,20 +0,0 @@
1
- **To get proxy configuration details**
2
-
3
- The following ``get-voice-connector-proxy`` example gets the proxy configuration details for your Amazon Chime Voice Connector. ::
4
-
5
- aws chime get-voice-connector-proxy \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4
7
-
8
- Output::
9
-
10
- {
11
- "Proxy": {
12
- "DefaultSessionExpiryMinutes": 60,
13
- "Disabled": false,
14
- "PhoneNumberCountries": [
15
- "US"
16
- ]
17
- }
18
- }
19
-
20
- For more information, see `Proxy Phone Sessions <https://docs.aws.amazon.com/chime/latest/dg/proxy-phone-sessions.html>`__ in the *Amazon Chime Developer Guide*.
@@ -1,17 +0,0 @@
1
- **To get streaming configuration details**
2
-
3
- The following ``get-voice-connector-streaming-configuration`` example gets the streaming configuration details for the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime get-voice-connector-streaming-configuration \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4
7
-
8
- Output::
9
-
10
- {
11
- "StreamingConfiguration": {
12
- "DataRetentionInHours": 24,
13
- "Disabled": false
14
- }
15
- }
16
-
17
- For more information, see `Streaming Amazon Chime Voice Connector Data to Kinesis <https://docs.aws.amazon.com/chime/latest/ag/start-kinesis-vc.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,17 +0,0 @@
1
- **To retrieve termination health details**
2
-
3
- The following ``get-voice-connector-termination-health`` example retrieves the termination health details for the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime get-voice-connector-termination-health \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4
7
-
8
- Output::
9
-
10
- {
11
- "TerminationHealth": {
12
- "Timestamp": "Fri Aug 23 16:45:55 UTC 2019",
13
- "Source": "10.24.34.0"
14
- }
15
- }
16
-
17
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,25 +0,0 @@
1
- **To retrieve termination settings**
2
-
3
- The following ``get-voice-connector-termination`` example retrieves the termination settings for the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime get-voice-connector-termination \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4
7
-
8
- This command produces no output.
9
- Output::
10
-
11
- {
12
- "Termination": {
13
- "CpsLimit": 1,
14
- "DefaultPhoneNumber": "+12065550100",
15
- "CallingRegions": [
16
- "US"
17
- ],
18
- "CidrAllowedList": [
19
- "10.24.34.0/23"
20
- ],
21
- "Disabled": false
22
- }
23
- }
24
-
25
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,22 +0,0 @@
1
- **To get details for an Amazon Chime Voice Connector**
2
-
3
- The following ``get-voice-connector`` example displays the details of the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime get-voice-connector \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4
7
-
8
- Output::
9
-
10
- {
11
- "VoiceConnector": {
12
- "VoiceConnectorId": "abcdef1ghij2klmno3pqr4",
13
- "AwsRegion": "us-west-2",
14
- "Name": "newVoiceConnector",
15
- "OutboundHostName": "abcdef1ghij2klmno3pqr4.voiceconnector.chime.aws",
16
- "RequireEncryption": true,
17
- "CreatedTimestamp": "2019-09-18T20:34:01.352Z",
18
- "UpdatedTimestamp": "2019-09-18T20:34:01.352Z"
19
- }
20
- }
21
-
22
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,35 +0,0 @@
1
- **To list proxy sessions**
2
-
3
- The following ``list-proxy-sessions`` example lists the proxy sessions for your Amazon Chime Voice Connector. ::
4
-
5
- aws chime list-proxy-sessions \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4
7
-
8
- Output::
9
-
10
- {
11
- "ProxySession": {
12
- "VoiceConnectorId": "abcdef1ghij2klmno3pqr4",
13
- "ProxySessionId": "123a4bc5-67d8-901e-2f3g-h4ghjk56789l",
14
- "Status": "Open",
15
- "ExpiryMinutes": 60,
16
- "Capabilities": [
17
- "SMS",
18
- "Voice"
19
- ],
20
- "CreatedTimestamp": "2020-04-15T16:10:10.288Z",
21
- "UpdatedTimestamp": "2020-04-15T16:10:10.288Z",
22
- "Participants": [
23
- {
24
- "PhoneNumber": "+12065550100",
25
- "ProxyPhoneNumber": "+19135550199"
26
- },
27
- {
28
- "PhoneNumber": "+14015550101",
29
- "ProxyPhoneNumber": "+19135550199"
30
- }
31
- ]
32
- }
33
- }
34
-
35
- For more information, see `Proxy Phone Sessions <https://docs.aws.amazon.com/chime/latest/dg/proxy-phone-sessions.html>`__ in the *Amazon Chime Developer Guide*.
@@ -1,21 +0,0 @@
1
- **To list Amazon Chime Voice Connector groups for an Amazon Chime account**
2
-
3
- The following ``list-voice-connector-groups`` example lists the Amazon Chime Voice Connector groups associated with the administrator's Amazon Chime account. ::
4
-
5
- aws chime list-voice-connector-groups
6
-
7
- Output::
8
-
9
- {
10
- "VoiceConnectorGroups": [
11
- {
12
- "VoiceConnectorGroupId": "123a456b-c7d8-90e1-fg23-4h567jkl8901",
13
- "Name": "myGroup",
14
- "VoiceConnectorItems": [],
15
- "CreatedTimestamp": "2019-09-18T16:38:34.734Z",
16
- "UpdatedTimestamp": "2019-09-18T16:38:34.734Z"
17
- }
18
- ]
19
- }
20
-
21
- For more information, see `Working with Amazon Chime Voice Connector groups <https://docs.aws.amazon.com/chime/latest/ag/voice-connector-groups.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,17 +0,0 @@
1
- **To retrieve a list of termination credentials**
2
-
3
- The following ``list-voice-connector-termination-credentials`` example retrieves a list of the termination credentials for the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime list-voice-connector-termination-credentials \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4
7
-
8
- This command produces no output.
9
- Output::
10
-
11
- {
12
- "Usernames": [
13
- "jdoe"
14
- ]
15
- }
16
-
17
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,32 +0,0 @@
1
- **To list Amazon Chime Voice Connectors for an account**
2
-
3
- The following ``list-voice-connectors`` example lists the Amazon Chime Voice Connectors associated with the caller's account. ::
4
-
5
- aws chime list-voice-connectors
6
-
7
- Output::
8
-
9
- {
10
- "VoiceConnectors": [
11
- {
12
- "VoiceConnectorId": "abcdef1ghij2klmno3pqr4",
13
- "AwsRegion": "us-east-1",
14
- "Name": "MyVoiceConnector",
15
- "OutboundHostName": "abcdef1ghij2klmno3pqr4.voiceconnector.chime.aws",
16
- "RequireEncryption": true,
17
- "CreatedTimestamp": "2019-06-04T18:46:56.508Z",
18
- "UpdatedTimestamp": "2019-09-18T16:33:00.806Z"
19
- },
20
- {
21
- "VoiceConnectorId": "cbadef1ghij2klmno3pqr5",
22
- "AwsRegion": "us-west-2",
23
- "Name": "newVoiceConnector",
24
- "OutboundHostName": "cbadef1ghij2klmno3pqr5.voiceconnector.chime.aws",
25
- "RequireEncryption": true,
26
- "CreatedTimestamp": "2019-09-18T20:34:01.352Z",
27
- "UpdatedTimestamp": "2019-09-18T20:34:01.352Z"
28
- }
29
- ]
30
- }
31
-
32
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,17 +0,0 @@
1
- **To add a logging configuration for an Amazon Chime Voice Connector**
2
-
3
- The following ``put-voice-connector-logging-configuration`` example turns on the SIP logging configuration for the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime put-voice-connector-logging-configuration \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4 \
7
- --logging-configuration EnableSIPLogs=true
8
-
9
- Output::
10
-
11
- {
12
- "LoggingConfiguration": {
13
- "EnableSIPLogs": true
14
- }
15
- }
16
-
17
- For more information, see `Streaming Amazon Chime Voice Connector Media to Kinesis <https://docs.aws.amazon.com/chime/latest/ag/start-kinesis-vc.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,26 +0,0 @@
1
- **To set up origination settings**
2
-
3
- The following ``put-voice-connector-origination`` example sets up the origination host, port, protocol, priority, and weight for the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime put-voice-connector-origination \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4 \
7
- --origination Routes=[{Host="10.24.34.0",Port=1234,Protocol="TCP",Priority=1,Weight=5}],Disabled=false
8
-
9
- Output::
10
-
11
- {
12
- "Origination": {
13
- "Routes": [
14
- {
15
- "Host": "10.24.34.0",
16
- "Port": 1234,
17
- "Protocol": "TCP",
18
- "Priority": 1,
19
- "Weight": 5
20
- }
21
- ],
22
- "Disabled": false
23
- }
24
- }
25
-
26
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,22 +0,0 @@
1
- **To put a proxy configuration**
2
-
3
- The following ``put-voice-connector-proxy`` example sets a proxy configuration to your Amazon Chime Voice Connector. ::
4
-
5
- aws chime put-voice-connector-proxy \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4 \
7
- --default-session-expiry-minutes 60 \
8
- --phone-number-pool-countries "US"
9
-
10
- Output::
11
-
12
- {
13
- "Proxy": {
14
- "DefaultSessionExpiryMinutes": 60,
15
- "Disabled": false,
16
- "PhoneNumberCountries": [
17
- "US"
18
- ]
19
- }
20
- }
21
-
22
- For more information, see `Proxy Phone Sessions <https://docs.aws.amazon.com/chime/latest/dg/proxy-phone-sessions.html>`__ in the *Amazon Chime Developer Guide*.
@@ -1,18 +0,0 @@
1
- **To create a streaming configuration**
2
-
3
- The following ``put-voice-connector-streaming-configuration`` example creates a streaming configuration for the specified Amazon Chime Voice Connector. It enables media streaming from the Amazon Chime Voice Connector to Amazon Kinesis, and sets the data retention period to 24 hours. ::
4
-
5
- aws chime put-voice-connector-streaming-configuration \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4 \
7
- --streaming-configuration DataRetentionInHours=24,Disabled=false
8
-
9
- Output::
10
-
11
- {
12
- "StreamingConfiguration": {
13
- "DataRetentionInHours": 24,
14
- "Disabled": false
15
- }
16
- }
17
-
18
- For more information, see `Streaming Amazon Chime Voice Connector Data to Kinesis <https://docs.aws.amazon.com/chime/latest/ag/start-kinesis-vc.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,11 +0,0 @@
1
- **To set up termination credentials**
2
-
3
- The following ``put-voice-connector-termination-credentials`` example sets termination credentials for the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime put-voice-connector-termination-credentials \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4 \
7
- --credentials Username="jdoe",Password="XXXXXXXX"
8
-
9
- This command produces no output.
10
-
11
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,24 +0,0 @@
1
- **To set up termination settings**
2
-
3
- The following ``put-voice-connector-termination`` example sets the calling regions and allowed IP host termination settings for the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime put-voice-connector-termination \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4 \
7
- --termination CallingRegions="US",CidrAllowedList="10.24.34.0/23",Disabled=false
8
-
9
- Output::
10
-
11
- {
12
- "Termination": {
13
- "CpsLimit": 0,
14
- "CallingRegions": [
15
- "US"
16
- ],
17
- "CidrAllowedList": [
18
- "10.24.34.0/23"
19
- ],
20
- "Disabled": false
21
- }
22
- }
23
-
24
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,36 +0,0 @@
1
- **To update a proxy session**
2
-
3
- The following ``update-proxy-session`` example updates the proxy session capabilities. ::
4
-
5
- aws chime update-proxy-session \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4 \
7
- --proxy-session-id 123a4bc5-67d8-901e-2f3g-h4ghjk56789l \
8
- --capabilities "Voice"
9
-
10
- Output::
11
-
12
- {
13
- "ProxySession": {
14
- "VoiceConnectorId": "abcdef1ghij2klmno3pqr4",
15
- "ProxySessionId": "123a4bc5-67d8-901e-2f3g-h4ghjk56789l",
16
- "Status": "Open",
17
- "ExpiryMinutes": 60,
18
- "Capabilities": [
19
- "Voice"
20
- ],
21
- "CreatedTimestamp": "2020-04-15T16:10:10.288Z",
22
- "UpdatedTimestamp": "2020-04-15T16:10:10.288Z",
23
- "Participants": [
24
- {
25
- "PhoneNumber": "+12065550100",
26
- "ProxyPhoneNumber": "+19135550199"
27
- },
28
- {
29
- "PhoneNumber": "+14015550101",
30
- "ProxyPhoneNumber": "+19135550199"
31
- }
32
- ]
33
- }
34
- }
35
-
36
- For more information, see `Proxy Phone Sessions <https://docs.aws.amazon.com/chime/latest/dg/proxy-phone-sessions.html>`__ in the *Amazon Chime Developer Guide*.
@@ -1,27 +0,0 @@
1
- **To update the details for an Amazon Chime Voice Connector group**
2
-
3
- The following ``update-voice-connector-group`` example updates the details of the specified Amazon Chime Voice Connector group. ::
4
-
5
- aws chime update-voice-connector-group \
6
- --voice-connector-group-id 123a456b-c7d8-90e1-fg23-4h567jkl8901 \
7
- --name "newGroupName" \
8
- --voice-connector-items VoiceConnectorId=abcdef1ghij2klmno3pqr4,Priority=1
9
-
10
- Output::
11
-
12
- {
13
- "VoiceConnectorGroup": {
14
- "VoiceConnectorGroupId": "123a456b-c7d8-90e1-fg23-4h567jkl8901",
15
- "Name": "newGroupName",
16
- "VoiceConnectorItems": [
17
- {
18
- "VoiceConnectorId": "abcdef1ghij2klmno3pqr4",
19
- "Priority": 1
20
- }
21
- ],
22
- "CreatedTimestamp": "2019-09-18T16:38:34.734Z",
23
- "UpdatedTimestamp": "2019-10-28T19:00:57.081Z"
24
- }
25
- }
26
-
27
- For more information, see `Working with Amazon Chime Voice Connector Groups <https://docs.aws.amazon.com/chime/latest/ag/voice-connector-groups.html>`__ in the *Amazon Chime Administration Guide*.
@@ -1,24 +0,0 @@
1
- **To update the details for an Amazon Chime Voice Connector**
2
-
3
- The following ``update-voice-connector`` example updates the name of the specified Amazon Chime Voice Connector. ::
4
-
5
- aws chime update-voice-connector \
6
- --voice-connector-id abcdef1ghij2klmno3pqr4 \
7
- --name newName \
8
- --require-encryption
9
-
10
- Output::
11
-
12
- {
13
- "VoiceConnector": {
14
- "VoiceConnectorId": "abcdef1ghij2klmno3pqr4",
15
- "AwsRegion": "us-west-2",
16
- "Name": "newName",
17
- "OutboundHostName": "abcdef1ghij2klmno3pqr4.voiceconnector.chime.aws",
18
- "RequireEncryption": true,
19
- "CreatedTimestamp": "2019-09-18T20:34:01.352Z",
20
- "UpdatedTimestamp": "2019-09-18T20:40:52.895Z"
21
- }
22
- }
23
-
24
- For more information, see `Working with Amazon Chime Voice Connectors <https://docs.aws.amazon.com/chime/latest/ag/voice-connectors.html>`__ in the *Amazon Chime Administration Guide*.
File without changes