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,931,757

Downloads of v 2.28.3:

3,736

Last Update:

06 Aug 2025

Package Maintainer(s):

Software Author(s):

  • Amazon Web Services

Tags:

AWS Command Line Interface v2 (Install)

This is not the latest version of AWS Command Line Interface v2 (Install) available.

  • 1
  • 2
  • 3

2.28.3 | Updated: 06 Aug 2025

Downloads:

5,931,757

Downloads of v 2.28.3:

3,736

Maintainer(s):

Software Author(s):

  • Amazon Web Services

AWS Command Line Interface v2 (Install) 2.28.3

This is not the latest version of AWS Command Line Interface v2 (Install) 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 v2 (Install), run the following command from the command line or from PowerShell:

>

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

>

To uninstall AWS Command Line Interface v2 (Install), 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="'2.28.3'" [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="'2.28.3'" 
$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: '2.28.3'
    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  '2.28.3'
end

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


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

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


package { 'awscli':
  ensure   => '2.28.3',
  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...

Package Approved

This package was approved as a trusted package on 06 Aug 2025.

Description

AWS Command Line Interface

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 v2 offers several new features including improved installers, new configuration options such as AWS Single Sign-On (SSO), and various interactive features.

Maintainer's Note

I produce and maintain Chocolatey packages in my spare time, for free. If you use my packages, and appreciate the time and effort I put into making and maintaining them, please consider making a small donation. Thank-you!


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url64      = 'https://awscli.amazonaws.com/AWSCLIV2-2.28.3.msi'
$checksum64 = 'd5d5b5859ba5794f36ed665397cb888dc049ad4ac8355e9b43391d7c02e16bfd'

$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  unzipLocation = $toolsDir
  fileType      = 'MSI'
  url64bit      = $url64
  softwareName  = 'AWS Command Line Interface v2*'
  checksum64    = $checksum64
  checksumType64= 'sha256'
  silentArgs    = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
  validExitCodes= @(0, 3010, 1641)
}

Install-ChocolateyPackage @packageArgs

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.28.5 2709 Friday, August 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.4 3285 Thursday, August 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.3 3736 Wednesday, August 6, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.2 5739 Tuesday, August 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.1 9970 Saturday, August 2, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.0 3349 Friday, August 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.63 4259 Thursday, July 31, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.62 5564 Wednesday, July 30, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.61 5297 Tuesday, July 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.60 11497 Saturday, July 26, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.59 3015 Friday, July 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.58 4042 Thursday, July 24, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.57 6139 Wednesday, July 23, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.56 3535 Tuesday, July 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.55 13084 Saturday, July 19, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.54 4256 Friday, July 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.53 5118 Thursday, July 17, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.52 5046 Wednesday, July 16, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.50 18088 Thursday, July 10, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.49 20284 Friday, July 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.48 4859 Thursday, July 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.47 3689 Wednesday, July 2, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.46 6473 Tuesday, July 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.45 7874 Saturday, June 28, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.44 3912 Friday, June 27, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.43 4202 Thursday, June 26, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.42 5505 Wednesday, June 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.41 5756 Tuesday, June 24, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.40 12059 Saturday, June 21, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.39 805 Friday, June 20, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.38 3453 Thursday, June 19, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.37 6183 Wednesday, June 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.36 5501 Tuesday, June 17, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.35 10704 Friday, June 13, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.34 2940 Thursday, June 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.33 4684 Wednesday, June 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.32 7361 Tuesday, June 10, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.31 7408 Saturday, June 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.30 4533 Friday, June 6, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.29 810 Thursday, June 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.28 6528 Wednesday, June 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.27 4500 Tuesday, June 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.26 9261 Saturday, May 31, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.25 4239 Thursday, May 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.24 3940 Thursday, May 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.23 4730 Wednesday, May 28, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.22 11274 Saturday, May 24, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.21 2838 Friday, May 23, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.20 5687 Thursday, May 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.19 3741 Wednesday, May 21, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.18 7318 Tuesday, May 20, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.17 4624 Saturday, May 17, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.16 7918 Friday, May 16, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.15 4858 Thursday, May 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.14 3399 Wednesday, May 14, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.13 9387 Tuesday, May 13, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.12 9416 Saturday, May 10, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.11 3255 Friday, May 9, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.10 4722 Thursday, May 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.8 7736 Tuesday, May 6, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.7 9229 Saturday, May 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.6 3008 Friday, May 2, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.5 3674 Thursday, May 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.4 4079 Wednesday, April 30, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.3 4517 Tuesday, April 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.2 8904 Saturday, April 26, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.1 3198 Friday, April 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.0 2082 Thursday, April 24, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.7 5822 Wednesday, April 23, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.6 4821 Tuesday, April 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.5 8689 Saturday, April 19, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.4 610 Friday, April 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.3 3889 Thursday, April 17, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.2 9710 Tuesday, April 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.1 9216 Saturday, April 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.0 2834 Friday, April 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.14 1996 Thursday, April 10, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.12 7805 Tuesday, April 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.11 9660 Saturday, April 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.10 2816 Friday, April 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.9 6268 Thursday, April 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.8 2381 Wednesday, April 2, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.7 6082 Tuesday, April 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.6 5265 Saturday, March 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.4 7541 Thursday, March 27, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.3 4323 Wednesday, March 26, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.2 6233 Tuesday, March 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.1 9162 Saturday, March 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.0 2976 Friday, March 21, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.27 1419 Thursday, March 20, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.26 6864 Wednesday, March 19, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.25 4715 Tuesday, March 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.24 7556 Saturday, March 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.23 3377 Friday, March 14, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.22 6954 Wednesday, March 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.21 6049 Tuesday, March 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.20 9395 Saturday, March 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.19 944 Friday, March 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.18 3235 Thursday, March 6, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.17 5917 Wednesday, March 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.16 5399 Tuesday, March 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.15 6313 Saturday, March 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.14 5021 Friday, February 28, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.13 5217 Thursday, February 27, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.12 3004 Wednesday, February 26, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.11 6009 Tuesday, February 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.10 10092 Saturday, February 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.9 3999 Friday, February 21, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.8 4808 Thursday, February 20, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.7 3384 Wednesday, February 19, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.6 5517 Tuesday, February 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.5 9173 Saturday, February 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.4 1598 Friday, February 14, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.3 6157 Wednesday, February 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.2 4175 Wednesday, February 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.1 4974 Tuesday, February 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.0 9063 Saturday, February 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.15 3077 Friday, February 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.14 4953 Wednesday, February 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.13 3749 Wednesday, February 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.12 1659 Tuesday, February 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.11 10578 Saturday, February 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.10 568 Friday, January 31, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.9 3673 Thursday, January 30, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.8 5574 Wednesday, January 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.7 5302 Tuesday, January 28, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.6 8298 Saturday, January 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.5 3130 Friday, January 24, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.4 3553 Thursday, January 23, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.3 2169 Wednesday, January 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.2 10473 Saturday, January 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.1 3435 Friday, January 17, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.0 3100 Thursday, January 16, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.35 4304 Wednesday, January 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.34 4553 Tuesday, January 14, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.33 8610 Saturday, January 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.32 3335 Friday, January 10, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.30 6286 Wednesday, January 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.29 4578 Tuesday, January 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.28 6944 Saturday, January 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.27 2738 Friday, January 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.26 8177 Monday, December 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.25 4479 Saturday, December 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.24 2706 Friday, December 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.23 4993 Tuesday, December 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.22 4584 Saturday, December 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.21 2692 Friday, December 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.20 5187 Thursday, December 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.19 1499 Wednesday, December 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.18 5512 Tuesday, December 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.17 7075 Saturday, December 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.16 3061 Friday, December 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.15 2101 Thursday, December 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.14 4679 Wednesday, December 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.13 4095 Tuesday, December 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.12 11182 Thursday, December 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.10 3820 Wednesday, December 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.8 6252 Tuesday, December 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.7 10378 Thursday, November 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.5 6139 Tuesday, November 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.4 8424 Saturday, November 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.2 5563 Thursday, November 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.1 3578 Wednesday, November 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.0 4363 Tuesday, November 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.3 8750 Saturday, November 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.2 2966 Friday, November 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.0 2970 Thursday, November 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.20.0 5388 Wednesday, November 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.5 5111 Tuesday, November 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.4 7902 Saturday, November 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.3 2155 Friday, November 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.2 3433 Thursday, November 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.1 9843 Saturday, November 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.0 2525 Friday, November 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.18 2167 Thursday, October 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.17 100 Wednesday, October 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.16 5632 Tuesday, October 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.15 5420 Saturday, October 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.14 10223 Friday, October 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.13 4179 Thursday, October 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.12 3008 Wednesday, October 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.11 4724 Tuesday, October 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.10 9001 Saturday, October 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.9 3426 Friday, October 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.8 4072 Thursday, October 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.7 3747 Wednesday, October 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.6 3395 Tuesday, October 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.4 8889 Friday, October 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.3 3424 Thursday, October 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.2 3827 Wednesday, October 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.1 4573 Tuesday, October 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.0 6941 Saturday, October 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.65 2563 Friday, October 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.64 3724 Thursday, October 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.63 2663 Wednesday, October 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.61 11224 Saturday, September 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.59 5724 Thursday, September 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.58 3700 Wednesday, September 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.57 3926 Tuesday, September 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.56 7868 Saturday, September 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.55 2913 Friday, September 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.54 3637 Thursday, September 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.53 3656 Wednesday, September 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.52 3757 Tuesday, September 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.51 8058 Saturday, September 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.50 3082 Friday, September 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.49 3957 Thursday, September 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.48 5162 Wednesday, September 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.47 6145 Monday, September 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.46 4051 Saturday, September 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.45 223 Friday, September 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.44 3242 Thursday, September 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.43 7383 Wednesday, September 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.42 9271 Saturday, August 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.40 4522 Thursday, August 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.39 4598 Wednesday, August 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.38 3556 Tuesday, August 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.37 7728 Saturday, August 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.36 2914 Friday, August 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.35 3479 Thursday, August 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.34 3798 Wednesday, August 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.33 3399 Tuesday, August 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.32 6809 Saturday, August 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.31 2503 Friday, August 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.30 2787 Thursday, August 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.29 4390 Wednesday, August 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.28 3342 Tuesday, August 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.27 5328 Saturday, August 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.26 3096 Friday, August 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.25 3142 Thursday, August 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.24 2596 Wednesday, August 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.23 3993 Tuesday, August 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.22 6037 Saturday, August 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.21 2822 Friday, August 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.20 5572 Wednesday, July 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.19 2421 Tuesday, July 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.18 7488 Friday, July 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.16 5436 Wednesday, July 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.15 3274 Tuesday, July 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.14 8769 Friday, July 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.13 12364 Saturday, July 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.12 4074 Thursday, July 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.11 3669 Wednesday, July 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.10 3841 Tuesday, July 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.9 7900 Saturday, July 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.8 4720 Thursday, July 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.7 4261 Wednesday, July 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.6 3418 Tuesday, July 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.5 7481 Saturday, June 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.4 1908 Friday, June 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.3 100 Thursday, June 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.2 6270 Wednesday, June 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.1 4554 Tuesday, June 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.0 9403 Friday, June 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.12 4525 Thursday, June 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.11 2730 Wednesday, June 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.10 4763 Tuesday, June 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.9 8044 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.8 1940 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.7 4399 Thursday, June 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.6 3916 Wednesday, June 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.5 4506 Tuesday, June 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.4 7391 Saturday, June 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.3 1701 Friday, June 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.2 4866 Thursday, June 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.1 3539 Wednesday, June 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.0 3367 Tuesday, June 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.62 6056 Saturday, June 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.61 3044 Friday, May 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.60 5314 Thursday, May 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.59 3915 Wednesday, May 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.58 11210 Saturday, May 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.57 3564 Friday, May 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.56 3144 Thursday, May 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.55 4425 Wednesday, May 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.54 2783 Tuesday, May 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.53 6223 Saturday, May 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.52 2548 Friday, May 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.51 3582 Thursday, May 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.50 3010 Wednesday, May 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.49 3037 Tuesday, May 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.48 7432 Saturday, May 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.47 3754 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.46 1032 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.45 6679 Tuesday, May 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.44 26051 Saturday, May 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.43 4615 Thursday, May 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.42 10626 Saturday, April 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.41 5091 Thursday, April 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.40 10133 Saturday, April 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.39 4501 Thursday, April 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.38 10756 Saturday, April 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.37 4362 Thursday, April 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.36 10101 Saturday, April 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.35 4510 Thursday, April 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.34 12236 Saturday, March 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.33 5056 Thursday, March 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.32 11316 Saturday, March 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.31 6499 Thursday, March 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.30 12804 Saturday, March 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.28 11449 Tuesday, March 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.27 7046 Saturday, March 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.26 6909 Thursday, March 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.25 22071 Saturday, March 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.24 8457 Thursday, February 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.23 15633 Saturday, February 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.22 8376 Thursday, February 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.21 12873 Saturday, February 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.20 7131 Thursday, February 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.19 16641 Saturday, February 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.17 20813 Saturday, February 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.16 6697 Thursday, February 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.15 14934 Saturday, January 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.14 7145 Thursday, January 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.13 9378 Tuesday, January 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.12 8932 Saturday, January 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.11 8048 Thursday, January 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.10 13597 Saturday, January 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.9 7110 Thursday, January 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.8 12863 Saturday, January 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.7 6367 Thursday, January 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.6 10158 Saturday, December 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.5 5047 Thursday, December 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.4 8694 Saturday, December 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.3 6519 Thursday, December 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.2 11635 Saturday, December 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.1 5158 Thursday, December 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.0 17320 Saturday, December 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.6 9005 Thursday, December 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.5 15083 Friday, December 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.2 6408 Wednesday, November 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.0 7112 Tuesday, November 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.38 14256 Wednesday, November 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.37 14553 Saturday, November 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.36 5260 Thursday, November 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.35 8385 Tuesday, November 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.34 9275 Saturday, November 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.32 15417 Saturday, November 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.31 6402 Thursday, November 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.30 13126 Saturday, October 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.29 6282 Thursday, October 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.28 13438 Saturday, October 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.27 8501 Thursday, October 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.26 13468 Saturday, October 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.25 16040 Saturday, October 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.24 6432 Thursday, October 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.23 7979 Tuesday, October 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.21 171 Saturday, September 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.20 24843 Thursday, September 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.19 12592 Saturday, September 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.18 7139 Thursday, September 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.16 17782 Thursday, September 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.15 12171 Saturday, September 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.14 8520 Thursday, August 31, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.13 13438 Saturday, August 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.12 7040 Thursday, August 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.11 1666 Saturday, August 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.9 27634 Saturday, August 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.8 7293 Thursday, August 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.7 12995 Saturday, August 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.6 7625 Thursday, August 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.5 107 Saturday, July 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.4 15823 Thursday, July 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.3 14484 Saturday, July 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.2 14395 Thursday, July 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.1 23145 Friday, July 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.0 28448 Saturday, July 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.7 11048 Thursday, July 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.6 17683 Saturday, July 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.5 7380 Friday, June 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.4 8153 Thursday, June 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.3 17530 Saturday, June 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.2 10914 Thursday, June 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.1 18186 Saturday, June 17, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.0 11944 Thursday, June 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.27 13234 Saturday, June 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.26 7008 Thursday, June 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.25 12551 Saturday, June 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.24 7252 Thursday, June 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.23 12735 Saturday, May 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.22 7848 Thursday, May 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.21 13251 Saturday, May 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.20 25235 Saturday, May 13, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.19 9813 Thursday, May 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.17 17209 Thursday, May 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.16 16350 Saturday, April 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.13 24547 Saturday, April 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.11 22004 Monday, April 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.10 9211 Thursday, April 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.9 8750 Tuesday, April 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.8 9274 Saturday, April 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.6 17856 Saturday, March 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.5 6878 Thursday, March 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.4 17580 Saturday, March 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.2 17713 Saturday, March 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.1 7576 Thursday, March 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.0 14333 Friday, March 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.4 5967 Thursday, March 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.3 11664 Saturday, February 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.2 8238 Thursday, February 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.1 12555 Saturday, February 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.23 17767 Saturday, February 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.22 7371 Thursday, February 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.21 11326 Monday, February 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.20 11474 Thursday, February 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.19 11442 Monday, January 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.18 11769 Thursday, January 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.17 13412 Saturday, January 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.16 8693 Thursday, January 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.15 12885 Saturday, January 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.14 7530 Thursday, January 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.13 15814 Friday, January 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.12 14531 Saturday, December 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.11 7021 Thursday, December 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.10 11258 Friday, December 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.9 7514 Thursday, December 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.8 12872 Saturday, December 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.7 8557 Thursday, December 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.6 13961 Saturday, December 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.5 7457 Thursday, December 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.4 12308 Saturday, December 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.3 6387 Thursday, December 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.2 5470 Wednesday, November 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.1 13591 Thursday, November 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.0 16580 Saturday, November 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.13 6817 Thursday, November 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.12 9630 Saturday, November 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.11 11637 Thursday, November 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.9 13374 Saturday, November 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.8 7513 Thursday, November 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.7 15749 Friday, October 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.6 7450 Thursday, October 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.5 10814 Saturday, October 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.3 17793 Friday, October 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.2 15689 Saturday, October 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.1 6614 Thursday, October 6, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.0 10829 Saturday, October 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.35 13671 Saturday, September 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.34 6751 Thursday, September 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.33 11623 Saturday, September 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.32 6945 Thursday, September 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.31 14090 Saturday, September 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.30 7672 Thursday, September 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.29 13902 Monday, September 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.28 19888 Thursday, September 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.26 23234 Thursday, August 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.25 16585 Saturday, August 20, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.24 11623 Wednesday, August 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.22 15319 Friday, August 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.21 32644 Thursday, August 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.20 16134 Saturday, July 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.19 7952 Thursday, July 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.18 14127 Saturday, July 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.17 8211 Thursday, July 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.16 14015 Saturday, July 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.15 7287 Thursday, July 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.14 13331 Saturday, July 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.13 6256 Thursday, July 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.11 27819 Saturday, June 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.9 18318 Saturday, June 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.8 4880 Friday, June 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.7 21323 Thursday, June 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.6 11631 Saturday, June 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.5 6983 Thursday, June 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.4 11564 Friday, May 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.3 6148 Thursday, May 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.2 12333 Saturday, May 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.1 7951 Wednesday, May 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.0 11239 Saturday, May 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.4 6848 Wednesday, May 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.3 8238 Sunday, May 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.2 6893 Thursday, May 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.1 9380 Friday, April 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.0 5287 Thursday, April 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.8 10752 Friday, April 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.7 3726 Thursday, April 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.6 10560 Saturday, April 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.4 11268 Saturday, April 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.3 5838 Thursday, April 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.2 8623 Saturday, April 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.1 5863 Thursday, March 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.0 6725 Monday, March 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.29 8419 Saturday, March 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.28 5508 Thursday, March 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.27 10449 Friday, March 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.25 12207 Friday, March 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.24 5951 Wednesday, March 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.23 8768 Friday, March 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.22 6064 Wednesday, March 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.21 22722 Friday, February 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.20 6070 Wednesday, February 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.19 8109 Friday, February 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.18 10547 Friday, February 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.17 6781 Wednesday, February 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.16 8305 Friday, February 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.15 10555 Friday, January 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.13 10818 Friday, January 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.12 14787 Wednesday, January 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.11 6767 Friday, January 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.10 4164 Wednesday, January 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.9 6821 Friday, January 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.7 13206 Wednesday, December 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.6 17154 Friday, December 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.5 8503 Saturday, December 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.4 2634 Friday, December 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.3 4990 Tuesday, November 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.2 6590 Saturday, November 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.1 6074 Wednesday, November 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.0 6811 Friday, November 19, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.7 5213 Wednesday, November 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.6 7391 Friday, November 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.5 5124 Wednesday, November 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.4 6921 Friday, November 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.0 16213 Friday, October 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.47 4858 Wednesday, October 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.46 6662 Friday, October 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.45 5725 Tuesday, October 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.43 12470 Friday, October 1, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.42 5085 Wednesday, September 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.41 6565 Friday, September 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.40 3988 Wednesday, September 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.39 6068 Friday, September 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.38 4413 Wednesday, September 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.37 7607 Friday, September 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.36 4176 Wednesday, September 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.35 5769 Friday, September 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.33 7965 Friday, August 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.32 3634 Wednesday, August 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.31 6415 Friday, August 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.30 4179 Wednesday, August 18, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.29 5793 Friday, August 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.28 3858 Wednesday, August 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.27 6428 Friday, August 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.26 3326 Wednesday, August 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.25 7464 Saturday, July 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.24 2030 Friday, July 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.23 2385 Wednesday, July 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.22 6926 Friday, July 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.21 4522 Wednesday, July 21, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.20 5185 Friday, July 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.19 3359 Thursday, July 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.18 7067 Friday, July 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.17 3885 Wednesday, July 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.16 7043 Friday, July 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.15 5978 Wednesday, June 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.14 5468 Friday, June 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.13 7812 Thursday, June 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.12 6092 Wednesday, June 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.11 5590 Friday, June 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.10 4741 Wednesday, June 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.9 6006 Friday, June 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.8 3388 Wednesday, June 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.7 6458 Friday, May 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.6 4386 Wednesday, May 26, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.5 13327 Saturday, May 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.4 5578 Wednesday, May 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.3 5772 Friday, May 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.2 3963 Wednesday, May 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.1 5041 Friday, April 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.0 3147 Wednesday, April 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.39 139 Thursday, April 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.38 12370 Friday, April 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.37 4077 Wednesday, April 14, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.36 5662 Friday, April 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.35 432 Wednesday, April 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.34 9260 Friday, April 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.33 3553 Wednesday, March 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.32 569 Tuesday, March 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.29 53571 Tuesday, March 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.28 18531 Tuesday, February 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.27 34464 Wednesday, February 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.26 5973 Friday, February 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.25 3091 Wednesday, February 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.24 6765 Friday, February 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.23 3540 Wednesday, February 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.22 9962 Friday, January 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.21 7692 Friday, January 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.20 4354 Wednesday, January 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.19 5633 Friday, January 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.18 2798 Wednesday, January 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.17 4992 Friday, January 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.16 1921 Wednesday, January 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.15 5665 Wednesday, December 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.14 4085 Wednesday, December 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.13 4552 Friday, December 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.12 1937 Thursday, December 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.11 1709 Wednesday, December 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.10 5308 Friday, December 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.9 1702 Thursday, December 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.8 3110 Wednesday, December 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.7 4707 Friday, December 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.6 2480 Wednesday, December 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.4 6802 Wednesday, November 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.3 4954 Friday, November 20, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.2 2182 Wednesday, November 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.1 4488 Friday, November 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.0 4070 Wednesday, November 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.63 4747 Tuesday, November 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.62 2860 Friday, November 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.61 7149 Friday, October 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.60 4113 Wednesday, October 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.59 7218 Friday, October 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.58 3286 Wednesday, October 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.57 3746 Friday, October 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.56 9056 Friday, October 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.55 5579 Wednesday, October 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.54 4996 Friday, October 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.53 5947 Wednesday, September 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.52 4386 Friday, September 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.51 2429 Thursday, September 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.50 6584 Friday, September 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.49 2987 Wednesday, September 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.48 5271 Friday, September 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.47 3353 Wednesday, September 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.46 3889 Friday, September 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.45 2737 Wednesday, September 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.44 3234 Friday, August 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.43 4823 Wednesday, August 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.42 5760 Friday, August 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.41 3183 Wednesday, August 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.40 3663 Friday, August 14, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.39 3815 Wednesday, August 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.38 4258 Friday, August 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.37 3109 Wednesday, August 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.36 4077 Friday, July 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.35 3024 Wednesday, July 29, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.34 4538 Friday, July 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.33 3386 Wednesday, July 22, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.31 5616 Thursday, July 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.30 7983 Friday, July 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.29 2798 Wednesday, July 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.28 3996 Friday, July 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.27 2843 Wednesday, July 1, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.26 4474 Friday, June 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.25 2936 Wednesday, June 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.24 4439 Friday, June 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.23 2772 Wednesday, June 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.22 5579 Friday, June 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.21 1246 Thursday, June 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.20 1900 Wednesday, June 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.19 3648 Friday, June 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.18 2164 Wednesday, June 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.17 4619 Wednesday, May 27, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.15 3524 Thursday, May 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.14 5678 Friday, May 15, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.13 2553 Wednesday, May 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.12 4036 Friday, May 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.11 3306 Wednesday, May 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.10 6454 Tuesday, April 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.9 3429 Thursday, April 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.8 4810 Friday, April 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.7 6266 Tuesday, April 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.6 5872 Tuesday, March 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.5 5137 Tuesday, March 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.4 5613 Wednesday, March 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.3 5725 Tuesday, March 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.2 4322 Tuesday, March 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.1 5796 Wednesday, February 26, 2020 Approved
AWS Command Line Interface (Install) 1.36.8 1084 Friday, November 22, 2024 Approved
AWS Command Line Interface (Install) 1.34.30 47 Tuesday, October 1, 2024 Approved
AWS Command Line Interface (Install) 1.33.37 44 Tuesday, August 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.102 69 Friday, May 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.100 56 Wednesday, May 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.97 53 Friday, May 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.95 64 Wednesday, May 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.94 60 Tuesday, April 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.92 57 Friday, April 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.89 68 Tuesday, April 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.87 57 Friday, April 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.86 68 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.85 59 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.83 52 Friday, April 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.81 64 Wednesday, April 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.80 64 Tuesday, April 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.76 51 Wednesday, April 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.75 55 Tuesday, April 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.73 52 Friday, March 29, 2024 Approved
AWS Command Line Interface (Install) 1.32.71 64 Wednesday, March 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.70 65 Tuesday, March 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.66 66 Wednesday, March 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.65 62 Tuesday, March 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.61 73 Wednesday, March 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.58 65 Friday, March 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.56 57 Wednesday, March 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.53 65 Friday, March 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.51 55 Wednesday, February 28, 2024 Approved
AWS Command Line Interface (Install) 1.32.50 50 Tuesday, February 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.48 62 Friday, February 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.45 61 Tuesday, February 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.43 49 Friday, February 16, 2024 Approved
AWS Command Line Interface (Install) 1.32.40 60 Tuesday, February 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.38 77 Friday, February 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.36 69 Wednesday, February 7, 2024 Approved
AWS Command Line Interface (Install) 1.32.35 59 Tuesday, February 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.33 61 Friday, February 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.31 59 Wednesday, January 31, 2024 Approved
AWS Command Line Interface (Install) 1.32.30 71 Tuesday, January 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.28 61 Friday, January 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.22 55 Friday, January 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.20 52 Wednesday, January 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.19 64 Monday, January 15, 2024 Approved
AWS Command Line Interface (Install) 1.32.17 53 Friday, January 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.15 70 Tuesday, January 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.13 69 Friday, January 5, 2024 Approved
AWS Command Line Interface (Install) 1.32.6 64 Friday, December 22, 2023 Approved
AWS Command Line Interface (Install) 1.32.4 74 Wednesday, December 20, 2023 Approved
AWS Command Line Interface (Install) 1.32.3 68 Tuesday, December 19, 2023 Approved
AWS Command Line Interface (Install) 1.32.1 67 Friday, December 15, 2023 Approved
AWS Command Line Interface (Install) 1.31.13 64 Wednesday, December 13, 2023 Approved
AWS Command Line Interface (Install) 1.31.12 73 Monday, December 11, 2023 Approved
AWS Command Line Interface (Install) 1.31.10 68 Friday, December 8, 2023 Approved
AWS Command Line Interface (Install) 1.31.7 69 Tuesday, December 5, 2023 Approved
AWS Command Line Interface (Install) 1.31.6 77 Saturday, December 2, 2023 Approved
AWS Command Line Interface (Install) 1.30.4 85 Tuesday, November 21, 2023 Approved
AWS Command Line Interface (Install) 1.30.2 71 Friday, November 17, 2023 Approved
AWS Command Line Interface (Install) 1.30.0 73 Wednesday, November 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.83 61 Friday, November 10, 2023 Approved
AWS Command Line Interface (Install) 1.29.82 74 Thursday, November 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.80 75 Wednesday, November 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.79 76 Tuesday, November 7, 2023 Approved
AWS Command Line Interface (Install) 1.29.77 69 Thursday, November 2, 2023 Approved
AWS Command Line Interface (Install) 1.29.75 73 Wednesday, November 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.72 65 Friday, October 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.70 69 Wednesday, October 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.69 67 Tuesday, October 24, 2023 Approved
AWS Command Line Interface (Install) 1.29.67 83 Friday, October 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.65 71 Wednesday, October 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.64 72 Tuesday, October 17, 2023 Approved
AWS Command Line Interface (Install) 1.29.63 81 Friday, October 13, 2023 Approved
AWS Command Line Interface (Install) 1.29.61 60 Friday, October 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.59 65 Wednesday, October 4, 2023 Approved
AWS Command Line Interface (Install) 1.29.57 72 Saturday, September 30, 2023 Approved
AWS Command Line Interface (Install) 1.29.55 68 Wednesday, September 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.54 62 Tuesday, September 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.51 86 Wednesday, September 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.50 74 Tuesday, September 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.48 77 Friday, September 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.45 76 Tuesday, September 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.43 75 Friday, September 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.41 65 Wednesday, September 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.36 321 Tuesday, August 29, 2023 Approved
AWS Command Line Interface (Install) 1.29.34 61 Friday, August 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.32 71 Wednesday, August 23, 2023 Approved
AWS Command Line Interface (Install) 1.29.31 78 Tuesday, August 22, 2023 Approved
AWS Command Line Interface (Install) 1.29.29 80 Friday, August 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.26 76 Tuesday, August 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.24 79 Friday, August 11, 2023 Approved
AWS Command Line Interface (Install) 1.29.22 91 Wednesday, August 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.16 93 Tuesday, August 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.14 73 Friday, July 28, 2023 Approved
AWS Command Line Interface (Install) 1.29.11 76 Wednesday, July 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.5 59 Wednesday, July 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.4 67 Tuesday, July 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.2 151 Wednesday, July 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.0 197 Friday, July 7, 2023 Approved
AWS Command Line Interface (Install) 1.28.0 66 Tuesday, July 4, 2023 Approved
AWS Command Line Interface (Install) 1.27.162 66 Wednesday, June 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.161 79 Tuesday, June 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.159 72 Friday, June 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.157 73 Wednesday, June 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.156 77 Tuesday, June 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.153 67 Wednesday, June 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.152 65 Tuesday, June 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.150 75 Friday, June 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.148 64 Wednesday, June 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.145 77 Friday, June 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.143 69 Wednesday, May 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.141 78 Friday, May 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.139 68 Wednesday, May 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.138 65 Tuesday, May 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.135 76 Thursday, May 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.134 82 Tuesday, May 16, 2023 Approved
AWS Command Line Interface (Install) 1.27.133 71 Friday, May 12, 2023 Approved
AWS Command Line Interface (Install) 1.27.131 76 Wednesday, May 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.130 78 Tuesday, May 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.127 62 Friday, May 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.125 73 Wednesday, May 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.124 64 Tuesday, May 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.122 69 Friday, April 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.120 82 Wednesday, April 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.119 69 Tuesday, April 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.113 81 Friday, April 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.110 72 Tuesday, April 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.106 68 Wednesday, April 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.101 83 Wednesday, March 29, 2023 Approved
AWS Command Line Interface (Install) 1.27.100 82 Tuesday, March 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.98 82 Friday, March 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.93 71 Friday, March 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.90 69 Tuesday, March 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.88 88 Friday, March 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.86 63 Wednesday, March 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.85 75 Tuesday, March 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.81 81 Wednesday, March 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.80 67 Tuesday, February 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.78 80 Friday, February 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.75 77 Tuesday, February 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.73 85 Friday, February 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.71 81 Wednesday, February 15, 2023 Approved
AWS Command Line Interface (Install) 1.27.70 78 Tuesday, February 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.68 79 Friday, February 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.66 78 Wednesday, February 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.65 79 Tuesday, February 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.63 85 Friday, February 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.61 80 Wednesday, February 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.60 73 Tuesday, January 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.58 75 Friday, January 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.56 75 Wednesday, January 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.53 87 Friday, January 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.51 80 Wednesday, January 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.49 78 Friday, January 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.47 80 Wednesday, January 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.46 76 Tuesday, January 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.43 76 Thursday, January 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.40 71 Friday, December 30, 2022 Approved
AWS Command Line Interface (Install) 1.27.38 85 Wednesday, December 28, 2022 Approved
AWS Command Line Interface (Install) 1.27.36 75 Friday, December 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.33 78 Tuesday, December 20, 2022 Approved
AWS Command Line Interface (Install) 1.27.31 77 Friday, December 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.29 77 Wednesday, December 14, 2022 Approved
AWS Command Line Interface (Install) 1.27.26 76 Friday, December 9, 2022 Approved
AWS Command Line Interface (Install) 1.27.24 80 Wednesday, December 7, 2022 Approved
AWS Command Line Interface (Install) 1.27.23 75 Tuesday, December 6, 2022 Approved
AWS Command Line Interface (Install) 1.27.15 96 Wednesday, November 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.14 89 Tuesday, November 22, 2022 Approved
AWS Command Line Interface (Install) 1.27.12 75 Friday, November 18, 2022 Approved
AWS Command Line Interface (Install) 1.27.10 82 Wednesday, November 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.9 74 Tuesday, November 15, 2022 Approved
AWS Command Line Interface (Install) 1.27.7 80 Friday, November 11, 2022 Approved
AWS Command Line Interface (Install) 1.27.4 76 Tuesday, November 8, 2022 Approved
AWS Command Line Interface (Install) 1.27.3 88 Saturday, November 5, 2022 Approved
AWS Command Line Interface (Install) 1.27.2 95 Friday, November 4, 2022 Approved
AWS Command Line Interface (Install) 1.27.0 97 Wednesday, November 2, 2022 Approved
AWS Command Line Interface (Install) 1.26.5 90 Tuesday, November 1, 2022 Approved
AWS Command Line Interface (Install) 1.26.3 70 Friday, October 28, 2022 Approved
AWS Command Line Interface (Install) 1.26.1 68 Wednesday, October 26, 2022 Approved
AWS Command Line Interface (Install) 1.26.0 105 Tuesday, October 25, 2022 Approved
AWS Command Line Interface (Install) 1.25.96 76 Friday, October 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.94 88 Wednesday, October 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.93 84 Tuesday, October 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.92 72 Saturday, October 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.89 88 Friday, October 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.87 66 Wednesday, October 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.83 77 Wednesday, September 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.82 81 Tuesday, September 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.78 83 Wednesday, September 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.77 78 Monday, September 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.75 91 Friday, September 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.73 92 Wednesday, September 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.68 86 Wednesday, September 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.66 96 Friday, September 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.64 100 Wednesday, August 31, 2022 Approved
AWS Command Line Interface (Install) 1.25.63 91 Tuesday, August 30, 2022 Approved
AWS Command Line Interface (Install) 1.25.62 72 Saturday, August 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.59 84 Wednesday, August 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.58 96 Tuesday, August 23, 2022 Approved
AWS Command Line Interface (Install) 1.25.56 86 Friday, August 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.55 91 Thursday, August 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.51 94 Saturday, August 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.49 91 Thursday, August 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.48 94 Wednesday, August 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.46 95 Friday, August 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.43 87 Tuesday, August 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.42 89 Monday, August 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.40 95 Friday, July 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.38 84 Wednesday, July 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.37 77 Tuesday, July 26, 2022 Approved
AWS Command Line Interface (Install) 1.25.35 70 Friday, July 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.32 75 Tuesday, July 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.28 84 Wednesday, July 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.25 74 Friday, July 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.23 89 Wednesday, July 6, 2022 Approved
AWS Command Line Interface (Install) 1.25.22 88 Saturday, July 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.21 85 Friday, July 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.19 81 Wednesday, June 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.18 85 Tuesday, June 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.16 84 Friday, June 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.14 84 Wednesday, June 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.13 88 Tuesday, June 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.10 98 Thursday, June 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.9 75 Wednesday, June 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.8 113 Tuesday, June 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.7 92 Saturday, June 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.6 86 Friday, June 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.4 84 Wednesday, June 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.3 92 Tuesday, June 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.2 85 Friday, June 3, 2022 Approved
AWS Command Line Interface (Install) 1.25.0 109 Wednesday, June 1, 2022 Approved
AWS Command Line Interface (Install) 1.24.9 88 Friday, May 27, 2022 Approved
AWS Command Line Interface (Install) 1.24.7 121 Wednesday, May 25, 2022 Approved
AWS Command Line Interface (Install) 1.24.6 107 Tuesday, May 24, 2022 Approved
AWS Command Line Interface (Install) 1.24.4 105 Friday, May 20, 2022 Approved
AWS Command Line Interface (Install) 1.24.2 107 Wednesday, May 18, 2022 Approved
AWS Command Line Interface (Install) 1.24.1 101 Tuesday, May 17, 2022 Approved
AWS Command Line Interface (Install) 1.23.13 98 Friday, May 13, 2022 Approved
AWS Command Line Interface (Install) 1.23.11 101 Wednesday, May 11, 2022 Approved
AWS Command Line Interface (Install) 1.23.6 131 Wednesday, May 4, 2022 Approved
AWS Command Line Interface (Install) 1.23.5 92 Tuesday, May 3, 2022 Approved
AWS Command Line Interface (Install) 1.23.3 87 Thursday, April 28, 2022 Approved
AWS Command Line Interface (Install) 1.23.1 93 Wednesday, April 27, 2022 Approved
AWS Command Line Interface (Install) 1.23.0 134 Tuesday, April 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.101 99 Saturday, April 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.98 89 Wednesday, April 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.96 102 Friday, April 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.94 101 Wednesday, April 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.93 96 Tuesday, April 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.89 111 Wednesday, April 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.88 97 Tuesday, April 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.86 102 Friday, April 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.84 88 Wednesday, March 30, 2022 Approved
AWS Command Line Interface (Install) 1.22.81 93 Friday, March 25, 2022 Approved
AWS Command Line Interface (Install) 1.22.79 88 Wednesday, March 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.78 92 Tuesday, March 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.77 281 Saturday, March 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.74 100 Tuesday, March 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.71 98 Thursday, March 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.69 94 Tuesday, March 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.68 91 Saturday, March 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.66 96 Thursday, March 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.64 89 Tuesday, March 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.63 93 Saturday, February 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.61 91 Thursday, February 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.59 107 Tuesday, February 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.58 105 Saturday, February 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.56 92 Thursday, February 17, 2022 Approved
AWS Command Line Interface (Install) 1.22.55 97 Tuesday, February 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.54 142 Saturday, February 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.52 110 Thursday, February 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.50 97 Tuesday, February 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.49 87 Saturday, February 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.47 103 Thursday, February 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.46 109 Saturday, January 29, 2022 Approved
AWS Command Line Interface (Install) 1.22.44 112 Thursday, January 27, 2022 Approved
AWS Command Line Interface (Install) 1.22.42 116 Monday, January 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.39 117 Thursday, January 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.37 131 Saturday, January 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.34 96 Thursday, January 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.32 97 Monday, January 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.31 106 Saturday, January 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.29 98 Thursday, January 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.25 199 Tuesday, December 21, 2021 Approved
AWS Command Line Interface (Install) 1.22.24 106 Tuesday, December 14, 2021 Approved
AWS Command Line Interface (Install) 1.22.22 110 Thursday, December 9, 2021 Approved
AWS Command Line Interface (Install) 1.22.21 89 Tuesday, December 7, 2021 Approved
AWS Command Line Interface (Install) 1.22.13 121 Thursday, November 25, 2021 Approved
AWS Command Line Interface (Install) 1.22.11 111 Tuesday, November 23, 2021 Approved
AWS Command Line Interface (Install) 1.22.10 93 Saturday, November 20, 2021 Approved
AWS Command Line Interface (Install) 1.22.8 121 Thursday, November 18, 2021 Approved
AWS Command Line Interface (Install) 1.22.6 114 Tuesday, November 16, 2021 Approved
AWS Command Line Interface (Install) 1.22.5 112 Saturday, November 13, 2021 Approved
AWS Command Line Interface (Install) 1.22.3 137 Thursday, November 11, 2021 Approved
AWS Command Line Interface (Install) 1.22.1 108 Tuesday, November 9, 2021 Approved
AWS Command Line Interface (Install) 1.21.12 180 Saturday, November 6, 2021 Approved
AWS Command Line Interface (Install) 1.21.0 110 Thursday, October 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.64 104 Tuesday, October 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.63 110 Saturday, October 16, 2021 Approved
AWS Command Line Interface (Install) 1.20.61 113 Thursday, October 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.58 231 Saturday, October 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.57 130 Friday, October 8, 2021 Approved
AWS Command Line Interface (Install) 1.20.56 117 Thursday, October 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.54 111 Tuesday, October 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.53 113 Saturday, October 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.51 107 Thursday, September 30, 2021 Approved
AWS Command Line Interface (Install) 1.20.49 120 Tuesday, September 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.48 117 Saturday, September 25, 2021 Approved
AWS Command Line Interface (Install) 1.20.46 110 Thursday, September 23, 2021 Approved
AWS Command Line Interface (Install) 1.20.44 133 Saturday, September 18, 2021 Approved
AWS Command Line Interface (Install) 1.20.40 150 Saturday, September 11, 2021 Approved
AWS Command Line Interface (Install) 1.20.38 119 Thursday, September 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.36 106 Saturday, September 4, 2021 Approved
AWS Command Line Interface (Install) 1.20.34 130 Thursday, September 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.32 117 Tuesday, August 31, 2021 Approved
AWS Command Line Interface (Install) 1.20.31 105 Saturday, August 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.29 108 Thursday, August 26, 2021 Approved
AWS Command Line Interface (Install) 1.20.27 125 Tuesday, August 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.26 170 Saturday, August 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.24 118 Thursday, August 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.23 139 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.22 98 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.21 124 Saturday, August 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.19 118 Thursday, August 12, 2021 Approved
AWS Command Line Interface (Install) 1.20.17 114 Tuesday, August 10, 2021 Approved
AWS Command Line Interface (Install) 1.20.16 117 Saturday, August 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.15 133 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.14 140 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.12 111 Tuesday, August 3, 2021 Approved
AWS Command Line Interface (Install) 1.20.9 120 Thursday, July 29, 2021 Approved
AWS Command Line Interface (Install) 1.20.7 133 Tuesday, July 27, 2021 Approved
AWS Command Line Interface (Install) 1.20.6 132 Saturday, July 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.4 108 Thursday, July 22, 2021 Approved
AWS Command Line Interface (Install) 1.20.2 119 Monday, July 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.1 128 Saturday, July 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.111 100 Wednesday, July 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.110 120 Tuesday, July 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.109 124 Saturday, July 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.107 105 Thursday, July 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.105 115 Friday, July 2, 2021 Approved
AWS Command Line Interface (Install) 1.19.103 1188 Thursday, July 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.102 128 Tuesday, June 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.101 117 Saturday, June 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.99 136 Thursday, June 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.98 102 Tuesday, June 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.96 116 Thursday, June 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.94 128 Tuesday, June 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.93 119 Saturday, June 12, 2021 Approved
AWS Command Line Interface (Install) 1.19.92 114 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.91 122 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.89 115 Tuesday, June 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.88 114 Saturday, June 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.86 109 Thursday, June 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.84 107 Saturday, May 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.82 113 Thursday, May 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.79 117 Tuesday, May 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.78 114 Saturday, May 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.77 110 Friday, May 21, 2021 Approved
AWS Command Line Interface (Install) 1.19.76 111 Thursday, May 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.75 123 Wednesday, May 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.74 126 Tuesday, May 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.72 116 Friday, May 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.70 119 Tuesday, May 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.69 128 Saturday, May 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.67 135 Thursday, May 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.64 125 Monday, May 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.62 131 Saturday, May 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.60 103 Thursday, April 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.58 116 Tuesday, April 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.57 102 Saturday, April 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.56 112 Friday, April 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.54 117 Tuesday, April 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.52 115 Thursday, April 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.50 99 Tuesday, April 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.49 118 Saturday, April 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.45 133 Tuesday, April 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.44 104 Saturday, April 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.42 104 Thursday, April 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.40 103 Monday, March 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.39 125 Saturday, March 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.37 124 Thursday, March 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.35 137 Wednesday, March 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.34 123 Tuesday, March 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.32 109 Friday, March 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.30 146 Thursday, March 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.29 112 Wednesday, March 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.28 157 Tuesday, March 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.27 130 Saturday, March 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.26 4350 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.25 137 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.23 140 Tuesday, March 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.22 114 Saturday, March 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.21 125 Friday, March 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.20 129 Thursday, March 4, 2021 Approved
AWS Command Line Interface (Install) 1.19.19 144 Wednesday, March 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.17 145 Saturday, February 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.16 135 Friday, February 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.15 118 Thursday, February 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.13 106 Tuesday, February 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.12 125 Saturday, February 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.11 122 Friday, February 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.10 131 Thursday, February 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.8 114 Tuesday, February 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.7 143 Saturday, February 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.4 157 Tuesday, February 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.3 237 Saturday, February 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.1 149 Thursday, February 4, 2021 Approved
AWS Command Line Interface (Install) 1.18.223 136 Saturday, January 30, 2021 Approved
AWS Command Line Interface (Install) 1.18.221 140 Thursday, January 28, 2021 Approved
AWS Command Line Interface (Install) 1.18.220 141 Wednesday, January 27, 2021 Approved
AWS Command Line Interface (Install) 1.18.219 158 Saturday, January 23, 2021 Approved
AWS Command Line Interface (Install) 1.18.216 122 Saturday, January 16, 2021 Approved
AWS Command Line Interface (Install) 1.18.214 153 Thursday, January 14, 2021 Approved
AWS Command Line Interface (Install) 1.18.212 139 Tuesday, January 12, 2021 Approved
AWS Command Line Interface (Install) 1.18.210 137 Thursday, January 7, 2021 Approved
AWS Command Line Interface (Install) 1.18.208 144 Tuesday, January 5, 2021 Approved
AWS Command Line Interface (Install) 1.18.207 124 Friday, January 1, 2021 Approved
AWS Command Line Interface (Install) 1.18.206 133 Thursday, December 31, 2020 Approved
AWS Command Line Interface (Install) 1.18.205 136 Tuesday, December 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.204 119 Monday, December 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.201 131 Tuesday, December 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.200 246 Friday, December 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.197 122 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.196 128 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.195 2128 Saturday, December 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.193 120 Wednesday, December 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.191 121 Tuesday, December 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.190 128 Saturday, December 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.184 138 Tuesday, November 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.183 140 Saturday, November 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.181 151 Thursday, November 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.179 142 Tuesday, November 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.178 152 Saturday, November 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.176 128 Thursday, November 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.174 133 Monday, November 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.173 138 Saturday, November 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.171 205 Thursday, November 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.170 159 Tuesday, November 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.167 155 Thursday, October 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.165 260 Tuesday, October 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.164 170 Saturday, October 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.162 169 Thursday, October 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.160 144 Tuesday, October 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.159 124 Saturday, October 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.157 204 Saturday, October 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.153 143 Tuesday, October 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.152 278 Saturday, October 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.150 146 Thursday, October 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.148 147 Tuesday, September 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.147 177 Saturday, September 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.146 126 Thursday, September 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.144 129 Wednesday, September 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.143 141 Tuesday, September 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.142 136 Saturday, September 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.141 432 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.140 154 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.138 126 Tuesday, September 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.137 141 Saturday, September 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.133 188 Saturday, September 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.131 149 Thursday, September 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.129 152 Tuesday, September 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.128 161 Saturday, August 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.126 199 Thursday, August 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.125 165 Tuesday, August 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.123 172 Thursday, August 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.121 200 Tuesday, August 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.120 156 Saturday, August 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.119 140 Thursday, August 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.116 7204 Monday, August 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.115 167 Saturday, August 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.113 196 Thursday, August 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.111 198 Tuesday, August 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.110 203 Saturday, August 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.108 181 Thursday, July 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.106 196 Tuesday, July 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.105 205 Saturday, July 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.103 235 Thursday, July 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.101 1314 Tuesday, July 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.100 198 Saturday, July 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.96 221 Thursday, July 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.94 251 Tuesday, July 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.92 219 Thursday, July 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.90 226 Tuesday, June 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.89 271 Saturday, June 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.87 229 Thursday, June 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.85 234 Tuesday, June 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.84 259 Saturday, June 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.82 221 Thursday, June 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.80 304 Tuesday, June 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.79 245 Saturday, June 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.75 206 Tuesday, June 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.74 246 Saturday, June 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.72 244 Thursday, June 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.70 238 Tuesday, June 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.69 6629 Friday, May 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.68 254 Thursday, May 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.65 37401 Thursday, May 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.63 212 Wednesday, May 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.62 252 Tuesday, May 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.61 230 Saturday, May 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.57 222 Tuesday, May 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.56 282 Saturday, May 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.54 247 Thursday, May 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.52 237 Tuesday, May 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.51 310 Saturday, May 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.50 196 Friday, May 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.49 228 Thursday, April 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.46 401 Saturday, April 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.43 246 Wednesday, April 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.42 571 Tuesday, April 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.41 227 Friday, April 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.39 247 Thursday, April 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.36 400 Saturday, April 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.35 233 Friday, April 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.34 205 Thursday, April 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.31 256 Saturday, March 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.30 271 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.29 212 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.28 348 Wednesday, March 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.26 274 Saturday, March 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.25 256 Friday, March 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.24 245 Thursday, March 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.22 217 Tuesday, March 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.21 281 Saturday, March 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.20 245 Friday, March 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.19 246 Thursday, March 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.16 200 Saturday, March 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.15 191 Friday, March 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.14 253 Thursday, March 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.11 23425 Saturday, February 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.9 5908 Friday, February 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.6 3762 Tuesday, February 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.5 4444 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.4 1246 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.3 1435 Thursday, February 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.2 1420 Wednesday, February 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.1 1688 Tuesday, February 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.0 2005 Saturday, February 15, 2020 Approved
AWS Command Line Interface (Install) 1.17.17 4244 Friday, February 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.16 3733 Thursday, February 13, 2020 Approved
AWS Command Line Interface (Install) 1.17.15 1579 Wednesday, February 12, 2020 Approved
AWS Command Line Interface (Install) 1.17.13 3074 Saturday, February 8, 2020 Approved
AWS Command Line Interface (Install) 1.17.12 1255 Friday, February 7, 2020 Approved
AWS Command Line Interface (Install) 1.17.11 190 Thursday, February 6, 2020 Approved
AWS Command Line Interface (Install) 1.17.10 208 Wednesday, February 5, 2020 Approved
AWS Command Line Interface (Install) 1.17.9 8305 Saturday, January 25, 2020 Approved
AWS Command Line Interface (Install) 1.17.8 980 Friday, January 24, 2020 Approved
AWS Command Line Interface (Install) 1.17.7 3065 Wednesday, January 22, 2020 Approved
AWS Command Line Interface (Install) 1.17.6 301 Tuesday, January 21, 2020 Approved
AWS Command Line Interface (Install) 1.17.5 2592 Saturday, January 18, 2020 Approved
AWS Command Line Interface (Install) 1.17.4 1246 Friday, January 17, 2020 Approved
AWS Command Line Interface (Install) 1.17.3 1130 Thursday, January 16, 2020 Approved
AWS Command Line Interface (Install) 1.17.2 2055 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.1 1212 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.0 2074 Saturday, January 11, 2020 Approved
AWS Command Line Interface (Install) 1.16.314 1414 Friday, January 10, 2020 Approved
AWS Command Line Interface (Install) 1.16.313 1440 Thursday, January 9, 2020 Approved
AWS Command Line Interface (Install) 1.16.312 1141 Wednesday, January 8, 2020 Approved
AWS Command Line Interface (Install) 1.16.311 1374 Tuesday, January 7, 2020 Approved
AWS Command Line Interface (Install) 1.16.310 213 Friday, January 3, 2020 Approved
AWS Command Line Interface (Install) 1.16.309 1461 Tuesday, December 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.308 5853 Saturday, December 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.307 1094 Friday, December 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.305 2065 Wednesday, December 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.303 2561 Saturday, December 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.302 1205 Friday, December 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.301 1563 Thursday, December 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.300 1321 Wednesday, December 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.299 1566 Tuesday, December 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.298 2581 Friday, December 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.297 1332 Thursday, December 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.296 1381 Wednesday, December 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.294 844 Tuesday, December 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.292 4811 Wednesday, November 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.291 1395 Tuesday, November 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.290 2113 Saturday, November 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.289 1238 Friday, November 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.287 1339 Thursday, November 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.286 1779 Wednesday, November 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.284 1581 Tuesday, November 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.283 2238 Saturday, November 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.282 1297 Friday, November 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.281 1601 Thursday, November 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.280 1543 Wednesday, November 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.279 1507 Tuesday, November 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.278 2112 Saturday, November 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.277 2707 Friday, November 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.276 1424 Thursday, November 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.274 1670 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.273 1324 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.272 2118 Saturday, November 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.271 1040 Friday, November 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.270 1529 Thursday, October 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.269 1604 Wednesday, October 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.268 1657 Tuesday, October 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.266 2912 Friday, October 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.265 1839 Thursday, October 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.264 1575 Wednesday, October 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.263 3589 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.262 758 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.261 2393 Thursday, October 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.260 1597 Wednesday, October 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.259 1534 Tuesday, October 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.258 1983 Saturday, October 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.257 1362 Friday, October 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.256 2094 Thursday, October 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.255 1750 Wednesday, October 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.254 1419 Tuesday, October 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.253 2056 Saturday, October 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.252 1547 Friday, October 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.251 2170 Thursday, October 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.250 1663 Wednesday, October 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.249 1699 Tuesday, October 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.248 2408 Saturday, September 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.247 1182 Friday, September 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.246 1871 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.245 1476 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.244 1570 Tuesday, September 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.243 1891 Saturday, September 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.242 1278 Friday, September 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.241 2374 Thursday, September 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.240 1526 Wednesday, September 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.239 1181 Tuesday, September 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.238 7199 Friday, September 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.237 1855 Thursday, September 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.236 1420 Wednesday, September 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.235 1355 Tuesday, September 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.234 1830 Saturday, September 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.233 1253 Friday, September 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.232 1892 Thursday, September 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.231 1302 Wednesday, September 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.230 2543 Saturday, August 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.229 1922 Friday, August 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.228 2856 Thursday, August 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.227 2392 Wednesday, August 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.226 1307 Tuesday, August 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.225 2071 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.224 1119 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.223 1186 Thursday, August 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.222 1265 Wednesday, August 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.221 2622 Tuesday, August 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.220 1901 Saturday, August 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.219 1148 Friday, August 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.218 1225 Thursday, August 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.217 1713 Wednesday, August 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.216 1162 Tuesday, August 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.215 1695 Saturday, August 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.214 1062 Friday, August 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.213 2251 Thursday, August 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.212 578 Wednesday, August 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.211 1744 Tuesday, August 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.210 1697 Saturday, August 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.209 5203 Wednesday, July 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.208 1038 Tuesday, July 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.207 1656 Saturday, July 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.206 1215 Friday, July 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.205 1431 Thursday, July 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.204 1233 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.203 1233 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.202 1181 Monday, July 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.201 870 Saturday, July 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.200 939 Friday, July 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.199 1147 Thursday, July 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.198 3146 Saturday, July 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.197 988 Friday, July 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.196 1062 Thursday, July 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.195 1079 Wednesday, July 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.194 1285 Tuesday, July 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.193 2783 Thursday, July 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.192 1015 Wednesday, July 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.191 1013 Tuesday, July 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.190 1581 Saturday, June 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.189 898 Friday, June 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.188 1016 Thursday, June 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.186 1235 Wednesday, June 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.185 1065 Tuesday, June 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.184 2857 Saturday, June 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.183 1032 Friday, June 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.182 894 Thursday, June 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.181 1394 Wednesday, June 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.180 1492 Tuesday, June 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.179 1726 Saturday, June 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.178 924 Friday, June 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.177 2313 Thursday, June 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.176 1627 Wednesday, June 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.175 1527 Tuesday, June 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.174 1916 Saturday, June 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.173 1091 Friday, June 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.172 1297 Thursday, June 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.171 1310 Wednesday, June 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.170 1455 Tuesday, June 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.169 3008 Friday, May 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.168 1197 Thursday, May 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.167 1094 Wednesday, May 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.166 2356 Saturday, May 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.165 1065 Friday, May 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.164 12814 Thursday, May 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.163 1286 Wednesday, May 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.162 1309 Monday, May 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.161 1804 Saturday, May 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.160 1164 Friday, May 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.159 1046 Thursday, May 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.158 1155 Wednesday, May 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.157 1410 Tuesday, May 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.156 1875 Saturday, May 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.155 1708 Thursday, May 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.154 1289 Wednesday, May 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.153 1344 Tuesday, May 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.152 2660 Saturday, May 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.151 1466 Friday, May 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.150 1263 Thursday, May 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.149 1051 Wednesday, May 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.148 1263 Tuesday, April 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.147 1995 Saturday, April 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.146 1252 Friday, April 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.145 1526 Thursday, April 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.144 3001 Saturday, April 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.143 1113 Friday, April 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.142 1070 Thursday, April 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.141 1139 Wednesday, April 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.140 10609 Saturday, April 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.139 1144 Friday, April 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.138 1260 Thursday, April 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.137 795 Wednesday, April 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.136 1501 Tuesday, April 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.135 2036 Saturday, March 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.134 1192 Friday, March 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.133 1727 Thursday, March 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.132 1603 Tuesday, March 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.131 1216 Tuesday, March 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.130 1879 Saturday, March 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.129 981 Friday, March 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.128 1194 Thursday, March 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.127 953 Wednesday, March 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.126 1654 Tuesday, March 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.125 2655 Friday, March 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.124 1240 Thursday, March 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.123 449 Wednesday, March 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.122 1962 Tuesday, March 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.121 1952 Saturday, March 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.120 1061 Friday, March 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.119 1077 Thursday, March 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.118 1200 Wednesday, March 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.117 1592 Tuesday, March 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.116 1690 Saturday, March 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.115 1417 Friday, March 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.114 4712 Thursday, February 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.113 1548 Wednesday, February 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.112 1236 Tuesday, February 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.111 1694 Saturday, February 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.110 982 Friday, February 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.109 1346 Thursday, February 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.108 1243 Wednesday, February 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.107 1258 Tuesday, February 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.106 1948 Saturday, February 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.105 1258 Friday, February 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.104 1201 Thursday, February 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.103 890 Wednesday, February 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.102 1291 Tuesday, February 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.101 1541 Saturday, February 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.99 1756 Thursday, February 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.98 1299 Wednesday, February 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.97 1204 Tuesday, February 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.96 5923 Saturday, January 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.94 1780 Thursday, January 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.93 1810 Tuesday, January 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.92 1748 Saturday, January 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.91 1074 Friday, January 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.90 1272 Thursday, January 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.89 1885 Tuesday, January 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.88 1639 Saturday, January 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.87 971 Friday, January 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.86 1000 Thursday, January 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.85 1768 Tuesday, January 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.84 1539 Saturday, January 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.81 5049 Saturday, December 22, 2018 Approved
AWS Command Line Interface (Install) 1.16.80 898 Friday, December 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.79 956 Thursday, December 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.78 1125 Wednesday, December 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.77 954 Tuesday, December 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.76 1522 Saturday, December 15, 2018 Approved
AWS Command Line Interface (Install) 1.16.75 1108 Friday, December 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.74 1231 Thursday, December 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.73 1205 Wednesday, December 12, 2018 Approved
AWS Command Line Interface (Install) 1.16.72 2571 Saturday, December 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.71 1073 Friday, December 7, 2018 Approved
AWS Command Line Interface (Install) 1.16.70 1464 Thursday, December 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.69 1363 Wednesday, December 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.68 2223 Tuesday, December 4, 2018 Approved
AWS Command Line Interface (Install) 1.16.67 3031 Friday, November 30, 2018 Approved
AWS Command Line Interface (Install) 1.16.65 1096 Thursday, November 29, 2018 Approved
AWS Command Line Interface (Install) 1.16.63 1296 Wednesday, November 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.60 4042 Thursday, November 22, 2018 Approved
AWS Command Line Interface (Install) 1.16.59 806 Wednesday, November 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.58 1536 Tuesday, November 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.57 2148 Saturday, November 17, 2018 Approved
AWS Command Line Interface (Install) 1.16.56 1267 Friday, November 16, 2018 Approved
AWS Command Line Interface (Install) 1.16.55 1321 Thursday, November 15, 2018 Approved
AWS Command Line Interface (Install) 1.16.54 1291 Wednesday, November 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.53 1455 Tuesday, November 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.52 2010 Saturday, November 10, 2018 Approved
AWS Command Line Interface (Install) 1.16.51 818 Friday, November 9, 2018 Approved
AWS Command Line Interface (Install) 1.16.50 699 Thursday, November 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.48 2488 Tuesday, November 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.47 1831 Saturday, November 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.46 1072 Friday, November 2, 2018 Approved
AWS Command Line Interface (Install) 1.16.45 1166 Thursday, November 1, 2018 Approved
AWS Command Line Interface (Install) 1.16.44 1178 Wednesday, October 31, 2018 Approved
AWS Command Line Interface (Install) 1.16.43 2309 Sunday, October 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.42 1558 Friday, October 26, 2018 Approved
AWS Command Line Interface (Install) 1.16.41 1079 Thursday, October 25, 2018 Approved
AWS Command Line Interface (Install) 1.16.40 1147 Wednesday, October 24, 2018 Approved
AWS Command Line Interface (Install) 1.16.39 1040 Tuesday, October 23, 2018 Approved
AWS Command Line Interface (Install) 1.16.38 1174 Sunday, October 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.37 1592 Friday, October 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.36 1099 Thursday, October 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.35 1298 Wednesday, October 17, 2018 Approved
AWS Command Line Interface (Install) 1.16.34 1037 Tuesday, October 16, 2018 Approved
AWS Command Line Interface (Install) 1.16.33 1098 Sunday, October 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.32 1581 Friday, October 12, 2018 Approved
AWS Command Line Interface (Install) 1.16.29 2463 Tuesday, October 9, 2018 Approved
AWS Command Line Interface (Install) 1.16.28 1119 Monday, October 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.27 1592 Friday, October 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.26 1633 Wednesday, October 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.25 1100 Tuesday, October 2, 2018 Approved
AWS Command Line Interface (Install) 1.16.24 1082 Monday, October 1, 2018 Approved
AWS Command Line Interface (Install) 1.16.23 1478 Friday, September 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.22 1022 Thursday, September 27, 2018 Approved
AWS Command Line Interface (Install) 1.16.21 1074 Wednesday, September 26, 2018 Approved
AWS Command Line Interface (Install) 1.16.20 1115 Tuesday, September 25, 2018 Approved
AWS Command Line Interface (Install) 1.16.19 1088 Monday, September 24, 2018 Approved
AWS Command Line Interface (Install) 1.16.18 2001 Friday, September 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.17 1345 Thursday, September 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.16 1137 Wednesday, September 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.15 1256 Tuesday, September 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.14 2573 Friday, September 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.13 1204 Thursday, September 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.11 1792 Tuesday, September 11, 2018 Approved
AWS Command Line Interface (Install) 1.16.10 1329 Monday, September 10, 2018 Approved
AWS Command Line Interface (Install) 1.16.9 1785 Friday, September 7, 2018 Approved
AWS Command Line Interface (Install) 1.16.8 1060 Thursday, September 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.7 1103 Wednesday, September 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.6 1835 Monday, September 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.5 1969 Friday, August 31, 2018 Approved
AWS Command Line Interface (Install) 1.16.4 1093 Thursday, August 30, 2018 Approved
AWS Command Line Interface (Install) 1.16.3 743 Wednesday, August 29, 2018 Approved
AWS Command Line Interface (Install) 1.16.2 538 Tuesday, August 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.1 1941 Monday, August 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.85 1667 Friday, August 24, 2018 Approved
AWS Command Line Interface (Install) 1.15.84 1868 Thursday, August 23, 2018 Approved
AWS Command Line Interface (Install) 1.15.83 678 Wednesday, August 22, 2018 Approved
AWS Command Line Interface (Install) 1.15.82 1418 Tuesday, August 21, 2018 Approved
AWS Command Line Interface (Install) 1.15.81 1092 Monday, August 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.80 1636 Friday, August 17, 2018 Approved
AWS Command Line Interface (Install) 1.15.79 988 Thursday, August 16, 2018 Approved
AWS Command Line Interface (Install) 1.15.78 976 Wednesday, August 15, 2018 Approved
AWS Command Line Interface (Install) 1.15.77 905 Tuesday, August 14, 2018 Approved
AWS Command Line Interface (Install) 1.15.76 1001 Monday, August 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.75 1639 Friday, August 10, 2018 Approved
AWS Command Line Interface (Install) 1.15.74 1002 Thursday, August 9, 2018 Approved
AWS Command Line Interface (Install) 1.15.73 987 Wednesday, August 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.72 992 Tuesday, August 7, 2018 Approved
AWS Command Line Interface (Install) 1.15.71 1023 Monday, August 6, 2018 Approved
AWS Command Line Interface (Install) 1.15.70 1458 Friday, August 3, 2018 Approved
AWS Command Line Interface (Install) 1.15.69 1006 Thursday, August 2, 2018 Approved
AWS Command Line Interface (Install) 1.15.68 1023 Wednesday, August 1, 2018 Approved
AWS Command Line Interface (Install) 1.15.67 1027 Tuesday, July 31, 2018 Approved
AWS Command Line Interface (Install) 1.15.66 2279 Friday, July 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.65 1075 Thursday, July 26, 2018 Approved
AWS Command Line Interface (Install) 1.15.64 1045 Wednesday, July 25, 2018 Approved
AWS Command Line Interface (Install) 1.15.63 2051 Monday, July 23, 2018 Approved
AWS Command Line Interface (Install) 1.15.62 1565 Friday, July 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.61 1122 Thursday, July 19, 2018 Approved
AWS Command Line Interface (Install) 1.15.60 1083 Wednesday, July 18, 2018 Approved
AWS Command Line Interface (Install) 1.15.59 1541 Monday, July 16, 2018 Approved
AWS Command Line Interface (Install) 1.15.58 1419 Friday, July 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.57 1019 Thursday, July 12, 2018 Approved
AWS Command Line Interface (Install) 1.15.56 1010 Wednesday, July 11, 2018 Approved
AWS Command Line Interface (Install) 1.15.55 946 Tuesday, July 10, 2018 Approved
AWS Command Line Interface (Install) 1.15.53 1033 Sunday, July 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.52 1343 Friday, July 6, 2018 Approved
AWS Command Line Interface 1.15.51 1617 Tuesday, July 3, 2018 Approved
AWS Command Line Interface 1.15.50 960 Monday, July 2, 2018 Approved
AWS Command Line Interface (Install) 1.15.49 1950 Friday, June 29, 2018 Approved
AWS Command Line Interface (Install) 1.15.47 955 Thursday, June 28, 2018 Approved
AWS Command Line Interface (Install) 1.15.46 509 Wednesday, June 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.45 516 Monday, June 25, 2018 Approved
AWS Command Line Interface (Install) 1.15.44 743 Friday, June 22, 2018 Approved
AWS Command Line Interface (Install) 1.15.42 3071 Thursday, June 21, 2018 Approved
AWS Command Line Interface (Install) 1.15.41 999 Wednesday, June 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.40 1465 Monday, June 18, 2018 Approved
AWS Command Line Interface (Install) 1.15.39 1479 Friday, June 15, 2018 Approved
AWS Command Line Interface (Install) 1.15.37 1558 Wednesday, June 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.35 1518 Monday, June 11, 2018 Approved
AWS Command Line Interface (Install) 1.15.34 1618 Friday, June 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.33 1876 Wednesday, June 6, 2018 Approved
AWS Command Line Interface ((Install) 1.15.31 2195 Saturday, June 2, 2018 Approved
AWS Command Line Interface 1.15.20 6996 Tuesday, May 15, 2018 Approved
AWS Command Line Interface 1.15.2 15402 Friday, April 6, 2018 Approved
AWS Command Line Interface 1.15.1 792 Thursday, April 5, 2018 Approved
AWS Command Line Interface 1.15.0 732 Wednesday, April 4, 2018 Approved
AWS Command Line Interface 1.14.70 838 Tuesday, April 3, 2018 Approved
AWS Command Line Interface 1.14.69 336 Tuesday, April 3, 2018 Approved
AWS Command Line Interface 1.14.68 309 Friday, March 30, 2018 Approved
AWS Command Line Interface 1.14.67 1583 Friday, March 30, 2018 Approved
AWS Command Line Interface 1.14.43 11610 Tuesday, February 20, 2018 Approved
AWS Command Line Interface 1.14.42 880 Monday, February 19, 2018 Approved
AWS Command Line Interface 1.14.41 846 Sunday, February 18, 2018 Approved
AWS Command Line Interface 1.14.40 911 Thursday, February 15, 2018 Approved
AWS Command Line Interface 1.14.39 724 Thursday, February 15, 2018 Approved
AWS Command Line Interface 1.14.37 1215 Tuesday, February 13, 2018 Approved
AWS Command Line Interface 1.14.36 1176 Saturday, February 10, 2018 Approved
AWS Command Line Interface 1.14.35 781 Thursday, February 8, 2018 Approved
AWS Command Line Interface 1.14.34 1039 Wednesday, February 7, 2018 Approved
AWS Command Line Interface 1.14.32 2765 Tuesday, January 30, 2018 Approved
AWS Command Line Interface 1.14.30 2498 Tuesday, January 23, 2018 Approved
AWS Command Line Interface 1.14.29 452 Monday, January 22, 2018 Approved
AWS Command Line Interface 1.14.24 3080 Saturday, January 13, 2018 Approved
AWS Command Line Interface 1.14.23 856 Thursday, January 11, 2018 Approved
AWS Command Line Interface 1.14.22 804 Thursday, January 11, 2018 Approved
AWS Command Line Interface 1.14.19 2244 Saturday, January 6, 2018 Approved
AWS Command Line Interface 1.14.18 1501 Wednesday, January 3, 2018 Approved
AWS Command Line Interface 1.14.16 1540 Friday, December 22, 2017 Approved
AWS Command Line Interface 1.14.15 598 Friday, December 22, 2017 Approved
AWS Command Line Interface 1.14.12 1134 Tuesday, December 19, 2017 Approved
AWS Command Line Interface 1.14.11 866 Saturday, December 16, 2017 Approved
AWS Command Line Interface 1.14.10 739 Thursday, December 14, 2017 Approved
AWS Command Line Interface 1.14.9 1012 Tuesday, December 12, 2017 Approved
AWS Command Line Interface 1.14.8 667 Tuesday, December 12, 2017 Approved
AWS Command Line Interface 1.14.7 918 Saturday, December 9, 2017 Approved
AWS Command Line Interface 1.14.6 687 Thursday, December 7, 2017 Approved
AWS Command Line Interface 1.14.5 519 Thursday, December 7, 2017 Approved
AWS Command Line Interface 1.14.3 1151 Monday, December 4, 2017 Approved
AWS Command Line Interface 1.14.2 1079 Thursday, November 30, 2017 Approved
AWS Command Line Interface 1.14.1 577 Thursday, November 30, 2017 Approved
AWS Command Line Interface 1.14.0 475 Wednesday, November 29, 2017 Approved
AWS Command Line Interface 1.13.0 608 Wednesday, November 29, 2017 Approved
AWS Command Line Interface 1.12.2 978 Monday, November 27, 2017 Approved
AWS Command Line Interface 1.12.1 961 Thursday, November 23, 2017 Approved
AWS Command Line Interface 1.12.0 615 Wednesday, November 22, 2017 Approved
AWS Command Line Interface 1.11.190 754 Tuesday, November 21, 2017 Approved
AWS Command Line Interface 1.11.189 861 Saturday, November 18, 2017 Approved
AWS Command Line Interface 1.11.188 681 Friday, November 17, 2017 Approved
AWS Command Line Interface 1.11.187 672 Wednesday, November 15, 2017 Approved
AWS Command Line Interface 1.11.186 650 Wednesday, November 15, 2017 Approved
AWS Command Line Interface 1.11.185 1205 Thursday, November 9, 2017 Approved
AWS Command Line Interface 1.11.184 822 Thursday, November 9, 2017 Approved
AWS Command Line Interface 1.11.183 718 Tuesday, November 7, 2017 Approved
AWS Command Line Interface 1.11.181 1090 Saturday, November 4, 2017 Approved
AWS Command Line Interface 1.11.180 676 Friday, November 3, 2017 Approved
AWS Command Line Interface 1.11.179 686 Thursday, November 2, 2017 Approved
AWS Command Line Interface 1.11.178 1560 Friday, October 27, 2017 Approved
AWS Command Line Interface 1.11.177 869 Wednesday, October 25, 2017 Approved
AWS Command Line Interface 1.11.176 706 Tuesday, October 24, 2017 Approved
AWS Command Line Interface 1.11.175 908 Friday, October 20, 2017 Approved
AWS Command Line Interface 1.11.174 720 Thursday, October 19, 2017 Approved
AWS Command Line Interface 1.11.173 697 Wednesday, October 18, 2017 Approved
AWS Command Line Interface 1.11.172 814 Tuesday, October 17, 2017 Approved
AWS Command Line Interface 1.11.171 764 Monday, October 16, 2017 Approved
AWS Command Line Interface 1.11.170 1104 Thursday, October 12, 2017 Approved
AWS Command Line Interface 1.11.169 782 Wednesday, October 11, 2017 Approved
AWS Command Line Interface 1.11.167 1572 Saturday, October 7, 2017 Approved
AWS Command Line Interface 1.11.166 623 Thursday, October 5, 2017 Approved
AWS Command Line Interface 1.11.165 621 Thursday, October 5, 2017 Approved
AWS Command Line Interface 1.11.164 746 Tuesday, October 3, 2017 Approved
AWS Command Line Interface 1.11.163 712 Monday, October 2, 2017 Approved
AWS Command Line Interface 1.11.162 797 Saturday, September 30, 2017 Approved
AWS Command Line Interface 1.11.160 1921 Tuesday, September 26, 2017 Approved
AWS Command Line Interface 1.11.159 15536 Monday, September 25, 2017 Approved
AWS Command Line Interface 1.11.158 1434 Thursday, September 21, 2017 Approved
AWS Command Line Interface 1.11.157 500 Thursday, September 21, 2017 Approved
AWS Command Line Interface 1.11.156 1009 Wednesday, September 20, 2017 Approved
AWS Command Line Interface 1.11.155 787 Tuesday, September 19, 2017 Approved
AWS Command Line Interface 1.11.154 1034 Friday, September 15, 2017 Approved
AWS Command Line Interface 1.11.152 936 Wednesday, September 13, 2017 Approved
AWS Command Line Interface 1.11.151 796 Tuesday, September 12, 2017 Approved
AWS Command Line Interface 1.11.150 760 Tuesday, September 12, 2017 Approved
AWS Command Line Interface 1.11.148 1318 Friday, September 8, 2017 Approved
AWS Command Line Interface 1.11.146 1152 Tuesday, September 5, 2017 Approved
AWS Command Line Interface 1.11.145 1760 Saturday, September 2, 2017 Approved
AWS Command Line Interface 1.11.144 13669 Friday, September 1, 2017 Approved
AWS Command Line Interface 1.11.143 757 Thursday, August 31, 2017 Approved
AWS Command Line Interface 1.11.142 986 Tuesday, August 29, 2017 Approved
AWS Command Line Interface 1.11.141 1909 Saturday, August 26, 2017 Approved
AWS Command Line Interface 1.11.140 1182 Thursday, August 24, 2017 Approved
AWS Command Line Interface 1.11.139 1005 Wednesday, August 23, 2017 Approved
AWS Command Line Interface 1.11.137 1572 Tuesday, August 22, 2017 Approved
AWS Command Line Interface 1.11.133 4229 Saturday, August 12, 2017 Approved
AWS Command Line Interface 1.11.132 1060 Friday, August 11, 2017 Approved
AWS Command Line Interface 1.11.131 1259 Wednesday, August 9, 2017 Approved
AWS Command Line Interface 1.11.129 7125 Wednesday, August 2, 2017 Approved
AWS Command Line Interface 1.11.128 1177 Tuesday, August 1, 2017 Approved
AWS Command Line Interface 1.11.127 2250 Friday, July 28, 2017 Approved
AWS Command Line Interface 1.11.126 1163 Thursday, July 27, 2017 Approved
AWS Command Line Interface 1.11.125 643 Wednesday, July 26, 2017 Approved
AWS Command Line Interface 1.11.124 1736 Monday, July 24, 2017 Approved
AWS Command Line Interface 1.11.123 2258 Friday, July 21, 2017 Approved
AWS Command Line Interface 1.11.122 1104 Wednesday, July 19, 2017 Approved
AWS Command Line Interface 1.11.121 1585 Tuesday, July 18, 2017 Approved
AWS Command Line Interface 1.11.120 2104 Saturday, July 15, 2017 Approved
AWS Command Line Interface 1.11.118 1886 Thursday, July 13, 2017 Approved
AWS Command Line Interface 1.11.115 8490 Friday, June 30, 2017 Approved
AWS Command Line Interface 1.11.114 1338 Thursday, June 29, 2017 Approved
AWS Command Line Interface 1.11.113 1293 Wednesday, June 28, 2017 Approved
AWS Command Line Interface 1.11.112 3456 Friday, June 23, 2017 Approved
AWS Command Line Interface 1.11.111 858 Friday, June 23, 2017 Approved
AWS Command Line Interface 1.11.110 1302 Thursday, June 22, 2017 Approved
AWS Command Line Interface 1.11.109 922 Wednesday, June 21, 2017 Approved
AWS Command Line Interface 1.11.108 1431 Monday, June 19, 2017 Approved
AWS Command Line Interface 1.11.107 1589 Sunday, June 18, 2017 Approved
AWS Command Line Interface 1.11.101 7240 Thursday, June 8, 2017 Approved
AWS Command Line Interface 1.11.100 1516 Wednesday, June 7, 2017 Approved
AWS Command Line Interface 1.11.99 673 Wednesday, June 7, 2017 Approved
AWS Command Line Interface 1.11.98 812 Monday, June 5, 2017 Approved
AWS Command Line Interface 1.11.97 3143 Saturday, June 3, 2017 Approved
AWS Command Line Interface 1.11.96 1225 Friday, June 2, 2017 Approved
AWS Command Line Interface 1.11.95 1231 Wednesday, May 31, 2017 Approved
AWS Command Line Interface 1.11.94 1190 Wednesday, May 31, 2017 Approved
AWS Command Line Interface 1.11.91 4716 Wednesday, May 24, 2017 Approved
AWS Command Line Interface 1.11.90 763 Tuesday, May 23, 2017 Approved
AWS Command Line Interface 1.11.89 3251 Friday, May 19, 2017 Approved
AWS Command Line Interface 1.11.88 1048 Thursday, May 18, 2017 Approved
AWS Command Line Interface 1.11.87 1265 Wednesday, May 17, 2017 Approved
AWS Command Line Interface 1.11.86 1188 Tuesday, May 16, 2017 Approved
AWS Command Line Interface 1.11.85 2413 Friday, May 12, 2017 Approved
AWS Command Line Interface 1.11.83 3950 Friday, May 5, 2017 Approved
AWS Command Line Interface 1.11.82 3641 Saturday, April 29, 2017 Approved
AWS Command Line Interface 1.11.81 1899 Wednesday, April 26, 2017 Approved
AWS Command Line Interface 1.11.80 1449 Saturday, April 22, 2017 Approved
AWS Command Line Interface 1.11.79 631 Friday, April 21, 2017 Approved
AWS Command Line Interface 1.11.78 910 Wednesday, April 19, 2017 Approved
AWS Command Line Interface 1.11.77 1504 Tuesday, April 18, 2017 Approved
AWS Command Line Interface 1.11.76 7990 Tuesday, April 11, 2017 Approved
AWS Command Line Interface 1.11.75 1479 Saturday, April 8, 2017 Approved
AWS Command Line Interface 1.11.74 919 Thursday, April 6, 2017 Approved
AWS Command Line Interface 1.11.73 942 Thursday, April 6, 2017 Approved
AWS Command Line Interface 1.11.72 803 Tuesday, April 4, 2017 Approved
AWS Command Line Interface 1.11.71 727 Tuesday, April 4, 2017 Approved
AWS Command Line Interface 1.11.70 951 Friday, March 31, 2017 Approved
AWS Command Line Interface 1.11.69 623 Friday, March 31, 2017 Approved
AWS Command Line Interface 1.11.68 1100 Wednesday, March 29, 2017 Approved
AWS Command Line Interface 1.11.67 726 Tuesday, March 28, 2017 Approved
AWS Command Line Interface 1.11.66 1044 Thursday, March 23, 2017 Approved
AWS Command Line Interface 1.11.65 853 Thursday, March 23, 2017 Approved
AWS Command Line Interface 1.11.64 718 Wednesday, March 22, 2017 Approved
AWS Command Line Interface 1.11.63 1819 Tuesday, March 14, 2017 Approved
AWS Command Line Interface 1.11.61 892 Friday, March 10, 2017 Approved
AWS Command Line Interface 1.11.60 777 Friday, March 10, 2017 Approved
AWS Command Line Interface 1.11.59 716 Thursday, March 9, 2017 Approved
AWS Command Line Interface 1.11.58 707 Wednesday, March 8, 2017 Approved
AWS Command Line Interface 1.11.57 652 Tuesday, March 7, 2017 Approved
AWS Command Line Interface 1.11.56 1864 Tuesday, February 28, 2017 Approved
AWS Command Line Interface 1.11.55 804 Sunday, February 26, 2017 Approved
AWS Command Line Interface 1.11.54 783 Friday, February 24, 2017 Approved
AWS Command Line Interface 1.11.52 1119 Wednesday, February 22, 2017 Approved
AWS Command Line Interface 1.11.51 42659 Sunday, February 19, 2017 Approved
AWS Command Line Interface 1.11.50 811 Friday, February 17, 2017 Approved
AWS Command Line Interface 1.11.49 802 Thursday, February 16, 2017 Approved
AWS Command Line Interface 1.11.48 828 Wednesday, February 15, 2017 Approved
AWS Command Line Interface 1.11.47 558 Tuesday, February 14, 2017 Approved
AWS Command Line Interface 1.11.46 1444 Friday, February 10, 2017 Approved
AWS Command Line Interface 1.11.45 1018 Wednesday, February 8, 2017 Approved
AWS Command Line Interface 1.11.43 2465 Thursday, January 26, 2017 Approved
AWS Command Line Interface 1.11.42 742 Wednesday, January 25, 2017 Approved
AWS Command Line Interface 1.11.41 3219 Friday, January 20, 2017 Approved
AWS Command Line Interface 1.11.40 548 Friday, January 20, 2017 Approved
AWS Command Line Interface 1.11.39 788 Thursday, January 19, 2017 Approved
AWS Command Line Interface 1.11.38 725 Tuesday, January 17, 2017 Approved
AWS Command Line Interface 1.11.37 553 Tuesday, January 17, 2017 Approved
AWS Command Line Interface 1.11.36 1899 Wednesday, January 4, 2017 Approved
AWS Command Line Interface 1.11.34 1694 Friday, December 23, 2016 Approved
AWS Command Line Interface 1.11.33 970 Thursday, December 22, 2016 Approved
AWS Command Line Interface 1.11.32 670 Wednesday, December 21, 2016 Approved
AWS Command Line Interface 1.11.31 745 Tuesday, December 20, 2016 Approved
AWS Command Line Interface 1.11.30 891 Friday, December 16, 2016 Approved
AWS Command Line Interface 1.11.24 1978 Saturday, December 3, 2016 Approved
AWS Command Line Interface 1.11.22 1517 Wednesday, November 30, 2016 Approved
AWS Command Line Interface 1.10.38 10471 Wednesday, June 15, 2016 Approved
AWS Command Line Interface 1.10.35 512 Friday, June 3, 2016 Approved
AWS Command Line Interface 1.10.33 442 Friday, May 27, 2016 Approved
AWS Command Line Interface 1.10.30 462 Wednesday, May 18, 2016 Approved
AWS Command Line Interface 1.10.27 499 Wednesday, May 11, 2016 Approved
AWS Command Line Interface 1.10.26 462 Friday, May 6, 2016 Approved
AWS Command Line Interface 1.10.25 432 Wednesday, May 4, 2016 Approved
AWS Command Line Interface 1.10.24 486 Friday, April 29, 2016 Approved
AWS Command Line Interface 1.10.23 558 Thursday, April 28, 2016 Approved
AWS Command Line Interface 1.10.22 664 Friday, April 22, 2016 Approved
AWS Command Line Interface 1.10.21 558 Tuesday, April 19, 2016 Approved
AWS Command Line Interface 1.10.20 701 Tuesday, April 12, 2016 Approved
AWS Command Line Interface 1.10.18 577 Monday, April 11, 2016 Approved
AWS Command Line Interface 1.10.16 858 Friday, March 25, 2016 Approved
AWS Command Line Interface 1.10.15 587 Wednesday, March 23, 2016 Approved
AWS Command Line Interface 1.10.14 568 Friday, March 18, 2016 Approved
AWS Command Line Interface 1.10.13 506 Wednesday, March 16, 2016 Approved
AWS Command Line Interface 1.10.12 580 Friday, March 11, 2016 Approved
AWS Command Line Interface 1.10.11 576 Wednesday, March 9, 2016 Approved
AWS Command Line Interface 1.10.10 582 Friday, March 4, 2016 Approved
AWS Command Line Interface 1.10.9 567 Wednesday, March 2, 2016 Approved
AWS Command Line Interface 1.10.8 543 Monday, February 29, 2016 Approved
AWS Command Line Interface 1.10.7 663 Wednesday, February 24, 2016 Approved
awscli 1.0.4 13419 Saturday, February 22, 2014 Approved
awscli 1.0.3 604 Saturday, December 7, 2013 Approved
awscli 1.0.2 527 Saturday, December 7, 2013 Approved
awscli 1.0.1 732 Saturday, December 7, 2013 Approved

This package has no dependencies.

Discussion for the AWS Command Line Interface v2 (Install) Package

Ground Rules:

  • This discussion is only about AWS Command Line Interface v2 (Install) and the AWS Command Line Interface v2 (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or AWS Command Line Interface v2 (Install), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus