Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

5,190,029

Downloads of v 1.11.159:

15,515

Last Update:

25 Sep 2017

Package Maintainer(s):

Software Author(s):

  • Amazon Web Services

Tags:

aws cli cloud amazon admin

AWS Command Line Interface

This is not the latest version of AWS Command Line Interface available.

  • 1
  • 2
  • 3

1.11.159 | Updated: 25 Sep 2017

Downloads:

5,190,029

Downloads of v 1.11.159:

15,515

Maintainer(s):

Software Author(s):

  • Amazon Web Services

AWS Command Line Interface 1.11.159

This is not the latest version of AWS Command Line Interface available.

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Amazon Web Services. The inclusion of Amazon Web Services trademark(s), if any, upon this webpage is solely to identify Amazon Web Services goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install AWS Command Line Interface, run the following command from the command line or from PowerShell:

>

To upgrade AWS Command Line Interface, run the following command from the command line or from PowerShell:

>

To uninstall AWS Command Line Interface, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade awscli -y --source="'INTERNAL REPO URL'" --version="'1.11.159'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade awscli -y --source="'INTERNAL REPO URL'" --version="'1.11.159'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install awscli
  win_chocolatey:
    name: awscli
    version: '1.11.159'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'awscli' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.11.159'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller awscli
{
    Name     = "awscli"
    Version  = "1.11.159"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'awscli':
  ensure   => '1.11.159',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

WARNING

There are versions of this package awaiting moderation . See the Version History section below.

Package Approved

This package was approved as a trusted package on 25 Sep 2017.

Description

The AWS Command Line Interface (CLI) is a unified tool to manage your AWS services. With just one tool to download and configure, you can control multiple AWS services from the command line and automate them through scripts.

The AWS CLI introduces a new set of simple file commands for efficient file transfers to and from Amazon S3.


tools\chocolateyInstall.ps1
$packageName = 'awscli'
$installerType = 'msi'
$silentArgs = '/quiet /qn /norestart'
$url = 'https://s3.amazonaws.com/aws-cli/AWSCLI32-1.11.159.msi'
$checksum = '408dce272343b735ed0b3ae05548636d28cfb187052f0336ab2641a0bd7299c9'
$checksumType = 'sha256'
$url64 = 'https://s3.amazonaws.com/aws-cli/AWSCLI64-1.11.159.msi'
$checksum64 = 'ca73553496cfa9199d0df44e2c55dedad6cb5c732dbea89506e0053bf4bf380d'
$checksumType64 = 'sha256'
$validExitCodes = @(0)

Install-ChocolateyPackage -PackageName "$packageName" `
                          -FileType "$installerType" `
                          -SilentArgs "$silentArgs" `
                          -Url "$url" `
                          -Url64bit "$url64" `
                          -ValidExitCodes $validExitCodes `
                          -Checksum "$checksum" `
                          -ChecksumType "$checksumType" `
                          -Checksum64 "$checksum64" `
                          -ChecksumType64 "$checksumType64"
tools\chocolateyUninstall.ps1
$packageName = 'awscli'
$packageSearch = "AWS Command Line Interface"
$installerType = 'msi'
$silentArgs = '/quiet /qn /norestart'
$validExitCodes = @(0)

Get-ItemProperty -Path @('HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
                         'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*',
                         'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*') `
                 -ErrorAction:SilentlyContinue `
| Where-Object   {$_.DisplayName -like $packageSearch} `
| ForEach-Object {Uninstall-ChocolateyPackage -PackageName "$packageName" `
                                              -FileType "$installerType" `
                                              -SilentArgs "$($_.PSChildName) $silentArgs" `
                                              -ValidExitCodes $validExitCodes}

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
AWS Command Line Interface v2 (Install) 2.23.13 3163 Wednesday, February 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.12 1606 Tuesday, February 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.11 10558 Saturday, February 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.10 557 Friday, January 31, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.9 3663 Thursday, January 30, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.8 5567 Wednesday, January 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.7 5294 Tuesday, January 28, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.6 8270 Saturday, January 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.5 3121 Friday, January 24, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.4 3540 Thursday, January 23, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.3 2157 Wednesday, January 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.2 10458 Saturday, January 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.1 3404 Friday, January 17, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.0 3082 Thursday, January 16, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.35 3931 Wednesday, January 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.34 4523 Tuesday, January 14, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.33 8596 Saturday, January 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.32 3198 Friday, January 10, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.31 71 Thursday, January 9, 2025
Waiting for Maintainer
AWS Command Line Interface v2 (Install) 2.22.30 6188 Wednesday, January 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.29 4563 Tuesday, January 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.28 6880 Saturday, January 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.27 2731 Friday, January 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.26 8168 Monday, December 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.25 4365 Saturday, December 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.24 2691 Friday, December 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.23 4984 Tuesday, December 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.22 4565 Saturday, December 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.21 2678 Friday, December 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.20 5170 Thursday, December 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.19 1488 Wednesday, December 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.18 5498 Tuesday, December 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.17 7064 Saturday, December 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.16 2765 Friday, December 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.15 2091 Thursday, December 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.14 4671 Wednesday, December 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.13 4085 Tuesday, December 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.12 11165 Thursday, December 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.10 3806 Wednesday, December 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.8 6228 Tuesday, December 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.7 10326 Thursday, November 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.5 6109 Tuesday, November 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.4 8415 Saturday, November 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.2 5549 Thursday, November 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.1 3507 Wednesday, November 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.0 4271 Tuesday, November 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.3 8731 Saturday, November 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.2 2955 Friday, November 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.0 2956 Thursday, November 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.20.0 5369 Wednesday, November 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.5 5070 Tuesday, November 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.4 7880 Saturday, November 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.3 2142 Friday, November 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.2 3418 Thursday, November 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.1 9819 Saturday, November 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.0 2509 Friday, November 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.18 2148 Thursday, October 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.17 82 Wednesday, October 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.16 5614 Tuesday, October 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.15 5407 Saturday, October 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.14 10205 Friday, October 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.13 4166 Thursday, October 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.12 2990 Wednesday, October 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.11 4707 Tuesday, October 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.10 8266 Saturday, October 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.9 3416 Friday, October 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.8 4061 Thursday, October 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.7 3731 Wednesday, October 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.6 3377 Tuesday, October 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.4 8872 Friday, October 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.3 3405 Thursday, October 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.2 3798 Wednesday, October 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.1 4561 Tuesday, October 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.0 6918 Saturday, October 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.65 2551 Friday, October 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.64 3705 Thursday, October 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.63 2656 Wednesday, October 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.61 11210 Saturday, September 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.59 5709 Thursday, September 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.58 3688 Wednesday, September 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.57 3900 Tuesday, September 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.56 7834 Saturday, September 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.55 2899 Friday, September 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.54 3615 Thursday, September 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.53 3636 Wednesday, September 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.52 3749 Tuesday, September 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.51 8044 Saturday, September 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.50 3072 Friday, September 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.49 3941 Thursday, September 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.48 4676 Wednesday, September 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.47 6122 Monday, September 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.46 4041 Saturday, September 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.45 211 Friday, September 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.44 3227 Thursday, September 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.43 7355 Wednesday, September 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.42 9246 Saturday, August 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.40 4497 Thursday, August 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.39 3998 Wednesday, August 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.38 3544 Tuesday, August 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.37 7530 Saturday, August 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.36 2904 Friday, August 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.35 3308 Thursday, August 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.34 3782 Wednesday, August 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.33 3388 Tuesday, August 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.32 6781 Saturday, August 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.31 2487 Friday, August 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.30 2774 Thursday, August 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.29 4375 Wednesday, August 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.28 3155 Tuesday, August 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.27 5312 Saturday, August 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.26 3075 Friday, August 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.25 3130 Thursday, August 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.24 2570 Wednesday, August 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.23 3982 Tuesday, August 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.22 6020 Saturday, August 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.21 2812 Friday, August 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.20 5493 Wednesday, July 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.19 2399 Tuesday, July 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.18 7289 Friday, July 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.16 5423 Wednesday, July 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.15 3260 Tuesday, July 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.14 8697 Friday, July 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.13 12338 Saturday, July 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.12 4059 Thursday, July 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.11 3657 Wednesday, July 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.10 3826 Tuesday, July 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.9 7888 Saturday, July 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.8 4701 Thursday, July 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.7 4203 Wednesday, July 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.6 3406 Tuesday, July 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.5 7463 Saturday, June 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.4 1898 Friday, June 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.3 83 Thursday, June 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.2 6249 Wednesday, June 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.1 4533 Tuesday, June 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.0 9382 Friday, June 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.12 4183 Thursday, June 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.11 2710 Wednesday, June 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.10 4747 Tuesday, June 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.9 8030 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.8 1918 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.7 4381 Thursday, June 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.6 3894 Wednesday, June 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.5 4488 Tuesday, June 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.4 7373 Saturday, June 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.3 1685 Friday, June 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.2 4854 Thursday, June 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.1 3523 Wednesday, June 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.0 3274 Tuesday, June 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.62 6039 Saturday, June 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.61 3028 Friday, May 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.60 5266 Thursday, May 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.59 3902 Wednesday, May 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.58 11007 Saturday, May 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.57 3522 Friday, May 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.56 3125 Thursday, May 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.55 4412 Wednesday, May 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.54 2772 Tuesday, May 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.53 6203 Saturday, May 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.52 2534 Friday, May 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.51 3570 Thursday, May 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.50 3001 Wednesday, May 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.49 3026 Tuesday, May 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.48 7418 Saturday, May 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.47 3738 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.46 1020 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.45 6664 Tuesday, May 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.44 18396 Saturday, May 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.43 4592 Thursday, May 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.42 10611 Saturday, April 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.41 5078 Thursday, April 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.40 10116 Saturday, April 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.39 4481 Thursday, April 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.38 10737 Saturday, April 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.37 4297 Thursday, April 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.36 10070 Saturday, April 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.35 4496 Thursday, April 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.34 12180 Saturday, March 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.33 5029 Thursday, March 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.32 11295 Saturday, March 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.31 6481 Thursday, March 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.30 12784 Saturday, March 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.28 10993 Tuesday, March 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.27 7028 Saturday, March 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.26 6855 Thursday, March 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.25 21984 Saturday, March 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.24 8434 Thursday, February 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.23 15557 Saturday, February 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.22 8358 Thursday, February 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.21 12860 Saturday, February 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.20 7118 Thursday, February 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.19 16625 Saturday, February 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.17 20738 Saturday, February 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.16 6677 Thursday, February 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.15 14915 Saturday, January 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.14 7112 Thursday, January 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.13 8831 Tuesday, January 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.12 8915 Saturday, January 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.11 8033 Thursday, January 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.10 13577 Saturday, January 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.9 7095 Thursday, January 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.8 12503 Saturday, January 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.7 6353 Thursday, January 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.6 10138 Saturday, December 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.5 5024 Thursday, December 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.4 8677 Saturday, December 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.3 6493 Thursday, December 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.2 11619 Saturday, December 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.1 5138 Thursday, December 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.0 16350 Saturday, December 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.6 8781 Thursday, December 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.5 15052 Friday, December 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.2 6390 Wednesday, November 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.0 7093 Tuesday, November 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.38 14242 Wednesday, November 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.37 14526 Saturday, November 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.36 5244 Thursday, November 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.35 8369 Tuesday, November 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.34 9167 Saturday, November 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.32 15393 Saturday, November 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.31 6374 Thursday, November 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.30 13076 Saturday, October 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.29 6262 Thursday, October 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.28 13418 Saturday, October 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.27 8141 Thursday, October 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.26 13439 Saturday, October 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.25 15858 Saturday, October 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.24 6405 Thursday, October 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.23 7962 Tuesday, October 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.21 152 Saturday, September 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.20 24742 Thursday, September 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.19 12578 Saturday, September 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.18 7111 Thursday, September 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.16 17750 Thursday, September 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.15 12156 Saturday, September 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.14 8497 Thursday, August 31, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.13 13398 Saturday, August 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.12 7029 Thursday, August 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.11 1648 Saturday, August 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.9 27533 Saturday, August 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.8 7277 Thursday, August 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.7 12974 Saturday, August 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.6 7608 Thursday, August 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.5 91 Saturday, July 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.4 15809 Thursday, July 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.3 14467 Saturday, July 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.2 14380 Thursday, July 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.1 23123 Friday, July 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.0 28048 Saturday, July 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.7 11029 Thursday, July 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.6 17584 Saturday, July 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.5 7362 Friday, June 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.4 8137 Thursday, June 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.3 17515 Saturday, June 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.2 10893 Thursday, June 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.1 18171 Saturday, June 17, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.0 11919 Thursday, June 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.27 13208 Saturday, June 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.26 6992 Thursday, June 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.25 12532 Saturday, June 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.24 7233 Thursday, June 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.23 12706 Saturday, May 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.22 7835 Thursday, May 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.21 13238 Saturday, May 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.20 25211 Saturday, May 13, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.19 9799 Thursday, May 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.17 17188 Thursday, May 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.16 16333 Saturday, April 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.13 24511 Saturday, April 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.11 21931 Monday, April 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.10 9189 Thursday, April 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.9 8735 Tuesday, April 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.8 9257 Saturday, April 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.6 17747 Saturday, March 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.5 6857 Thursday, March 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.4 17523 Saturday, March 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.2 17685 Saturday, March 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.1 7559 Thursday, March 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.0 14312 Friday, March 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.4 5952 Thursday, March 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.3 11640 Saturday, February 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.2 8224 Thursday, February 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.1 12540 Saturday, February 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.23 17743 Saturday, February 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.22 7352 Thursday, February 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.21 11299 Monday, February 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.20 11456 Thursday, February 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.19 11424 Monday, January 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.18 11755 Thursday, January 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.17 13399 Saturday, January 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.16 8674 Thursday, January 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.15 12851 Saturday, January 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.14 7511 Thursday, January 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.13 15795 Friday, January 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.12 14454 Saturday, December 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.11 7011 Thursday, December 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.10 11223 Friday, December 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.9 7501 Thursday, December 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.8 12859 Saturday, December 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.7 8523 Thursday, December 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.6 13945 Saturday, December 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.5 7440 Thursday, December 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.4 12292 Saturday, December 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.3 6371 Thursday, December 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.2 5453 Wednesday, November 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.1 13519 Thursday, November 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.0 16161 Saturday, November 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.13 6798 Thursday, November 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.12 9611 Saturday, November 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.11 11593 Thursday, November 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.9 13293 Saturday, November 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.8 7498 Thursday, November 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.7 15735 Friday, October 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.6 7407 Thursday, October 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.5 10791 Saturday, October 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.3 17777 Friday, October 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.2 15610 Saturday, October 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.1 6601 Thursday, October 6, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.0 10815 Saturday, October 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.35 13658 Saturday, September 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.34 6735 Thursday, September 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.33 11609 Saturday, September 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.32 6929 Thursday, September 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.31 14077 Saturday, September 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.30 7652 Thursday, September 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.29 13884 Monday, September 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.28 19869 Thursday, September 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.26 23212 Thursday, August 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.25 16571 Saturday, August 20, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.24 11609 Wednesday, August 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.22 15289 Friday, August 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.21 32584 Thursday, August 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.20 16114 Saturday, July 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.19 7934 Thursday, July 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.18 14078 Saturday, July 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.17 8199 Thursday, July 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.16 13995 Saturday, July 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.15 7265 Thursday, July 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.14 13317 Saturday, July 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.13 6240 Thursday, July 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.11 27786 Saturday, June 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.9 18293 Saturday, June 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.8 4870 Friday, June 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.7 21307 Thursday, June 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.6 11602 Saturday, June 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.5 6971 Thursday, June 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.4 11548 Friday, May 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.3 6133 Thursday, May 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.2 12306 Saturday, May 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.1 7928 Wednesday, May 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.0 11221 Saturday, May 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.4 6836 Wednesday, May 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.3 8226 Sunday, May 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.2 6877 Thursday, May 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.1 9363 Friday, April 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.0 5269 Thursday, April 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.8 10738 Friday, April 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.7 3714 Thursday, April 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.6 10545 Saturday, April 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.4 11251 Saturday, April 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.3 5823 Thursday, April 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.2 8599 Saturday, April 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.1 5849 Thursday, March 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.0 6706 Monday, March 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.29 8274 Saturday, March 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.28 5497 Thursday, March 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.27 10426 Friday, March 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.25 12188 Friday, March 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.24 5935 Wednesday, March 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.23 8757 Friday, March 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.22 6044 Wednesday, March 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.21 22701 Friday, February 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.20 6052 Wednesday, February 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.19 8092 Friday, February 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.18 10530 Friday, February 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.17 6763 Wednesday, February 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.16 8288 Friday, February 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.15 10539 Friday, January 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.13 10804 Friday, January 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.12 14764 Wednesday, January 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.11 6753 Friday, January 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.10 4146 Wednesday, January 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.9 6806 Friday, January 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.7 13192 Wednesday, December 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.6 16934 Friday, December 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.5 8487 Saturday, December 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.4 2621 Friday, December 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.3 4964 Tuesday, November 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.2 6571 Saturday, November 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.1 6055 Wednesday, November 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.0 6794 Friday, November 19, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.7 5195 Wednesday, November 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.6 7376 Friday, November 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.5 5111 Wednesday, November 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.4 6906 Friday, November 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.0 16197 Friday, October 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.47 4842 Wednesday, October 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.46 6649 Friday, October 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.45 5708 Tuesday, October 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.43 12446 Friday, October 1, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.42 5068 Wednesday, September 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.41 6538 Friday, September 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.40 3963 Wednesday, September 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.39 6048 Friday, September 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.38 4400 Wednesday, September 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.37 7472 Friday, September 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.36 4146 Wednesday, September 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.35 5751 Friday, September 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.33 7949 Friday, August 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.32 3615 Wednesday, August 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.31 6398 Friday, August 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.30 4158 Wednesday, August 18, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.29 5776 Friday, August 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.28 3840 Wednesday, August 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.27 6389 Friday, August 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.26 3313 Wednesday, August 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.25 7448 Saturday, July 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.24 2018 Friday, July 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.23 2367 Wednesday, July 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.22 6911 Friday, July 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.21 4507 Wednesday, July 21, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.20 5169 Friday, July 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.19 3344 Thursday, July 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.18 7047 Friday, July 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.17 3868 Wednesday, July 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.16 7018 Friday, July 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.15 5963 Wednesday, June 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.14 5449 Friday, June 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.13 7779 Thursday, June 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.12 6074 Wednesday, June 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.11 5574 Friday, June 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.10 4715 Wednesday, June 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.9 5972 Friday, June 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.8 3375 Wednesday, June 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.7 6440 Friday, May 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.6 4372 Wednesday, May 26, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.5 13308 Saturday, May 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.4 5561 Wednesday, May 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.3 5758 Friday, May 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.2 3945 Wednesday, May 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.1 5018 Friday, April 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.0 3130 Wednesday, April 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.39 120 Thursday, April 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.38 12356 Friday, April 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.37 4064 Wednesday, April 14, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.36 5640 Friday, April 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.35 417 Wednesday, April 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.34 9243 Friday, April 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.33 3532 Wednesday, March 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.32 556 Tuesday, March 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.29 53468 Tuesday, March 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.28 18515 Tuesday, February 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.27 33840 Wednesday, February 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.26 5927 Friday, February 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.25 3076 Wednesday, February 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.24 6745 Friday, February 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.23 3524 Wednesday, February 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.22 9935 Friday, January 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.21 7677 Friday, January 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.20 4340 Wednesday, January 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.19 5617 Friday, January 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.18 2782 Wednesday, January 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.17 4977 Friday, January 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.16 1906 Wednesday, January 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.15 5636 Wednesday, December 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.14 4073 Wednesday, December 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.13 4536 Friday, December 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.12 1915 Thursday, December 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.11 1697 Wednesday, December 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.10 5287 Friday, December 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.9 1684 Thursday, December 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.8 3094 Wednesday, December 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.7 4693 Friday, December 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.6 2461 Wednesday, December 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.4 6788 Wednesday, November 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.3 4761 Friday, November 20, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.2 2169 Wednesday, November 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.1 4462 Friday, November 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.0 4053 Wednesday, November 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.63 4731 Tuesday, November 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.62 2848 Friday, November 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.61 7131 Friday, October 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.60 4067 Wednesday, October 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.59 7203 Friday, October 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.58 3269 Wednesday, October 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.57 3728 Friday, October 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.56 9040 Friday, October 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.55 5565 Wednesday, October 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.54 4982 Friday, October 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.53 5917 Wednesday, September 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.52 4367 Friday, September 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.51 2410 Thursday, September 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.50 6570 Friday, September 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.49 2961 Wednesday, September 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.48 5246 Friday, September 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.47 3339 Wednesday, September 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.46 3867 Friday, September 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.45 2723 Wednesday, September 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.44 3217 Friday, August 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.43 4804 Wednesday, August 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.42 5738 Friday, August 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.41 3166 Wednesday, August 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.40 3647 Friday, August 14, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.39 3794 Wednesday, August 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.38 4244 Friday, August 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.37 3096 Wednesday, August 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.36 4053 Friday, July 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.35 3014 Wednesday, July 29, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.34 4524 Friday, July 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.33 3371 Wednesday, July 22, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.31 5595 Thursday, July 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.30 7970 Friday, July 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.29 2782 Wednesday, July 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.28 3979 Friday, July 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.27 2828 Wednesday, July 1, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.26 4429 Friday, June 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.25 2920 Wednesday, June 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.24 4413 Friday, June 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.23 2753 Wednesday, June 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.22 5552 Friday, June 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.21 1233 Thursday, June 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.20 1880 Wednesday, June 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.19 3636 Friday, June 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.18 2148 Wednesday, June 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.17 4604 Wednesday, May 27, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.15 3510 Thursday, May 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.14 5654 Friday, May 15, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.13 2538 Wednesday, May 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.12 4022 Friday, May 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.11 3280 Wednesday, May 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.10 6429 Tuesday, April 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.9 3410 Thursday, April 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.8 4777 Friday, April 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.7 6240 Tuesday, April 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.6 5847 Tuesday, March 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.5 5119 Tuesday, March 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.4 5438 Wednesday, March 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.3 5711 Tuesday, March 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.2 4309 Tuesday, March 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.1 5774 Wednesday, February 26, 2020 Approved
AWS Command Line Interface (Install) 1.36.8 14 Friday, November 22, 2024 Approved
AWS Command Line Interface (Install) 1.34.30 28 Tuesday, October 1, 2024 Approved
AWS Command Line Interface (Install) 1.33.37 29 Tuesday, August 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.102 55 Friday, May 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.100 43 Wednesday, May 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.97 37 Friday, May 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.95 46 Wednesday, May 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.94 43 Tuesday, April 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.92 44 Friday, April 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.89 48 Tuesday, April 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.87 39 Friday, April 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.86 41 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.85 42 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.83 34 Friday, April 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.81 39 Wednesday, April 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.80 41 Tuesday, April 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.76 33 Wednesday, April 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.75 39 Tuesday, April 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.73 36 Friday, March 29, 2024 Approved
AWS Command Line Interface (Install) 1.32.71 52 Wednesday, March 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.70 50 Tuesday, March 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.66 48 Wednesday, March 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.65 45 Tuesday, March 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.61 52 Wednesday, March 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.58 41 Friday, March 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.56 39 Wednesday, March 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.53 43 Friday, March 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.51 39 Wednesday, February 28, 2024 Approved
AWS Command Line Interface (Install) 1.32.50 34 Tuesday, February 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.48 43 Friday, February 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.45 47 Tuesday, February 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.43 36 Friday, February 16, 2024 Approved
AWS Command Line Interface (Install) 1.32.40 39 Tuesday, February 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.38 51 Friday, February 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.36 50 Wednesday, February 7, 2024 Approved
AWS Command Line Interface (Install) 1.32.35 41 Tuesday, February 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.33 43 Friday, February 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.31 39 Wednesday, January 31, 2024 Approved
AWS Command Line Interface (Install) 1.32.30 53 Tuesday, January 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.28 44 Friday, January 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.22 36 Friday, January 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.20 38 Wednesday, January 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.19 52 Monday, January 15, 2024 Approved
AWS Command Line Interface (Install) 1.32.17 38 Friday, January 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.15 48 Tuesday, January 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.13 51 Friday, January 5, 2024 Approved
AWS Command Line Interface (Install) 1.32.6 48 Friday, December 22, 2023 Approved
AWS Command Line Interface (Install) 1.32.4 53 Wednesday, December 20, 2023 Approved
AWS Command Line Interface (Install) 1.32.3 52 Tuesday, December 19, 2023 Approved
AWS Command Line Interface (Install) 1.32.1 50 Friday, December 15, 2023 Approved
AWS Command Line Interface (Install) 1.31.13 48 Wednesday, December 13, 2023 Approved
AWS Command Line Interface (Install) 1.31.12 57 Monday, December 11, 2023 Approved
AWS Command Line Interface (Install) 1.31.10 47 Friday, December 8, 2023 Approved
AWS Command Line Interface (Install) 1.31.7 54 Tuesday, December 5, 2023 Approved
AWS Command Line Interface (Install) 1.31.6 62 Saturday, December 2, 2023 Approved
AWS Command Line Interface (Install) 1.30.4 56 Tuesday, November 21, 2023 Approved
AWS Command Line Interface (Install) 1.30.2 54 Friday, November 17, 2023 Approved
AWS Command Line Interface (Install) 1.30.0 53 Wednesday, November 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.83 48 Friday, November 10, 2023 Approved
AWS Command Line Interface (Install) 1.29.82 60 Thursday, November 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.80 60 Wednesday, November 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.79 57 Tuesday, November 7, 2023 Approved
AWS Command Line Interface (Install) 1.29.77 53 Thursday, November 2, 2023 Approved
AWS Command Line Interface (Install) 1.29.75 50 Wednesday, November 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.72 49 Friday, October 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.70 51 Wednesday, October 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.69 53 Tuesday, October 24, 2023 Approved
AWS Command Line Interface (Install) 1.29.67 65 Friday, October 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.65 55 Wednesday, October 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.64 61 Tuesday, October 17, 2023 Approved
AWS Command Line Interface (Install) 1.29.63 63 Friday, October 13, 2023 Approved
AWS Command Line Interface (Install) 1.29.61 44 Friday, October 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.59 52 Wednesday, October 4, 2023 Approved
AWS Command Line Interface (Install) 1.29.57 54 Saturday, September 30, 2023 Approved
AWS Command Line Interface (Install) 1.29.55 52 Wednesday, September 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.54 42 Tuesday, September 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.51 64 Wednesday, September 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.50 54 Tuesday, September 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.48 56 Friday, September 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.45 57 Tuesday, September 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.43 61 Friday, September 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.41 49 Wednesday, September 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.36 277 Tuesday, August 29, 2023 Approved
AWS Command Line Interface (Install) 1.29.34 45 Friday, August 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.32 58 Wednesday, August 23, 2023 Approved
AWS Command Line Interface (Install) 1.29.31 61 Tuesday, August 22, 2023 Approved
AWS Command Line Interface (Install) 1.29.29 62 Friday, August 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.26 61 Tuesday, August 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.24 66 Friday, August 11, 2023 Approved
AWS Command Line Interface (Install) 1.29.22 81 Wednesday, August 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.16 76 Tuesday, August 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.14 58 Friday, July 28, 2023 Approved
AWS Command Line Interface (Install) 1.29.11 56 Wednesday, July 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.5 46 Wednesday, July 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.4 47 Tuesday, July 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.2 127 Wednesday, July 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.0 178 Friday, July 7, 2023 Approved
AWS Command Line Interface (Install) 1.28.0 51 Tuesday, July 4, 2023 Approved
AWS Command Line Interface (Install) 1.27.162 50 Wednesday, June 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.161 62 Tuesday, June 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.159 57 Friday, June 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.157 54 Wednesday, June 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.156 55 Tuesday, June 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.153 56 Wednesday, June 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.152 46 Tuesday, June 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.150 58 Friday, June 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.148 49 Wednesday, June 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.145 55 Friday, June 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.143 49 Wednesday, May 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.141 60 Friday, May 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.139 49 Wednesday, May 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.138 52 Tuesday, May 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.135 59 Thursday, May 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.134 64 Tuesday, May 16, 2023 Approved
AWS Command Line Interface (Install) 1.27.133 51 Friday, May 12, 2023 Approved
AWS Command Line Interface (Install) 1.27.131 60 Wednesday, May 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.130 66 Tuesday, May 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.127 49 Friday, May 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.125 52 Wednesday, May 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.124 52 Tuesday, May 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.122 45 Friday, April 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.120 65 Wednesday, April 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.119 56 Tuesday, April 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.113 69 Friday, April 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.110 55 Tuesday, April 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.106 53 Wednesday, April 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.101 61 Wednesday, March 29, 2023 Approved
AWS Command Line Interface (Install) 1.27.100 67 Tuesday, March 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.98 56 Friday, March 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.93 56 Friday, March 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.90 57 Tuesday, March 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.88 76 Friday, March 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.86 42 Wednesday, March 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.85 62 Tuesday, March 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.81 66 Wednesday, March 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.80 53 Tuesday, February 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.78 63 Friday, February 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.75 63 Tuesday, February 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.73 70 Friday, February 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.71 66 Wednesday, February 15, 2023 Approved
AWS Command Line Interface (Install) 1.27.70 61 Tuesday, February 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.68 62 Friday, February 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.66 59 Wednesday, February 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.65 64 Tuesday, February 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.63 69 Friday, February 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.61 62 Wednesday, February 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.60 57 Tuesday, January 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.58 62 Friday, January 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.56 60 Wednesday, January 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.53 65 Friday, January 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.51 58 Wednesday, January 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.49 63 Friday, January 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.47 65 Wednesday, January 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.46 57 Tuesday, January 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.43 60 Thursday, January 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.40 58 Friday, December 30, 2022 Approved
AWS Command Line Interface (Install) 1.27.38 65 Wednesday, December 28, 2022 Approved
AWS Command Line Interface (Install) 1.27.36 59 Friday, December 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.33 66 Tuesday, December 20, 2022 Approved
AWS Command Line Interface (Install) 1.27.31 59 Friday, December 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.29 66 Wednesday, December 14, 2022 Approved
AWS Command Line Interface (Install) 1.27.26 59 Friday, December 9, 2022 Approved
AWS Command Line Interface (Install) 1.27.24 64 Wednesday, December 7, 2022 Approved
AWS Command Line Interface (Install) 1.27.23 62 Tuesday, December 6, 2022 Approved
AWS Command Line Interface (Install) 1.27.15 82 Wednesday, November 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.14 70 Tuesday, November 22, 2022 Approved
AWS Command Line Interface (Install) 1.27.12 56 Friday, November 18, 2022 Approved
AWS Command Line Interface (Install) 1.27.10 66 Wednesday, November 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.9 60 Tuesday, November 15, 2022 Approved
AWS Command Line Interface (Install) 1.27.7 67 Friday, November 11, 2022 Approved
AWS Command Line Interface (Install) 1.27.4 62 Tuesday, November 8, 2022 Approved
AWS Command Line Interface (Install) 1.27.3 67 Saturday, November 5, 2022 Approved
AWS Command Line Interface (Install) 1.27.2 77 Friday, November 4, 2022 Approved
AWS Command Line Interface (Install) 1.27.0 71 Wednesday, November 2, 2022 Approved
AWS Command Line Interface (Install) 1.26.5 74 Tuesday, November 1, 2022 Approved
AWS Command Line Interface (Install) 1.26.3 57 Friday, October 28, 2022 Approved
AWS Command Line Interface (Install) 1.26.1 51 Wednesday, October 26, 2022 Approved
AWS Command Line Interface (Install) 1.26.0 79 Tuesday, October 25, 2022 Approved
AWS Command Line Interface (Install) 1.25.96 60 Friday, October 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.94 75 Wednesday, October 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.93 70 Tuesday, October 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.92 63 Saturday, October 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.89 76 Friday, October 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.87 51 Wednesday, October 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.83 58 Wednesday, September 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.82 64 Tuesday, September 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.78 72 Wednesday, September 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.77 67 Monday, September 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.75 73 Friday, September 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.73 79 Wednesday, September 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.68 70 Wednesday, September 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.66 75 Friday, September 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.64 84 Wednesday, August 31, 2022 Approved
AWS Command Line Interface (Install) 1.25.63 73 Tuesday, August 30, 2022 Approved
AWS Command Line Interface (Install) 1.25.62 60 Saturday, August 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.59 70 Wednesday, August 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.58 85 Tuesday, August 23, 2022 Approved
AWS Command Line Interface (Install) 1.25.56 69 Friday, August 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.55 76 Thursday, August 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.51 80 Saturday, August 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.49 74 Thursday, August 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.48 74 Wednesday, August 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.46 75 Friday, August 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.43 70 Tuesday, August 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.42 74 Monday, August 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.40 82 Friday, July 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.38 69 Wednesday, July 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.37 65 Tuesday, July 26, 2022 Approved
AWS Command Line Interface (Install) 1.25.35 57 Friday, July 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.32 63 Tuesday, July 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.28 70 Wednesday, July 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.25 62 Friday, July 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.23 76 Wednesday, July 6, 2022 Approved
AWS Command Line Interface (Install) 1.25.22 75 Saturday, July 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.21 71 Friday, July 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.19 70 Wednesday, June 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.18 71 Tuesday, June 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.16 74 Friday, June 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.14 68 Wednesday, June 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.13 75 Tuesday, June 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.10 85 Thursday, June 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.9 57 Wednesday, June 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.8 99 Tuesday, June 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.7 76 Saturday, June 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.6 66 Friday, June 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.4 65 Wednesday, June 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.3 76 Tuesday, June 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.2 75 Friday, June 3, 2022 Approved
AWS Command Line Interface (Install) 1.25.0 89 Wednesday, June 1, 2022 Approved
AWS Command Line Interface (Install) 1.24.9 74 Friday, May 27, 2022 Approved
AWS Command Line Interface (Install) 1.24.7 94 Wednesday, May 25, 2022 Approved
AWS Command Line Interface (Install) 1.24.6 86 Tuesday, May 24, 2022 Approved
AWS Command Line Interface (Install) 1.24.4 87 Friday, May 20, 2022 Approved
AWS Command Line Interface (Install) 1.24.2 85 Wednesday, May 18, 2022 Approved
AWS Command Line Interface (Install) 1.24.1 84 Tuesday, May 17, 2022 Approved
AWS Command Line Interface (Install) 1.23.13 86 Friday, May 13, 2022 Approved
AWS Command Line Interface (Install) 1.23.11 87 Wednesday, May 11, 2022 Approved
AWS Command Line Interface (Install) 1.23.6 115 Wednesday, May 4, 2022 Approved
AWS Command Line Interface (Install) 1.23.5 73 Tuesday, May 3, 2022 Approved
AWS Command Line Interface (Install) 1.23.3 70 Thursday, April 28, 2022 Approved
AWS Command Line Interface (Install) 1.23.1 79 Wednesday, April 27, 2022 Approved
AWS Command Line Interface (Install) 1.23.0 104 Tuesday, April 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.101 82 Saturday, April 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.98 70 Wednesday, April 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.96 87 Friday, April 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.94 85 Wednesday, April 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.93 82 Tuesday, April 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.89 93 Wednesday, April 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.88 81 Tuesday, April 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.86 85 Friday, April 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.84 73 Wednesday, March 30, 2022 Approved
AWS Command Line Interface (Install) 1.22.81 80 Friday, March 25, 2022 Approved
AWS Command Line Interface (Install) 1.22.79 74 Wednesday, March 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.78 77 Tuesday, March 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.77 195 Saturday, March 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.74 81 Tuesday, March 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.71 89 Thursday, March 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.69 84 Tuesday, March 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.68 82 Saturday, March 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.66 81 Thursday, March 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.64 74 Tuesday, March 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.63 79 Saturday, February 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.61 80 Thursday, February 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.59 89 Tuesday, February 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.58 87 Saturday, February 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.56 80 Thursday, February 17, 2022 Approved
AWS Command Line Interface (Install) 1.22.55 81 Tuesday, February 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.54 117 Saturday, February 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.52 93 Thursday, February 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.50 80 Tuesday, February 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.49 70 Saturday, February 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.47 90 Thursday, February 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.46 96 Saturday, January 29, 2022 Approved
AWS Command Line Interface (Install) 1.22.44 99 Thursday, January 27, 2022 Approved
AWS Command Line Interface (Install) 1.22.42 103 Monday, January 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.39 103 Thursday, January 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.37 114 Saturday, January 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.34 82 Thursday, January 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.32 86 Monday, January 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.31 94 Saturday, January 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.29 82 Thursday, January 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.25 178 Tuesday, December 21, 2021 Approved
AWS Command Line Interface (Install) 1.22.24 86 Tuesday, December 14, 2021 Approved
AWS Command Line Interface (Install) 1.22.22 89 Thursday, December 9, 2021 Approved
AWS Command Line Interface (Install) 1.22.21 74 Tuesday, December 7, 2021 Approved
AWS Command Line Interface (Install) 1.22.13 108 Thursday, November 25, 2021 Approved
AWS Command Line Interface (Install) 1.22.11 94 Tuesday, November 23, 2021 Approved
AWS Command Line Interface (Install) 1.22.10 74 Saturday, November 20, 2021 Approved
AWS Command Line Interface (Install) 1.22.8 99 Thursday, November 18, 2021 Approved
AWS Command Line Interface (Install) 1.22.6 101 Tuesday, November 16, 2021 Approved
AWS Command Line Interface (Install) 1.22.5 96 Saturday, November 13, 2021 Approved
AWS Command Line Interface (Install) 1.22.3 116 Thursday, November 11, 2021 Approved
AWS Command Line Interface (Install) 1.22.1 96 Tuesday, November 9, 2021 Approved
AWS Command Line Interface (Install) 1.21.12 164 Saturday, November 6, 2021 Approved
AWS Command Line Interface (Install) 1.21.0 91 Thursday, October 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.64 89 Tuesday, October 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.63 95 Saturday, October 16, 2021 Approved
AWS Command Line Interface (Install) 1.20.61 101 Thursday, October 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.58 216 Saturday, October 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.57 117 Friday, October 8, 2021 Approved
AWS Command Line Interface (Install) 1.20.56 103 Thursday, October 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.54 97 Tuesday, October 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.53 89 Saturday, October 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.51 94 Thursday, September 30, 2021 Approved
AWS Command Line Interface (Install) 1.20.49 102 Tuesday, September 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.48 99 Saturday, September 25, 2021 Approved
AWS Command Line Interface (Install) 1.20.46 93 Thursday, September 23, 2021 Approved
AWS Command Line Interface (Install) 1.20.44 117 Saturday, September 18, 2021 Approved
AWS Command Line Interface (Install) 1.20.40 130 Saturday, September 11, 2021 Approved
AWS Command Line Interface (Install) 1.20.38 106 Thursday, September 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.36 91 Saturday, September 4, 2021 Approved
AWS Command Line Interface (Install) 1.20.34 112 Thursday, September 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.32 101 Tuesday, August 31, 2021 Approved
AWS Command Line Interface (Install) 1.20.31 94 Saturday, August 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.29 88 Thursday, August 26, 2021 Approved
AWS Command Line Interface (Install) 1.20.27 102 Tuesday, August 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.26 142 Saturday, August 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.24 99 Thursday, August 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.23 119 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.22 84 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.21 107 Saturday, August 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.19 102 Thursday, August 12, 2021 Approved
AWS Command Line Interface (Install) 1.20.17 101 Tuesday, August 10, 2021 Approved
AWS Command Line Interface (Install) 1.20.16 106 Saturday, August 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.15 117 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.14 107 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.12 92 Tuesday, August 3, 2021 Approved
AWS Command Line Interface (Install) 1.20.9 99 Thursday, July 29, 2021 Approved
AWS Command Line Interface (Install) 1.20.7 111 Tuesday, July 27, 2021 Approved
AWS Command Line Interface (Install) 1.20.6 113 Saturday, July 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.4 93 Thursday, July 22, 2021 Approved
AWS Command Line Interface (Install) 1.20.2 101 Monday, July 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.1 113 Saturday, July 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.111 83 Wednesday, July 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.110 103 Tuesday, July 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.109 102 Saturday, July 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.107 90 Thursday, July 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.105 100 Friday, July 2, 2021 Approved
AWS Command Line Interface (Install) 1.19.103 1173 Thursday, July 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.102 113 Tuesday, June 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.101 100 Saturday, June 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.99 116 Thursday, June 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.98 88 Tuesday, June 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.96 100 Thursday, June 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.94 105 Tuesday, June 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.93 103 Saturday, June 12, 2021 Approved
AWS Command Line Interface (Install) 1.19.92 98 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.91 106 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.89 103 Tuesday, June 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.88 97 Saturday, June 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.86 99 Thursday, June 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.84 90 Saturday, May 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.82 97 Thursday, May 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.79 105 Tuesday, May 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.78 98 Saturday, May 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.77 93 Friday, May 21, 2021 Approved
AWS Command Line Interface (Install) 1.19.76 96 Thursday, May 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.75 105 Wednesday, May 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.74 107 Tuesday, May 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.72 99 Friday, May 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.70 107 Tuesday, May 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.69 113 Saturday, May 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.67 117 Thursday, May 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.64 113 Monday, May 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.62 117 Saturday, May 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.60 89 Thursday, April 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.58 100 Tuesday, April 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.57 89 Saturday, April 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.56 99 Friday, April 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.54 101 Tuesday, April 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.52 98 Thursday, April 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.50 85 Tuesday, April 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.49 103 Saturday, April 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.45 107 Tuesday, April 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.44 93 Saturday, April 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.42 91 Thursday, April 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.40 88 Monday, March 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.39 112 Saturday, March 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.37 112 Thursday, March 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.35 120 Wednesday, March 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.34 108 Tuesday, March 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.32 96 Friday, March 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.30 118 Thursday, March 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.29 96 Wednesday, March 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.28 131 Tuesday, March 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.27 113 Saturday, March 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.26 4332 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.25 114 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.23 118 Tuesday, March 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.22 99 Saturday, March 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.21 112 Friday, March 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.20 115 Thursday, March 4, 2021 Approved
AWS Command Line Interface (Install) 1.19.19 127 Wednesday, March 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.17 124 Saturday, February 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.16 116 Friday, February 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.15 106 Thursday, February 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.13 92 Tuesday, February 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.12 108 Saturday, February 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.11 104 Friday, February 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.10 115 Thursday, February 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.8 95 Tuesday, February 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.7 124 Saturday, February 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.4 135 Tuesday, February 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.3 207 Saturday, February 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.1 133 Thursday, February 4, 2021 Approved
AWS Command Line Interface (Install) 1.18.223 115 Saturday, January 30, 2021 Approved
AWS Command Line Interface (Install) 1.18.221 119 Thursday, January 28, 2021 Approved
AWS Command Line Interface (Install) 1.18.220 121 Wednesday, January 27, 2021 Approved
AWS Command Line Interface (Install) 1.18.219 140 Saturday, January 23, 2021 Approved
AWS Command Line Interface (Install) 1.18.216 105 Saturday, January 16, 2021 Approved
AWS Command Line Interface (Install) 1.18.214 130 Thursday, January 14, 2021 Approved
AWS Command Line Interface (Install) 1.18.212 124 Tuesday, January 12, 2021 Approved
AWS Command Line Interface (Install) 1.18.210 116 Thursday, January 7, 2021 Approved
AWS Command Line Interface (Install) 1.18.208 126 Tuesday, January 5, 2021 Approved
AWS Command Line Interface (Install) 1.18.207 105 Friday, January 1, 2021 Approved
AWS Command Line Interface (Install) 1.18.206 118 Thursday, December 31, 2020 Approved
AWS Command Line Interface (Install) 1.18.205 118 Tuesday, December 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.204 108 Monday, December 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.201 109 Tuesday, December 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.200 105 Friday, December 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.197 106 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.196 112 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.195 1855 Saturday, December 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.193 99 Wednesday, December 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.191 101 Tuesday, December 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.190 114 Saturday, December 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.184 122 Tuesday, November 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.183 118 Saturday, November 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.181 136 Thursday, November 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.179 125 Tuesday, November 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.178 131 Saturday, November 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.176 106 Thursday, November 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.174 114 Monday, November 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.173 125 Saturday, November 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.171 190 Thursday, November 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.170 129 Tuesday, November 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.167 137 Thursday, October 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.165 249 Tuesday, October 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.164 143 Saturday, October 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.162 140 Thursday, October 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.160 128 Tuesday, October 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.159 109 Saturday, October 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.157 189 Saturday, October 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.153 130 Tuesday, October 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.152 141 Saturday, October 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.150 131 Thursday, October 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.148 129 Tuesday, September 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.147 155 Saturday, September 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.146 110 Thursday, September 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.144 107 Wednesday, September 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.143 123 Tuesday, September 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.142 120 Saturday, September 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.141 413 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.140 133 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.138 109 Tuesday, September 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.137 124 Saturday, September 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.133 172 Saturday, September 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.131 134 Thursday, September 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.129 140 Tuesday, September 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.128 144 Saturday, August 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.126 180 Thursday, August 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.125 144 Tuesday, August 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.123 155 Thursday, August 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.121 183 Tuesday, August 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.120 136 Saturday, August 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.119 128 Thursday, August 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.116 6938 Monday, August 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.115 146 Saturday, August 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.113 182 Thursday, August 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.111 180 Tuesday, August 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.110 185 Saturday, August 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.108 160 Thursday, July 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.106 182 Tuesday, July 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.105 183 Saturday, July 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.103 218 Thursday, July 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.101 1300 Tuesday, July 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.100 181 Saturday, July 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.96 207 Thursday, July 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.94 232 Tuesday, July 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.92 206 Thursday, July 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.90 208 Tuesday, June 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.89 252 Saturday, June 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.87 214 Thursday, June 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.85 217 Tuesday, June 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.84 244 Saturday, June 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.82 203 Thursday, June 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.80 285 Tuesday, June 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.79 225 Saturday, June 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.75 189 Tuesday, June 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.74 227 Saturday, June 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.72 227 Thursday, June 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.70 220 Tuesday, June 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.69 6580 Friday, May 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.68 239 Thursday, May 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.65 28297 Thursday, May 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.63 194 Wednesday, May 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.62 239 Tuesday, May 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.61 217 Saturday, May 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.57 203 Tuesday, May 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.56 265 Saturday, May 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.54 217 Thursday, May 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.52 211 Tuesday, May 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.51 287 Saturday, May 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.50 177 Friday, May 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.49 212 Thursday, April 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.46 386 Saturday, April 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.43 233 Wednesday, April 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.42 558 Tuesday, April 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.41 207 Friday, April 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.39 234 Thursday, April 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.36 355 Saturday, April 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.35 213 Friday, April 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.34 188 Thursday, April 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.31 237 Saturday, March 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.30 240 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.29 194 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.28 313 Wednesday, March 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.26 251 Saturday, March 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.25 242 Friday, March 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.24 225 Thursday, March 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.22 204 Tuesday, March 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.21 265 Saturday, March 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.20 229 Friday, March 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.19 232 Thursday, March 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.16 182 Saturday, March 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.15 173 Friday, March 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.14 241 Thursday, March 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.11 22479 Saturday, February 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.9 5891 Friday, February 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.6 3727 Tuesday, February 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.5 4432 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.4 1229 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.3 1422 Thursday, February 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.2 1403 Wednesday, February 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.1 1673 Tuesday, February 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.0 1990 Saturday, February 15, 2020 Approved
AWS Command Line Interface (Install) 1.17.17 4232 Friday, February 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.16 2936 Thursday, February 13, 2020 Approved
AWS Command Line Interface (Install) 1.17.15 1554 Wednesday, February 12, 2020 Approved
AWS Command Line Interface (Install) 1.17.13 3062 Saturday, February 8, 2020 Approved
AWS Command Line Interface (Install) 1.17.12 1241 Friday, February 7, 2020 Approved
AWS Command Line Interface (Install) 1.17.11 175 Thursday, February 6, 2020 Approved
AWS Command Line Interface (Install) 1.17.10 195 Wednesday, February 5, 2020 Approved
AWS Command Line Interface (Install) 1.17.9 8287 Saturday, January 25, 2020 Approved
AWS Command Line Interface (Install) 1.17.8 960 Friday, January 24, 2020 Approved
AWS Command Line Interface (Install) 1.17.7 3052 Wednesday, January 22, 2020 Approved
AWS Command Line Interface (Install) 1.17.6 292 Tuesday, January 21, 2020 Approved
AWS Command Line Interface (Install) 1.17.5 2579 Saturday, January 18, 2020 Approved
AWS Command Line Interface (Install) 1.17.4 1219 Friday, January 17, 2020 Approved
AWS Command Line Interface (Install) 1.17.3 1117 Thursday, January 16, 2020 Approved
AWS Command Line Interface (Install) 1.17.2 2041 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.1 1194 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.0 2039 Saturday, January 11, 2020 Approved
AWS Command Line Interface (Install) 1.16.314 1401 Friday, January 10, 2020 Approved
AWS Command Line Interface (Install) 1.16.313 1429 Thursday, January 9, 2020 Approved
AWS Command Line Interface (Install) 1.16.312 1128 Wednesday, January 8, 2020 Approved
AWS Command Line Interface (Install) 1.16.311 1358 Tuesday, January 7, 2020 Approved
AWS Command Line Interface (Install) 1.16.310 196 Friday, January 3, 2020 Approved
AWS Command Line Interface (Install) 1.16.309 1445 Tuesday, December 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.308 5840 Saturday, December 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.307 1077 Friday, December 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.305 2047 Wednesday, December 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.303 2544 Saturday, December 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.302 1191 Friday, December 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.301 1543 Thursday, December 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.300 1306 Wednesday, December 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.299 1552 Tuesday, December 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.298 2568 Friday, December 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.297 1317 Thursday, December 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.296 1362 Wednesday, December 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.294 829 Tuesday, December 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.292 4756 Wednesday, November 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.291 1380 Tuesday, November 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.290 2100 Saturday, November 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.289 1217 Friday, November 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.287 1314 Thursday, November 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.286 1761 Wednesday, November 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.284 1564 Tuesday, November 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.283 2223 Saturday, November 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.282 1284 Friday, November 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.281 1574 Thursday, November 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.280 1528 Wednesday, November 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.279 1477 Tuesday, November 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.278 2099 Saturday, November 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.277 2686 Friday, November 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.276 1409 Thursday, November 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.274 1655 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.273 1309 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.272 2102 Saturday, November 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.271 1023 Friday, November 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.270 1516 Thursday, October 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.269 1581 Wednesday, October 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.268 1633 Tuesday, October 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.266 2897 Friday, October 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.265 1816 Thursday, October 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.264 1555 Wednesday, October 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.263 3575 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.262 739 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.261 2365 Thursday, October 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.260 1583 Wednesday, October 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.259 1518 Tuesday, October 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.258 1971 Saturday, October 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.257 1342 Friday, October 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.256 2078 Thursday, October 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.255 1724 Wednesday, October 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.254 1405 Tuesday, October 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.253 2038 Saturday, October 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.252 1535 Friday, October 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.251 2155 Thursday, October 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.250 1649 Wednesday, October 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.249 1676 Tuesday, October 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.248 2380 Saturday, September 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.247 1159 Friday, September 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.246 1853 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.245 1459 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.244 1547 Tuesday, September 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.243 1871 Saturday, September 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.242 1263 Friday, September 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.241 2354 Thursday, September 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.240 1508 Wednesday, September 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.239 1168 Tuesday, September 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.238 7186 Friday, September 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.237 1836 Thursday, September 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.236 1407 Wednesday, September 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.235 1339 Tuesday, September 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.234 1818 Saturday, September 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.233 1236 Friday, September 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.232 1871 Thursday, September 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.231 1285 Wednesday, September 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.230 2526 Saturday, August 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.229 1905 Friday, August 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.228 2839 Thursday, August 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.227 2376 Wednesday, August 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.226 1289 Tuesday, August 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.225 2046 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.224 1101 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.223 1173 Thursday, August 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.222 1250 Wednesday, August 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.221 2607 Tuesday, August 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.220 1883 Saturday, August 17, 2019 Approved