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:

6,038,484

Downloads of v 2.28.24:

13

Last Update:

05 Sep 2025

Package Maintainer(s):

Software Author(s):

  • Amazon Web Services

Tags:

AWS Command Line Interface v2 (Install)

  • 1
  • 2
  • 3

2.28.24 | Updated: 05 Sep 2025

Downloads:

6,038,484

Downloads of v 2.28.24:

13

Maintainer(s):

Software Author(s):

  • Amazon Web Services

AWS Command Line Interface v2 (Install) 2.28.24

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'" [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'" 
$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.24'
    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.24'
end

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


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

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


package { 'awscli':
  ensure   => '2.28.24',
  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 05 Sep 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.24.msi'
$checksum64 = '8ce3f6c8a63623c2db9a1217fbcaf7de53feb8ec9444532d67f099794d40618f'

$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.23 1130 Thursday, September 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.22 5280 Wednesday, September 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.21 11363 Saturday, August 30, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.20 2747 Friday, August 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.19 4633 Thursday, August 28, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.18 4647 Wednesday, August 27, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.17 4295 Tuesday, August 26, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.16 10699 Saturday, August 23, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.15 2812 Friday, August 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.14 4209 Thursday, August 21, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.13 5094 Wednesday, August 20, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.12 4767 Tuesday, August 19, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.11 9924 Saturday, August 16, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.10 2711 Friday, August 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.9 3903 Thursday, August 14, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.8 4854 Wednesday, August 13, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.7 5181 Tuesday, August 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.6 9017 Saturday, August 9, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.5 3066 Friday, August 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.4 3296 Thursday, August 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.3 3741 Wednesday, August 6, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.2 5747 Tuesday, August 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.1 9975 Saturday, August 2, 2025 Approved
AWS Command Line Interface v2 (Install) 2.28.0 3351 Friday, August 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.63 4263 Thursday, July 31, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.62 5573 Wednesday, July 30, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.61 5300 Tuesday, July 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.60 11520 Saturday, July 26, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.59 3020 Friday, July 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.58 4043 Thursday, July 24, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.57 6449 Wednesday, July 23, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.56 3537 Tuesday, July 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.55 13107 Saturday, July 19, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.54 4297 Friday, July 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.53 5119 Thursday, July 17, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.52 5047 Wednesday, July 16, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.50 18101 Thursday, July 10, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.49 20296 Friday, July 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.48 4863 Thursday, July 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.47 3690 Wednesday, July 2, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.46 6475 Tuesday, July 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.45 7903 Saturday, June 28, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.44 3914 Friday, June 27, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.43 4203 Thursday, June 26, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.42 5507 Wednesday, June 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.41 5757 Tuesday, June 24, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.40 12061 Saturday, June 21, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.39 806 Friday, June 20, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.38 3454 Thursday, June 19, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.37 6185 Wednesday, June 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.36 5506 Tuesday, June 17, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.35 10707 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 4685 Wednesday, June 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.32 7376 Tuesday, June 10, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.31 7411 Saturday, June 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.30 4534 Friday, June 6, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.29 811 Thursday, June 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.28 6532 Wednesday, June 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.27 4510 Tuesday, June 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.26 9266 Saturday, May 31, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.25 4240 Thursday, May 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.24 3943 Thursday, May 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.23 4732 Wednesday, May 28, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.22 11275 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 5688 Thursday, May 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.19 3750 Wednesday, May 21, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.18 7328 Tuesday, May 20, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.17 4625 Saturday, May 17, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.16 7919 Friday, May 16, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.15 4966 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 9547 Tuesday, May 13, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.12 9417 Saturday, May 10, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.11 3256 Friday, May 9, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.10 4951 Thursday, May 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.8 7737 Tuesday, May 6, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.7 9230 Saturday, May 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.6 3009 Friday, May 2, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.5 3677 Thursday, May 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.4 4080 Wednesday, April 30, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.3 4520 Tuesday, April 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.2 8905 Saturday, April 26, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.1 3200 Friday, April 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.27.0 2105 Thursday, April 24, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.7 5825 Wednesday, April 23, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.6 4824 Tuesday, April 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.5 8709 Saturday, April 19, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.4 612 Friday, April 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.3 3892 Thursday, April 17, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.2 9719 Tuesday, April 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.1 9221 Saturday, April 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.26.0 2836 Friday, April 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.14 1999 Thursday, April 10, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.12 7807 Tuesday, April 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.11 9663 Saturday, April 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.10 2818 Friday, April 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.9 6277 Thursday, April 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.8 2383 Wednesday, April 2, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.7 6084 Tuesday, April 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.6 5267 Saturday, March 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.4 7548 Thursday, March 27, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.3 4327 Wednesday, March 26, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.2 6237 Tuesday, March 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.1 9187 Saturday, March 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.25.0 2978 Friday, March 21, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.27 1421 Thursday, March 20, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.26 6866 Wednesday, March 19, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.25 4718 Tuesday, March 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.24 7559 Saturday, March 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.23 3379 Friday, March 14, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.22 6957 Wednesday, March 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.21 6051 Tuesday, March 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.20 9404 Saturday, March 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.19 950 Friday, March 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.18 3238 Thursday, March 6, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.17 5920 Wednesday, March 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.16 5402 Tuesday, March 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.15 6318 Saturday, March 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.14 5023 Friday, February 28, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.13 5220 Thursday, February 27, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.12 3009 Wednesday, February 26, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.11 6012 Tuesday, February 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.10 10094 Saturday, February 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.9 4004 Friday, February 21, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.8 4810 Thursday, February 20, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.7 3386 Wednesday, February 19, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.6 5524 Tuesday, February 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.5 9177 Saturday, February 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.4 1603 Friday, February 14, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.3 6159 Wednesday, February 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.2 4180 Wednesday, February 12, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.1 4977 Tuesday, February 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.24.0 9066 Saturday, February 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.15 3080 Friday, February 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.14 4954 Wednesday, February 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.13 3750 Wednesday, February 5, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.12 1661 Tuesday, February 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.11 10579 Saturday, February 1, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.10 571 Friday, January 31, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.9 3676 Thursday, January 30, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.8 5576 Wednesday, January 29, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.7 5306 Tuesday, January 28, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.6 8303 Saturday, January 25, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.5 3134 Friday, January 24, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.4 3558 Thursday, January 23, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.3 2173 Wednesday, January 22, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.2 10485 Saturday, January 18, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.1 3439 Friday, January 17, 2025 Approved
AWS Command Line Interface v2 (Install) 2.23.0 3104 Thursday, January 16, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.35 4348 Wednesday, January 15, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.34 4557 Tuesday, January 14, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.33 8613 Saturday, January 11, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.32 3339 Friday, January 10, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.30 6289 Wednesday, January 8, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.29 4586 Tuesday, January 7, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.28 6954 Saturday, January 4, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.27 2744 Friday, January 3, 2025 Approved
AWS Command Line Interface v2 (Install) 2.22.26 8180 Monday, December 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.25 4484 Saturday, December 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.24 2711 Friday, December 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.23 4999 Tuesday, December 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.22 4594 Saturday, December 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.21 2695 Friday, December 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.20 5191 Thursday, December 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.19 1503 Wednesday, December 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.18 5515 Tuesday, December 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.17 7078 Saturday, December 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.16 3067 Friday, December 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.15 2106 Thursday, December 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.14 4682 Wednesday, December 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.13 4097 Tuesday, December 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.12 11185 Thursday, December 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.10 3823 Wednesday, December 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.8 6255 Tuesday, December 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.7 10384 Thursday, November 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.5 6141 Tuesday, November 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.4 8427 Saturday, November 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.2 5567 Thursday, November 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.1 3589 Wednesday, November 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.22.0 4367 Tuesday, November 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.3 8753 Saturday, November 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.2 2970 Friday, November 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.21.0 2972 Thursday, November 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.20.0 5390 Wednesday, November 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.5 5113 Tuesday, November 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.4 7905 Saturday, November 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.3 2157 Friday, November 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.2 3437 Thursday, November 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.1 9846 Saturday, November 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.19.0 2527 Friday, November 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.18 2170 Thursday, October 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.17 102 Wednesday, October 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.16 5634 Tuesday, October 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.15 5421 Saturday, October 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.14 10224 Friday, October 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.13 4183 Thursday, October 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.12 3010 Wednesday, October 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.11 4726 Tuesday, October 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.10 9052 Saturday, October 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.9 3428 Friday, October 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.8 4078 Thursday, October 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.7 3750 Wednesday, October 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.6 3398 Tuesday, October 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.4 8892 Friday, October 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.3 3426 Thursday, October 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.2 3829 Wednesday, October 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.1 4577 Tuesday, October 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.18.0 6946 Saturday, October 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.65 2564 Friday, October 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.64 3725 Thursday, October 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.63 2664 Wednesday, October 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.61 11226 Saturday, September 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.59 5728 Thursday, September 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.58 3704 Wednesday, September 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.57 3946 Tuesday, September 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.56 7869 Saturday, September 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.55 2920 Friday, September 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.54 3638 Thursday, September 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.53 3660 Wednesday, September 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.52 3759 Tuesday, September 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.51 8064 Saturday, September 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.50 3084 Friday, September 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.49 3958 Thursday, September 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.48 5258 Wednesday, September 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.47 6146 Monday, September 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.46 4052 Saturday, September 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.45 225 Friday, September 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.44 3243 Thursday, September 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.43 7387 Wednesday, September 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.42 9276 Saturday, August 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.40 4524 Thursday, August 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.39 4657 Wednesday, August 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.38 3559 Tuesday, August 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.37 7756 Saturday, August 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.36 2916 Friday, August 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.35 3508 Thursday, August 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.34 3801 Wednesday, August 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.33 3400 Tuesday, August 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.32 6811 Saturday, August 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.31 2507 Friday, August 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.30 2792 Thursday, August 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.29 4394 Wednesday, August 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.28 3369 Tuesday, August 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.27 5330 Saturday, August 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.26 3099 Friday, August 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.25 3144 Thursday, August 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.24 2601 Wednesday, August 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.23 3996 Tuesday, August 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.22 6038 Saturday, August 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.21 2824 Friday, August 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.20 5580 Wednesday, July 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.19 2424 Tuesday, July 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.18 7515 Friday, July 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.16 5438 Wednesday, July 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.15 3275 Tuesday, July 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.14 8775 Friday, July 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.13 12365 Saturday, July 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.12 4078 Thursday, July 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.11 3671 Wednesday, July 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.10 3844 Tuesday, July 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.9 7903 Saturday, July 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.8 4722 Thursday, July 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.7 4268 Wednesday, July 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.6 3420 Tuesday, July 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.5 7483 Saturday, June 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.4 1910 Friday, June 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.3 102 Thursday, June 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.2 6272 Wednesday, June 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.1 4556 Tuesday, June 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.0 9406 Friday, June 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.12 4556 Thursday, June 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.11 2733 Wednesday, June 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.10 4765 Tuesday, June 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.9 8047 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.8 1944 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.7 4401 Thursday, June 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.6 3918 Wednesday, June 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.5 4510 Tuesday, June 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.4 7394 Saturday, June 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.3 1705 Friday, June 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.2 4905 Thursday, June 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.1 3541 Wednesday, June 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.0 3377 Tuesday, June 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.62 6060 Saturday, June 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.61 3046 Friday, May 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.60 5317 Thursday, May 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.59 3917 Wednesday, May 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.58 11231 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 3145 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 2784 Tuesday, May 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.53 6238 Saturday, May 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.52 2549 Friday, May 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.51 3584 Thursday, May 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.50 3014 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 7436 Saturday, May 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.47 3756 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 6680 Tuesday, May 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.44 27099 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 10627 Saturday, April 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.41 5093 Thursday, April 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.40 10134 Saturday, April 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.39 4505 Thursday, April 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.38 10759 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 10104 Saturday, April 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.35 4511 Thursday, April 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.34 12239 Saturday, March 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.33 5058 Thursday, March 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.32 11317 Saturday, March 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.31 6501 Thursday, March 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.30 12806 Saturday, March 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.28 11453 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 6916 Thursday, March 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.25 22074 Saturday, March 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.24 8459 Thursday, February 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.23 15640 Saturday, February 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.22 8383 Thursday, February 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.21 12875 Saturday, February 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.20 7133 Thursday, February 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.19 16648 Saturday, February 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.17 20831 Saturday, February 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.16 6699 Thursday, February 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.15 14939 Saturday, January 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.14 7149 Thursday, January 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.13 9565 Tuesday, January 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.12 8933 Saturday, January 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.11 8051 Thursday, January 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.10 13599 Saturday, January 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.9 7113 Thursday, January 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.8 12987 Saturday, January 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.7 6369 Thursday, January 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.6 10161 Saturday, December 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.5 5050 Thursday, December 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.4 8696 Saturday, December 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.3 6523 Thursday, December 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.2 11637 Saturday, December 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.1 5162 Thursday, December 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.0 17463 Saturday, December 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.6 9097 Thursday, December 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.5 15087 Friday, December 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.2 6412 Wednesday, November 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.0 7113 Tuesday, November 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.38 14257 Wednesday, November 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.37 14554 Saturday, November 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.36 5261 Thursday, November 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.35 8389 Tuesday, November 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.34 9288 Saturday, November 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.32 15418 Saturday, November 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.31 6403 Thursday, November 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.30 13131 Saturday, October 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.29 6283 Thursday, October 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.28 13441 Saturday, October 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.27 8579 Thursday, October 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.26 13470 Saturday, October 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.25 16057 Saturday, October 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.24 6434 Thursday, October 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.23 7980 Tuesday, October 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.21 175 Saturday, September 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.20 24849 Thursday, September 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.19 12594 Saturday, September 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.18 7142 Thursday, September 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.16 17783 Thursday, September 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.15 12173 Saturday, September 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.14 8534 Thursday, August 31, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.13 13492 Saturday, August 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.12 7043 Thursday, August 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.11 1668 Saturday, August 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.9 27646 Saturday, August 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.8 7295 Thursday, August 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.7 12998 Saturday, August 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.6 7628 Thursday, August 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.5 111 Saturday, July 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.4 15825 Thursday, July 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.3 14501 Saturday, July 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.2 14398 Thursday, July 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.1 23152 Friday, July 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.0 28529 Saturday, July 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.7 11050 Thursday, July 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.6 17688 Saturday, July 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.5 7383 Friday, June 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.4 8155 Thursday, June 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.3 17532 Saturday, June 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.2 10917 Thursday, June 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.1 18188 Saturday, June 17, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.0 11947 Thursday, June 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.27 13236 Saturday, June 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.26 7009 Thursday, June 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.25 12554 Saturday, June 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.24 7254 Thursday, June 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.23 12743 Saturday, May 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.22 7851 Thursday, May 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.21 13254 Saturday, May 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.20 25240 Saturday, May 13, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.19 9816 Thursday, May 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.17 17210 Thursday, May 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.16 16353 Saturday, April 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.13 24553 Saturday, April 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.11 22006 Monday, April 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.10 9214 Thursday, April 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.9 8753 Tuesday, April 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.8 9278 Saturday, April 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.6 17875 Saturday, March 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.5 6879 Thursday, March 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.4 17582 Saturday, March 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.2 17719 Saturday, March 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.1 7577 Thursday, March 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.0 14336 Friday, March 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.4 5970 Thursday, March 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.3 11668 Saturday, February 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.2 8241 Thursday, February 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.1 12557 Saturday, February 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.23 17773 Saturday, February 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.22 7373 Thursday, February 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.21 11329 Monday, February 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.20 11475 Thursday, February 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.19 11444 Monday, January 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.18 11772 Thursday, January 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.17 13415 Saturday, January 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.16 8695 Thursday, January 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.15 12893 Saturday, January 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.14 7535 Thursday, January 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.13 15816 Friday, January 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.12 14537 Saturday, December 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.11 7024 Thursday, December 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.10 11264 Friday, December 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.9 7517 Thursday, December 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.8 12875 Saturday, December 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.7 8560 Thursday, December 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.6 13963 Saturday, December 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.5 7459 Thursday, December 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.4 12323 Saturday, December 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.3 6390 Thursday, December 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.2 5472 Wednesday, November 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.1 13597 Thursday, November 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.0 16650 Saturday, November 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.13 6819 Thursday, November 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.12 9632 Saturday, November 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.11 11640 Thursday, November 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.9 13382 Saturday, November 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.8 7517 Thursday, November 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.7 15753 Friday, October 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.6 7453 Thursday, October 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.5 10816 Saturday, October 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.3 17813 Friday, October 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.2 15693 Saturday, October 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.1 6616 Thursday, October 6, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.0 10839 Saturday, October 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.35 13674 Saturday, September 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.34 6752 Thursday, September 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.33 11626 Saturday, September 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.32 6949 Thursday, September 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.31 14091 Saturday, September 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.30 7675 Thursday, September 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.29 13904 Monday, September 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.28 19890 Thursday, September 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.26 23238 Thursday, August 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.25 16588 Saturday, August 20, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.24 11625 Wednesday, August 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.22 15321 Friday, August 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.21 32671 Thursday, August 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.20 16135 Saturday, July 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.19 7955 Thursday, July 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.18 14137 Saturday, July 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.17 8213 Thursday, July 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.16 14017 Saturday, July 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.15 7320 Thursday, July 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.14 13333 Saturday, July 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.13 6259 Thursday, July 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.11 27823 Saturday, June 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.9 18458 Saturday, June 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.8 4884 Friday, June 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.7 21326 Thursday, June 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.6 11633 Saturday, June 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.5 6986 Thursday, June 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.4 11569 Friday, May 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.3 6150 Thursday, May 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.2 12337 Saturday, May 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.1 7954 Wednesday, May 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.0 11245 Saturday, May 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.4 6852 Wednesday, May 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.3 8240 Sunday, May 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.2 6895 Thursday, May 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.1 9384 Friday, April 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.0 5289 Thursday, April 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.8 10754 Friday, April 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.7 3728 Thursday, April 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.6 10561 Saturday, April 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.4 11272 Saturday, April 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.3 5841 Thursday, April 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.2 8631 Saturday, April 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.1 5866 Thursday, March 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.0 6728 Monday, March 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.29 8438 Saturday, March 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.28 5510 Thursday, March 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.27 10452 Friday, March 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.25 12209 Friday, March 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.24 5954 Wednesday, March 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.23 8771 Friday, March 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.22 6067 Wednesday, March 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.21 22724 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 8112 Friday, February 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.18 10549 Friday, February 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.17 6783 Wednesday, February 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.16 8307 Friday, February 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.15 10558 Friday, January 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.13 10820 Friday, January 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.12 14790 Wednesday, January 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.11 6770 Friday, January 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.10 4165 Wednesday, January 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.9 6823 Friday, January 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.7 13208 Wednesday, December 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.6 17187 Friday, December 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.5 8506 Saturday, December 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.4 2636 Friday, December 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.3 4995 Tuesday, November 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.2 6592 Saturday, November 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.1 6076 Wednesday, November 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.0 6814 Friday, November 19, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.7 5217 Wednesday, November 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.6 7395 Friday, November 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.5 5126 Wednesday, November 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.4 6924 Friday, November 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.0 16215 Friday, October 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.47 4860 Wednesday, October 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.46 6665 Friday, October 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.45 5727 Tuesday, October 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.43 12473 Friday, October 1, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.42 5088 Wednesday, September 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.41 6567 Friday, September 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.40 3990 Wednesday, September 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.39 6070 Friday, September 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.38 4415 Wednesday, September 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.37 7624 Friday, September 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.36 4183 Wednesday, September 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.35 5771 Friday, September 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.33 7967 Friday, August 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.32 3638 Wednesday, August 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.31 6424 Friday, August 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.30 4183 Wednesday, August 18, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.29 5795 Friday, August 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.28 3860 Wednesday, August 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.27 6436 Friday, August 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.26 3328 Wednesday, August 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.25 7467 Saturday, July 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.24 2032 Friday, July 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.23 2387 Wednesday, July 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.22 6928 Friday, July 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.21 4524 Wednesday, July 21, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.20 5188 Friday, July 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.19 3361 Thursday, July 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.18 7069 Friday, July 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.17 3887 Wednesday, July 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.16 7045 Friday, July 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.15 5982 Wednesday, June 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.14 5471 Friday, June 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.13 7815 Thursday, June 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.12 6094 Wednesday, June 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.11 5597 Friday, June 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.10 4743 Wednesday, June 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.9 6010 Friday, June 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.8 3390 Wednesday, June 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.7 6460 Friday, May 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.6 4389 Wednesday, May 26, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.5 13330 Saturday, May 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.4 5580 Wednesday, May 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.3 5774 Friday, May 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.2 3966 Wednesday, May 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.1 5043 Friday, April 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.0 3152 Wednesday, April 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.39 146 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 4079 Wednesday, April 14, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.36 5665 Friday, April 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.35 434 Wednesday, April 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.34 9262 Friday, April 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.33 3555 Wednesday, March 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.32 573 Tuesday, March 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.29 53580 Tuesday, March 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.28 18537 Tuesday, February 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.27 34467 Wednesday, February 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.26 5978 Friday, February 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.25 3092 Wednesday, February 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.24 6770 Friday, February 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.23 3543 Wednesday, February 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.22 9965 Friday, January 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.21 7694 Friday, January 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.20 4356 Wednesday, January 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.19 5635 Friday, January 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.18 2800 Wednesday, January 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.17 4994 Friday, January 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.16 1924 Wednesday, January 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.15 5667 Wednesday, December 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.14 4087 Wednesday, December 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.13 4554 Friday, December 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.12 1941 Thursday, December 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.11 1711 Wednesday, December 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.10 5311 Friday, December 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.9 1705 Thursday, December 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.8 3113 Wednesday, December 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.7 4711 Friday, December 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.6 2482 Wednesday, December 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.4 6804 Wednesday, November 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.3 4980 Friday, November 20, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.2 2183 Wednesday, November 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.1 4491 Friday, November 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.0 4073 Wednesday, November 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.63 4749 Tuesday, November 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.62 2863 Friday, November 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.61 7151 Friday, October 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.60 4117 Wednesday, October 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.59 7221 Friday, October 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.58 3289 Wednesday, October 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.57 3749 Friday, October 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.56 9059 Friday, October 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.55 5583 Wednesday, October 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.54 4997 Friday, October 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.53 5956 Wednesday, September 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.52 4390 Friday, September 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.51 2432 Thursday, September 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.50 6588 Friday, September 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.49 2988 Wednesday, September 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.48 5273 Friday, September 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.47 3355 Wednesday, September 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.46 3892 Friday, September 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.45 2740 Wednesday, September 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.44 3237 Friday, August 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.43 4826 Wednesday, August 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.42 5763 Friday, August 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.41 3185 Wednesday, August 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.40 3665 Friday, August 14, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.39 3818 Wednesday, August 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.38 4259 Friday, August 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.37 3111 Wednesday, August 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.36 4080 Friday, July 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.35 3027 Wednesday, July 29, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.34 4541 Friday, July 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.33 3388 Wednesday, July 22, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.31 5619 Thursday, July 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.30 7989 Friday, July 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.29 2802 Wednesday, July 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.28 3998 Friday, July 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.27 2846 Wednesday, July 1, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.26 4479 Friday, June 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.25 2939 Wednesday, June 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.24 4441 Friday, June 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.23 2775 Wednesday, June 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.22 5580 Friday, June 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.21 1249 Thursday, June 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.20 1902 Wednesday, June 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.19 3650 Friday, June 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.18 2166 Wednesday, June 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.17 4622 Wednesday, May 27, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.15 3527 Thursday, May 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.14 5680 Friday, May 15, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.13 2555 Wednesday, May 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.12 4039 Friday, May 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.11 3310 Wednesday, May 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.10 6459 Tuesday, April 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.9 3431 Thursday, April 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.8 4812 Friday, April 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.7 6269 Tuesday, April 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.6 5876 Tuesday, March 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.5 5139 Tuesday, March 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.4 5693 Wednesday, March 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.3 5728 Tuesday, March 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.2 4324 Tuesday, March 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.1 5798 Wednesday, February 26, 2020 Approved
AWS Command Line Interface (Install) 1.36.8 1313 Friday, November 22, 2024 Approved
AWS Command Line Interface (Install) 1.34.30 49 Tuesday, October 1, 2024 Approved
AWS Command Line Interface (Install) 1.33.37 45 Tuesday, August 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.102 70 Friday, May 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.100 58 Wednesday, May 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.97 55 Friday, May 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.95 71 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 58 Friday, April 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.89 71 Tuesday, April 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.87 59 Friday, April 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.86 75 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.85 60 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.83 56 Friday, April 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.81 66 Wednesday, April 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.80 65 Tuesday, April 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.76 53 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 54 Friday, March 29, 2024 Approved
AWS Command Line Interface (Install) 1.32.71 65 Wednesday, March 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.70 68 Tuesday, March 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.66 68 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 75 Wednesday, March 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.58 68 Friday, March 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.56 59 Wednesday, March 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.53 67 Friday, March 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.51 57 Wednesday, February 28, 2024 Approved
AWS Command Line Interface (Install) 1.32.50 54 Tuesday, February 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.48 65 Friday, February 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.45 63 Tuesday, February 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.43 51 Friday, February 16, 2024 Approved
AWS Command Line Interface (Install) 1.32.40 61 Tuesday, February 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.38 79 Friday, February 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.36 70 Wednesday, February 7, 2024 Approved
AWS Command Line Interface (Install) 1.32.35 60 Tuesday, February 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.33 62 Friday, February 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.31 60 Wednesday, January 31, 2024 Approved
AWS Command Line Interface (Install) 1.32.30 74 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 57 Friday, January 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.20 53 Wednesday, January 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.19 66 Monday, January 15, 2024 Approved
AWS Command Line Interface (Install) 1.32.17 54 Friday, January 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.15 72 Tuesday, January 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.13 72 Friday, January 5, 2024 Approved
AWS Command Line Interface (Install) 1.32.6 66 Friday, December 22, 2023 Approved
AWS Command Line Interface (Install) 1.32.4 80 Wednesday, December 20, 2023 Approved
AWS Command Line Interface (Install) 1.32.3 70 Tuesday, December 19, 2023 Approved
AWS Command Line Interface (Install) 1.32.1 70 Friday, December 15, 2023 Approved
AWS Command Line Interface (Install) 1.31.13 66 Wednesday, December 13, 2023 Approved
AWS Command Line Interface (Install) 1.31.12 74 Monday, December 11, 2023 Approved
AWS Command Line Interface (Install) 1.31.10 72 Friday, December 8, 2023 Approved
AWS Command Line Interface (Install) 1.31.7 71 Tuesday, December 5, 2023 Approved
AWS Command Line Interface (Install) 1.31.6 79 Saturday, December 2, 2023 Approved
AWS Command Line Interface (Install) 1.30.4 87 Tuesday, November 21, 2023 Approved
AWS Command Line Interface (Install) 1.30.2 73 Friday, November 17, 2023 Approved
AWS Command Line Interface (Install) 1.30.0 76 Wednesday, November 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.83 65 Friday, November 10, 2023 Approved
AWS Command Line Interface (Install) 1.29.82 76 Thursday, November 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.80 76 Wednesday, November 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.79 78 Tuesday, November 7, 2023 Approved
AWS Command Line Interface (Install) 1.29.77 72 Thursday, November 2, 2023 Approved
AWS Command Line Interface (Install) 1.29.75 75 Wednesday, November 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.72 66 Friday, October 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.70 71 Wednesday, October 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.69 70 Tuesday, October 24, 2023 Approved
AWS Command Line Interface (Install) 1.29.67 87 Friday, October 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.65 72 Wednesday, October 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.64 75 Tuesday, October 17, 2023 Approved
AWS Command Line Interface (Install) 1.29.63 82 Friday, October 13, 2023 Approved
AWS Command Line Interface (Install) 1.29.61 62 Friday, October 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.59 67 Wednesday, October 4, 2023 Approved
AWS Command Line Interface (Install) 1.29.57 73 Saturday, September 30, 2023 Approved
AWS Command Line Interface (Install) 1.29.55 69 Wednesday, September 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.54 65 Tuesday, September 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.51 89 Wednesday, September 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.50 77 Tuesday, September 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.48 81 Friday, September 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.45 79 Tuesday, September 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.43 76 Friday, September 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.41 66 Wednesday, September 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.36 336 Tuesday, August 29, 2023 Approved
AWS Command Line Interface (Install) 1.29.34 62 Friday, August 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.32 73 Wednesday, August 23, 2023 Approved
AWS Command Line Interface (Install) 1.29.31 79 Tuesday, August 22, 2023 Approved
AWS Command Line Interface (Install) 1.29.29 91 Friday, August 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.26 79 Tuesday, August 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.24 81 Friday, August 11, 2023 Approved
AWS Command Line Interface (Install) 1.29.22 93 Wednesday, August 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.16 94 Tuesday, August 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.14 75 Friday, July 28, 2023 Approved
AWS Command Line Interface (Install) 1.29.11 78 Wednesday, July 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.5 62 Wednesday, July 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.4 70 Tuesday, July 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.2 153 Wednesday, July 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.0 201 Friday, July 7, 2023 Approved
AWS Command Line Interface (Install) 1.28.0 69 Tuesday, July 4, 2023 Approved
AWS Command Line Interface (Install) 1.27.162 67 Wednesday, June 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.161 80 Tuesday, June 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.159 74 Friday, June 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.157 75 Wednesday, June 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.156 79 Tuesday, June 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.153 70 Wednesday, June 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.152 69 Tuesday, June 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.150 77 Friday, June 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.148 66 Wednesday, June 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.145 79 Friday, June 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.143 72 Wednesday, May 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.141 79 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 68 Tuesday, May 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.135 77 Thursday, May 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.134 83 Tuesday, May 16, 2023 Approved
AWS Command Line Interface (Install) 1.27.133 72 Friday, May 12, 2023 Approved
AWS Command Line Interface (Install) 1.27.131 77 Wednesday, May 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.130 80 Tuesday, May 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.127 64 Friday, May 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.125 75 Wednesday, May 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.124 67 Tuesday, May 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.122 71 Friday, April 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.120 86 Wednesday, April 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.119 71 Tuesday, April 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.113 82 Friday, April 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.110 74 Tuesday, April 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.106 69 Wednesday, April 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.101 86 Wednesday, March 29, 2023 Approved
AWS Command Line Interface (Install) 1.27.100 84 Tuesday, March 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.98 85 Friday, March 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.93 72 Friday, March 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.90 70 Tuesday, March 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.88 90 Friday, March 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.86 65 Wednesday, March 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.85 76 Tuesday, March 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.81 82 Wednesday, March 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.80 69 Tuesday, February 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.78 81 Friday, February 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.75 78 Tuesday, February 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.73 87 Friday, February 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.71 84 Wednesday, February 15, 2023 Approved
AWS Command Line Interface (Install) 1.27.70 80 Tuesday, February 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.68 82 Friday, February 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.66 80 Wednesday, February 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.65 82 Tuesday, February 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.63 87 Friday, February 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.61 82 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 79 Friday, January 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.56 78 Wednesday, January 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.53 88 Friday, January 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.51 81 Wednesday, January 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.49 80 Friday, January 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.47 82 Wednesday, January 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.46 83 Tuesday, January 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.43 81 Thursday, January 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.40 74 Friday, December 30, 2022 Approved
AWS Command Line Interface (Install) 1.27.38 86 Wednesday, December 28, 2022 Approved
AWS Command Line Interface (Install) 1.27.36 76 Friday, December 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.33 79 Tuesday, December 20, 2022 Approved
AWS Command Line Interface (Install) 1.27.31 83 Friday, December 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.29 78 Wednesday, December 14, 2022 Approved
AWS Command Line Interface (Install) 1.27.26 82 Friday, December 9, 2022 Approved
AWS Command Line Interface (Install) 1.27.24 84 Wednesday, December 7, 2022 Approved
AWS Command Line Interface (Install) 1.27.23 76 Tuesday, December 6, 2022 Approved
AWS Command Line Interface (Install) 1.27.15 97 Wednesday, November 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.14 90 Tuesday, November 22, 2022 Approved
AWS Command Line Interface (Install) 1.27.12 76 Friday, November 18, 2022 Approved
AWS Command Line Interface (Install) 1.27.10 85 Wednesday, November 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.9 77 Tuesday, November 15, 2022 Approved
AWS Command Line Interface (Install) 1.27.7 87 Friday, November 11, 2022 Approved
AWS Command Line Interface (Install) 1.27.4 79 Tuesday, November 8, 2022 Approved
AWS Command Line Interface (Install) 1.27.3 92 Saturday, November 5, 2022 Approved
AWS Command Line Interface (Install) 1.27.2 99 Friday, November 4, 2022 Approved
AWS Command Line Interface (Install) 1.27.0 100 Wednesday, November 2, 2022 Approved
AWS Command Line Interface (Install) 1.26.5 92 Tuesday, November 1, 2022 Approved
AWS Command Line Interface (Install) 1.26.3 73 Friday, October 28, 2022 Approved
AWS Command Line Interface (Install) 1.26.1 70 Wednesday, October 26, 2022 Approved
AWS Command Line Interface (Install) 1.26.0 109 Tuesday, October 25, 2022 Approved
AWS Command Line Interface (Install) 1.25.96 78 Friday, October 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.94 89 Wednesday, October 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.93 88 Tuesday, October 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.92 73 Saturday, October 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.89 91 Friday, October 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.87 68 Wednesday, October 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.83 79 Wednesday, September 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.82 84 Tuesday, September 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.78 87 Wednesday, September 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.77 80 Monday, September 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.75 92 Friday, September 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.73 95 Wednesday, September 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.68 90 Wednesday, September 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.66 98 Friday, September 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.64 102 Wednesday, August 31, 2022 Approved
AWS Command Line Interface (Install) 1.25.63 92 Tuesday, August 30, 2022 Approved
AWS Command Line Interface (Install) 1.25.62 73 Saturday, August 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.59 88 Wednesday, August 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.58 97 Tuesday, August 23, 2022 Approved
AWS Command Line Interface (Install) 1.25.56 88 Friday, August 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.55 95 Thursday, August 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.51 95 Saturday, August 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.49 93 Thursday, August 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.48 95 Wednesday, August 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.46 96 Friday, August 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.43 89 Tuesday, August 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.42 91 Monday, August 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.40 96 Friday, July 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.38 86 Wednesday, July 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.37 79 Tuesday, July 26, 2022 Approved
AWS Command Line Interface (Install) 1.25.35 72 Friday, July 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.32 81 Tuesday, July 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.28 85 Wednesday, July 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.25 76 Friday, July 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.23 91 Wednesday, July 6, 2022 Approved
AWS Command Line Interface (Install) 1.25.22 91 Saturday, July 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.21 86 Friday, July 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.19 83 Wednesday, June 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.18 88 Tuesday, June 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.16 87 Friday, June 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.14 86 Wednesday, June 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.13 91 Tuesday, June 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.10 100 Thursday, June 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.9 79 Wednesday, June 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.8 116 Tuesday, June 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.7 95 Saturday, June 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.6 88 Friday, June 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.4 86 Wednesday, June 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.3 95 Tuesday, June 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.2 87 Friday, June 3, 2022 Approved
AWS Command Line Interface (Install) 1.25.0 113 Wednesday, June 1, 2022 Approved
AWS Command Line Interface (Install) 1.24.9 89 Friday, May 27, 2022 Approved
AWS Command Line Interface (Install) 1.24.7 125 Wednesday, May 25, 2022 Approved
AWS Command Line Interface (Install) 1.24.6 109 Tuesday, May 24, 2022 Approved
AWS Command Line Interface (Install) 1.24.4 108 Friday, May 20, 2022 Approved
AWS Command Line Interface (Install) 1.24.2 109 Wednesday, May 18, 2022 Approved
AWS Command Line Interface (Install) 1.24.1 103 Tuesday, May 17, 2022 Approved
AWS Command Line Interface (Install) 1.23.13 99 Friday, May 13, 2022 Approved
AWS Command Line Interface (Install) 1.23.11 103 Wednesday, May 11, 2022 Approved
AWS Command Line Interface (Install) 1.23.6 133 Wednesday, May 4, 2022 Approved
AWS Command Line Interface (Install) 1.23.5 95 Tuesday, May 3, 2022 Approved
AWS Command Line Interface (Install) 1.23.3 90 Thursday, April 28, 2022 Approved
AWS Command Line Interface (Install) 1.23.1 95 Wednesday, April 27, 2022 Approved
AWS Command Line Interface (Install) 1.23.0 137 Tuesday, April 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.101 100 Saturday, April 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.98 90 Wednesday, April 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.96 105 Friday, April 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.94 102 Wednesday, April 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.93 97 Tuesday, April 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.89 115 Wednesday, April 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.88 99 Tuesday, April 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.86 104 Friday, April 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.84 90 Wednesday, March 30, 2022 Approved
AWS Command Line Interface (Install) 1.22.81 95 Friday, March 25, 2022 Approved
AWS Command Line Interface (Install) 1.22.79 90 Wednesday, March 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.78 95 Tuesday, March 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.77 283 Saturday, March 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.74 103 Tuesday, March 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.71 100 Thursday, March 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.69 95 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 98 Thursday, March 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.64 92 Tuesday, March 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.63 95 Saturday, February 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.61 93 Thursday, February 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.59 109 Tuesday, February 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.58 106 Saturday, February 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.56 94 Thursday, February 17, 2022 Approved
AWS Command Line Interface (Install) 1.22.55 98 Tuesday, February 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.54 147 Saturday, February 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.52 111 Thursday, February 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.50 100 Tuesday, February 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.49 89 Saturday, February 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.47 105 Thursday, February 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.46 110 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 118 Monday, January 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.39 119 Thursday, January 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.37 134 Saturday, January 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.34 97 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 108 Saturday, January 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.29 99 Thursday, January 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.25 202 Tuesday, December 21, 2021 Approved
AWS Command Line Interface (Install) 1.22.24 108 Tuesday, December 14, 2021 Approved
AWS Command Line Interface (Install) 1.22.22 114 Thursday, December 9, 2021 Approved
AWS Command Line Interface (Install) 1.22.21 92 Tuesday, December 7, 2021 Approved
AWS Command Line Interface (Install) 1.22.13 124 Thursday, November 25, 2021 Approved
AWS Command Line Interface (Install) 1.22.11 113 Tuesday, November 23, 2021 Approved
AWS Command Line Interface (Install) 1.22.10 96 Saturday, November 20, 2021 Approved
AWS Command Line Interface (Install) 1.22.8 126 Thursday, November 18, 2021 Approved
AWS Command Line Interface (Install) 1.22.6 117 Tuesday, November 16, 2021 Approved
AWS Command Line Interface (Install) 1.22.5 115 Saturday, November 13, 2021 Approved
AWS Command Line Interface (Install) 1.22.3 140 Thursday, November 11, 2021 Approved
AWS Command Line Interface (Install) 1.22.1 110 Tuesday, November 9, 2021 Approved
AWS Command Line Interface (Install) 1.21.12 186 Saturday, November 6, 2021 Approved
AWS Command Line Interface (Install) 1.21.0 113 Thursday, October 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.64 106 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 114 Thursday, October 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.58 233 Saturday, October 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.57 132 Friday, October 8, 2021 Approved
AWS Command Line Interface (Install) 1.20.56 118 Thursday, October 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.54 115 Tuesday, October 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.53 115 Saturday, October 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.51 109 Thursday, September 30, 2021 Approved
AWS Command Line Interface (Install) 1.20.49 122 Tuesday, September 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.48 119 Saturday, September 25, 2021 Approved
AWS Command Line Interface (Install) 1.20.46 111 Thursday, September 23, 2021 Approved
AWS Command Line Interface (Install) 1.20.44 134 Saturday, September 18, 2021 Approved
AWS Command Line Interface (Install) 1.20.40 153 Saturday, September 11, 2021 Approved
AWS Command Line Interface (Install) 1.20.38 121 Thursday, September 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.36 108 Saturday, September 4, 2021 Approved
AWS Command Line Interface (Install) 1.20.34 131 Thursday, September 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.32 119 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 110 Thursday, August 26, 2021 Approved
AWS Command Line Interface (Install) 1.20.27 127 Tuesday, August 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.26 173 Saturday, August 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.24 119 Thursday, August 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.23 143 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.22 99 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.21 126 Saturday, August 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.19 119 Thursday, August 12, 2021 Approved
AWS Command Line Interface (Install) 1.20.17 115 Tuesday, August 10, 2021 Approved
AWS Command Line Interface (Install) 1.20.16 118 Saturday, August 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.15 135 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.14 143 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.12 113 Tuesday, August 3, 2021 Approved
AWS Command Line Interface (Install) 1.20.9 122 Thursday, July 29, 2021 Approved
AWS Command Line Interface (Install) 1.20.7 135 Tuesday, July 27, 2021 Approved
AWS Command Line Interface (Install) 1.20.6 137 Saturday, July 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.4 109 Thursday, July 22, 2021 Approved
AWS Command Line Interface (Install) 1.20.2 121 Monday, July 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.1 130 Saturday, July 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.111 102 Wednesday, July 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.110 121 Tuesday, July 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.109 125 Saturday, July 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.107 107 Thursday, July 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.105 116 Friday, July 2, 2021 Approved
AWS Command Line Interface (Install) 1.19.103 1189 Thursday, July 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.102 129 Tuesday, June 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.101 120 Saturday, June 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.99 138 Thursday, June 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.98 103 Tuesday, June 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.96 118 Thursday, June 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.94 129 Tuesday, June 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.93 122 Saturday, June 12, 2021 Approved
AWS Command Line Interface (Install) 1.19.92 115 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.91 125 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.89 117 Tuesday, June 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.88 116 Saturday, June 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.86 113 Thursday, June 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.84 109 Saturday, May 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.82 119 Thursday, May 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.79 120 Tuesday, May 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.78 117 Saturday, May 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.77 112 Friday, May 21, 2021 Approved
AWS Command Line Interface (Install) 1.19.76 112 Thursday, May 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.75 124 Wednesday, May 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.74 128 Tuesday, May 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.72 117 Friday, May 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.70 120 Tuesday, May 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.69 129 Saturday, May 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.67 138 Thursday, May 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.64 127 Monday, May 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.62 133 Saturday, May 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.60 105 Thursday, April 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.58 118 Tuesday, April 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.57 104 Saturday, April 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.56 113 Friday, April 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.54 120 Tuesday, April 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.52 116 Thursday, April 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.50 102 Tuesday, April 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.49 119 Saturday, April 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.45 134 Tuesday, April 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.44 107 Saturday, April 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.42 106 Thursday, April 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.40 105 Monday, March 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.39 127 Saturday, March 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.37 125 Thursday, March 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.35 138 Wednesday, March 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.34 124 Tuesday, March 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.32 111 Friday, March 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.30 149 Thursday, March 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.29 114 Wednesday, March 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.28 158 Tuesday, March 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.27 131 Saturday, March 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.26 4351 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.25 140 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.23 142 Tuesday, March 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.22 116 Saturday, March 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.21 127 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 149 Wednesday, March 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.17 148 Saturday, February 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.16 138 Friday, February 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.15 122 Thursday, February 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.13 109 Tuesday, February 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.12 127 Saturday, February 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.11 128 Friday, February 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.10 133 Thursday, February 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.8 120 Tuesday, February 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.7 147 Saturday, February 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.4 159 Tuesday, February 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.3 245 Saturday, February 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.1 150 Thursday, February 4, 2021 Approved
AWS Command Line Interface (Install) 1.18.223 138 Saturday, January 30, 2021 Approved
AWS Command Line Interface (Install) 1.18.221 141 Thursday, January 28, 2021 Approved
AWS Command Line Interface (Install) 1.18.220 147 Wednesday, January 27, 2021 Approved
AWS Command Line Interface (Install) 1.18.219 159 Saturday, January 23, 2021 Approved
AWS Command Line Interface (Install) 1.18.216 123 Saturday, January 16, 2021 Approved
AWS Command Line Interface (Install) 1.18.214 156 Thursday, January 14, 2021 Approved
AWS Command Line Interface (Install) 1.18.212 140 Tuesday, January 12, 2021 Approved
AWS Command Line Interface (Install) 1.18.210 138 Thursday, January 7, 2021 Approved
AWS Command Line Interface (Install) 1.18.208 147 Tuesday, January 5, 2021 Approved
AWS Command Line Interface (Install) 1.18.207 126 Friday, January 1, 2021 Approved
AWS Command Line Interface (Install) 1.18.206 135 Thursday, December 31, 2020 Approved
AWS Command Line Interface (Install) 1.18.205 137 Tuesday, December 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.204 120 Monday, December 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.201 132 Tuesday, December 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.200 260 Friday, December 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.197 124 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.196 130 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.195 2160 Saturday, December 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.193 122 Wednesday, December 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.191 122 Tuesday, December 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.190 129 Saturday, December 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.184 144 Tuesday, November 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.183 141 Saturday, November 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.181 152 Thursday, November 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.179 143 Tuesday, November 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.178 153 Saturday, November 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.176 132 Thursday, November 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.174 135 Monday, November 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.173 139 Saturday, November 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.171 207 Thursday, November 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.170 160 Tuesday, November 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.167 157 Thursday, October 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.165 261 Tuesday, October 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.164 171 Saturday, October 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.162 170 Thursday, October 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.160 145 Tuesday, October 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.159 127 Saturday, October 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.157 205 Saturday, October 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.153 144 Tuesday, October 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.152 296 Saturday, October 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.150 147 Thursday, October 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.148 150 Tuesday, September 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.147 180 Saturday, September 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.146 127 Thursday, September 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.144 130 Wednesday, September 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.143 144 Tuesday, September 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.142 138 Saturday, September 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.141 433 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.140 156 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.138 129 Tuesday, September 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.137 143 Saturday, September 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.133 190 Saturday, September 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.131 150 Thursday, September 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.129 153 Tuesday, September 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.128 165 Saturday, August 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.126 200 Thursday, August 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.125 166 Tuesday, August 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.123 176 Thursday, August 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.121 201 Tuesday, August 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.120 158 Saturday, August 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.119 142 Thursday, August 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.116 7206 Monday, August 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.115 169 Saturday, August 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.113 197 Thursday, August 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.111 200 Tuesday, August 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.110 204 Saturday, August 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.108 182 Thursday, July 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.106 197 Tuesday, July 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.105 212 Saturday, July 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.103 236 Thursday, July 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.101 1318 Tuesday, July 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.100 201 Saturday, July 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.96 222 Thursday, July 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.94 254 Tuesday, July 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.92 220 Thursday, July 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.90 227 Tuesday, June 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.89 273 Saturday, June 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.87 230 Thursday, June 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.85 235 Tuesday, June 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.84 261 Saturday, June 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.82 224 Thursday, June 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.80 306 Tuesday, June 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.79 246 Saturday, June 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.75 208 Tuesday, June 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.74 256 Saturday, June 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.72 245 Thursday, June 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.70 239 Tuesday, June 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.69 6631 Friday, May 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.68 255 Thursday, May 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.65 38543 Thursday, May 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.63 213 Wednesday, May 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.62 254 Tuesday, May 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.61 233 Saturday, May 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.57 224 Tuesday, May 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.56 283 Saturday, May 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.54 248 Thursday, May 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.52 239 Tuesday, May 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.51 312 Saturday, May 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.50 201 Friday, May 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.49 230 Thursday, April 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.46 402 Saturday, April 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.43 247 Wednesday, April 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.42 572 Tuesday, April 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.41 230 Friday, April 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.39 248 Thursday, April 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.36 403 Saturday, April 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.35 235 Friday, April 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.34 206 Thursday, April 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.31 258 Saturday, March 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.30 273 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.29 214 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.28 352 Wednesday, March 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.26 275 Saturday, March 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.25 260 Friday, March 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.24 249 Thursday, March 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.22 219 Tuesday, March 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.21 282 Saturday, March 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.20 246 Friday, March 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.19 248 Thursday, March 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.16 204 Saturday, March 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.15 194 Friday, March 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.14 255 Thursday, March 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.11 23589 Saturday, February 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.9 5913 Friday, February 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.6 3787 Tuesday, February 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.5 4446 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.4 1249 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.3 1438 Thursday, February 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.2 1424 Wednesday, February 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.1 1690 Tuesday, February 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.0 2008 Saturday, February 15, 2020 Approved
AWS Command Line Interface (Install) 1.17.17 4247 Friday, February 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.16 3736 Thursday, February 13, 2020 Approved
AWS Command Line Interface (Install) 1.17.15 1581 Wednesday, February 12, 2020 Approved
AWS Command Line Interface (Install) 1.17.13 3076 Saturday, February 8, 2020 Approved
AWS Command Line Interface (Install) 1.17.12 1258 Friday, February 7, 2020 Approved
AWS Command Line Interface (Install) 1.17.11 191 Thursday, February 6, 2020 Approved
AWS Command Line Interface (Install) 1.17.10 211 Wednesday, February 5, 2020 Approved
AWS Command Line Interface (Install) 1.17.9 8309 Saturday, January 25, 2020 Approved
AWS Command Line Interface (Install) 1.17.8 985 Friday, January 24, 2020 Approved
AWS Command Line Interface (Install) 1.17.7 3067 Wednesday, January 22, 2020 Approved
AWS Command Line Interface (Install) 1.17.6 305 Tuesday, January 21, 2020 Approved
AWS Command Line Interface (Install) 1.17.5 2595 Saturday, January 18, 2020 Approved
AWS Command Line Interface (Install) 1.17.4 1248 Friday, January 17, 2020 Approved
AWS Command Line Interface (Install) 1.17.3 1133 Thursday, January 16, 2020 Approved
AWS Command Line Interface (Install) 1.17.2 2059 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.1 1213 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.0 2076 Saturday, January 11, 2020 Approved
AWS Command Line Interface (Install) 1.16.314 1416 Friday, January 10, 2020 Approved
AWS Command Line Interface (Install) 1.16.313 1442 Thursday, January 9, 2020 Approved
AWS Command Line Interface (Install) 1.16.312 1143 Wednesday, January 8, 2020 Approved
AWS Command Line Interface (Install) 1.16.311 1375 Tuesday, January 7, 2020 Approved
AWS Command Line Interface (Install) 1.16.310 214 Friday, January 3, 2020 Approved
AWS Command Line Interface (Install) 1.16.309 1464 Tuesday, December 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.308 5854 Saturday, December 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.307 1097 Friday, December 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.305 2069 Wednesday, December 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.303 2564 Saturday, December 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.302 1208 Friday, December 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.301 1565 Thursday, December 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.300 1323 Wednesday, December 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.299 1570 Tuesday, December 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.298 2582 Friday, December 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.297 1333 Thursday, December 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.296 1384 Wednesday, December 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.294 850 Tuesday, December 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.292 4815 Wednesday, November 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.291 1397 Tuesday, November 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.290 2121 Saturday, November 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.289 1239 Friday, November 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.287 1343 Thursday, November 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.286 1780 Wednesday, November 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.284 1582 Tuesday, November 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.283 2240 Saturday, November 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.282 1298 Friday, November 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.281 1603 Thursday, November 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.280 1546 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 2113 Saturday, November 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.277 2708 Friday, November 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.276 1425 Thursday, November 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.274 1673 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.273 1326 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.272 2119 Saturday, November 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.271 1042 Friday, November 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.270 1530 Thursday, October 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.269 1605 Wednesday, October 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.268 1659 Tuesday, October 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.266 2913 Friday, October 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.265 1840 Thursday, October 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.264 1577 Wednesday, October 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.263 3590 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.262 761 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.261 2396 Thursday, October 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.260 1600 Wednesday, October 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.259 1536 Tuesday, October 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.258 1984 Saturday, October 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.257 1364 Friday, October 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.256 2095 Thursday, October 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.255 1751 Wednesday, October 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.254 1420 Tuesday, October 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.253 2059 Saturday, October 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.252 1550 Friday, October 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.251 2171 Thursday, October 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.250 1665 Wednesday, October 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.249 1700 Tuesday, October 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.248 2410 Saturday, September 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.247 1183 Friday, September 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.246 1872 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.245 1479 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.244 1573 Tuesday, September 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.243 1892 Saturday, September 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.242 1280 Friday, September 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.241 2375 Thursday, September 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.240 1530 Wednesday, September 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.239 1183 Tuesday, September 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.238 7201 Friday, September 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.237 1856 Thursday, September 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.236 1421 Wednesday, September 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.235 1356 Tuesday, September 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.234 1832 Saturday, September 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.233 1254 Friday, September 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.232 1893 Thursday, September 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.231 1304 Wednesday, September 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.230 2544 Saturday, August 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.229 1923 Friday, August 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.228 2857 Thursday, August 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.227 2394 Wednesday, August 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.226 1312 Tuesday, August 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.225 2077 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.224 1120 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.223 1187 Thursday, August 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.222 1269 Wednesday, August 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.221 2624 Tuesday, August 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.220 1903 Saturday, August 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.219 1150 Friday, August 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.218 1226 Thursday, August 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.217 1716 Wednesday, August 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.216 1165 Tuesday, August 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.215 1696 Saturday, August 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.214 1063 Friday, August 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.213 2253 Thursday, August 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.212 579 Wednesday, August 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.211 1747 Tuesday, August 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.210 1699 Saturday, August 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.209 5205 Wednesday, July 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.208 1041 Tuesday, July 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.207 1657 Saturday, July 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.206 1217 Friday, July 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.205 1434 Thursday, July 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.204 1237 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.203 1234 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.202 1182 Monday, July 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.201 872 Saturday, July 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.200 942 Friday, July 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.199 1148 Thursday, July 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.198 3147 Saturday, July 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.197 992 Friday, July 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.196 1064 Thursday, July 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.195 1087 Wednesday, July 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.194 1286 Tuesday, July 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.193 2785 Thursday, July 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.192 1016 Wednesday, July 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.191 1014 Tuesday, July 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.190 1586 Saturday, June 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.189 899 Friday, June 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.188 1017 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 1067 Tuesday, June 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.184 2859 Saturday, June 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.183 1033 Friday, June 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.182 897 Thursday, June 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.181 1396 Wednesday, June 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.180 1495 Tuesday, June 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.179 1727 Saturday, June 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.178 926 Friday, June 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.177 2314 Thursday, June 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.176 1628 Wednesday, June 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.175 1528 Tuesday, June 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.174 1917 Saturday, June 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.173 1093 Friday, June 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.172 1298 Thursday, June 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.171 1313 Wednesday, June 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.170 1456 Tuesday, June 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.169 3009 Friday, May 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.168 1199 Thursday, May 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.167 1096 Wednesday, May 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.166 2358 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 12817 Thursday, May 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.163 1287 Wednesday, May 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.162 1311 Monday, May 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.161 1805 Saturday, May 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.160 1165 Friday, May 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.159 1047 Thursday, May 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.158 1157 Wednesday, May 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.157 1411 Tuesday, May 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.156 1878 Saturday, May 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.155 1710 Thursday, May 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.154 1291 Wednesday, May 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.153 1347 Tuesday, May 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.152 2662 Saturday, May 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.151 1469 Friday, May 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.150 1265 Thursday, May 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.149 1053 Wednesday, May 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.148 1265 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 1253 Friday, April 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.145 1528 Thursday, April 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.144 3004 Saturday, April 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.143 1114 Friday, April 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.142 1072 Thursday, April 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.141 1140 Wednesday, April 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.140 10611 Saturday, April 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.139 1146 Friday, April 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.138 1262 Thursday, April 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.137 796 Wednesday, April 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.136 1504 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 1193 Friday, March 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.133 1729 Thursday, March 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.132 1605 Tuesday, March 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.131 1218 Tuesday, March 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.130 1881 Saturday, March 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.129 982 Friday, March 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.128 1196 Thursday, March 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.127 954 Wednesday, March 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.126 1655 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 1241 Thursday, March 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.123 450 Wednesday, March 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.122 1963 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 1062 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 1201 Wednesday, March 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.117 1594 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 1418 Friday, March 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.114 4713 Thursday, February 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.113 1549 Wednesday, February 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.112 1240 Tuesday, February 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.111 1695 Saturday, February 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.110 983 Friday, February 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.109 1349 Thursday, February 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.108 1246 Wednesday, February 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.107 1260 Tuesday, February 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.106 1950 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 1204 Thursday, February 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.103 892 Wednesday, February 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.102 1292 Tuesday, February 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.101 1543 Saturday, February 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.99 1758 Thursday, February 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.98 1302 Wednesday, February 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.97 1206 Tuesday, February 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.96 5926 Saturday, January 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.94 1781 Thursday, January 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.93 1812 Tuesday, January 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.92 1749 Saturday, January 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.91 1076 Friday, January 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.90 1275 Thursday, January 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.89 1890 Tuesday, January 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.88 1641 Saturday, January 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.87 975 Friday, January 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.86 1004 Thursday, January 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.85 1769 Tuesday, January 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.84 1542 Saturday, January 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.81 5050 Saturday, December 22, 2018 Approved
AWS Command Line Interface (Install) 1.16.80 902 Friday, December 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.79 957 Thursday, December 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.78 1127 Wednesday, December 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.77 955 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 1111 Friday, December 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.74 1235 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 2573 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 1465 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 2224 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 1097 Thursday, November 29, 2018 Approved
AWS Command Line Interface (Install) 1.16.63 1297 Wednesday, November 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.60 4045 Thursday, November 22, 2018 Approved
AWS Command Line Interface (Install) 1.16.59 808 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 2152 Saturday, November 17, 2018 Approved
AWS Command Line Interface (Install) 1.16.56 1268 Friday, November 16, 2018 Approved
AWS Command Line Interface (Install) 1.16.55 1322 Thursday, November 15, 2018 Approved
AWS Command Line Interface (Install) 1.16.54 1293 Wednesday, November 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.53 1456 Tuesday, November 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.52 2011 Saturday, November 10, 2018 Approved
AWS Command Line Interface (Install) 1.16.51 820 Friday, November 9, 2018 Approved
AWS Command Line Interface (Install) 1.16.50 701 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 1834 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 1171 Thursday, November 1, 2018 Approved
AWS Command Line Interface (Install) 1.16.44 1180 Wednesday, October 31, 2018 Approved
AWS Command Line Interface (Install) 1.16.43 2312 Sunday, October 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.42 1559 Friday, October 26, 2018 Approved
AWS Command Line Interface (Install) 1.16.41 1080 Thursday, October 25, 2018 Approved
AWS Command Line Interface (Install) 1.16.40 1148 Wednesday, October 24, 2018 Approved
AWS Command Line Interface (Install) 1.16.39 1041 Tuesday, October 23, 2018 Approved
AWS Command Line Interface (Install) 1.16.38 1176 Sunday, October 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.37 1593 Friday, October 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.36 1100 Thursday, October 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.35 1299 Wednesday, October 17, 2018 Approved
AWS Command Line Interface (Install) 1.16.34 1038 Tuesday, October 16, 2018 Approved
AWS Command Line Interface (Install) 1.16.33 1099 Sunday, October 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.32 1589 Friday, October 12, 2018 Approved
AWS Command Line Interface (Install) 1.16.29 2465 Tuesday, October 9, 2018 Approved
AWS Command Line Interface (Install) 1.16.28 1120 Monday, October 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.27 1594 Friday, October 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.26 1637 Wednesday, October 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.25 1103 Tuesday, October 2, 2018 Approved
AWS Command Line Interface (Install) 1.16.24 1084 Monday, October 1, 2018 Approved
AWS Command Line Interface (Install) 1.16.23 1480 Friday, September 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.22 1023 Thursday, September 27, 2018 Approved
AWS Command Line Interface (Install) 1.16.21 1076 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 1089 Monday, September 24, 2018 Approved
AWS Command Line Interface (Install) 1.16.18 2002 Friday, September 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.17 1348 Thursday, September 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.16 1140 Wednesday, September 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.15 1258 Tuesday, September 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.14 2577 Friday, September 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.13 1205 Thursday, September 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.11 1794 Tuesday, September 11, 2018 Approved
AWS Command Line Interface (Install) 1.16.10 1336 Monday, September 10, 2018 Approved
AWS Command Line Interface (Install) 1.16.9 1788 Friday, September 7, 2018 Approved
AWS Command Line Interface (Install) 1.16.8 1061 Thursday, September 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.7 1106 Wednesday, September 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.6 1840 Monday, September 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.5 1972 Friday, August 31, 2018 Approved
AWS Command Line Interface (Install) 1.16.4 1095 Thursday, August 30, 2018 Approved
AWS Command Line Interface (Install) 1.16.3 747 Wednesday, August 29, 2018 Approved
AWS Command Line Interface (Install) 1.16.2 541 Tuesday, August 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.1 1944 Monday, August 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.85 1668 Friday, August 24, 2018 Approved
AWS Command Line Interface (Install) 1.15.84 1869 Thursday, August 23, 2018 Approved
AWS Command Line Interface (Install) 1.15.83 679 Wednesday, August 22, 2018 Approved
AWS Command Line Interface (Install) 1.15.82 1419 Tuesday, August 21, 2018 Approved
AWS Command Line Interface (Install) 1.15.81 1094 Monday, August 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.80 1639 Friday, August 17, 2018 Approved
AWS Command Line Interface (Install) 1.15.79 989 Thursday, August 16, 2018 Approved
AWS Command Line Interface (Install) 1.15.78 977 Wednesday, August 15, 2018 Approved
AWS Command Line Interface (Install) 1.15.77 907 Tuesday, August 14, 2018 Approved
AWS Command Line Interface (Install) 1.15.76 1003 Monday, August 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.75 1641 Friday, August 10, 2018 Approved
AWS Command Line Interface (Install) 1.15.74 1003 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 1024 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 1008 Thursday, August 2, 2018 Approved
AWS Command Line Interface (Install) 1.15.68 1024 Wednesday, August 1, 2018 Approved
AWS Command Line Interface (Install) 1.15.67 1030 Tuesday, July 31, 2018 Approved
AWS Command Line Interface (Install) 1.15.66 2281 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 1046 Wednesday, July 25, 2018 Approved
AWS Command Line Interface (Install) 1.15.63 2053 Monday, July 23, 2018 Approved
AWS Command Line Interface (Install) 1.15.62 1566 Friday, July 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.61 1124 Thursday, July 19, 2018 Approved
AWS Command Line Interface (Install) 1.15.60 1084 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 1425 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 1035 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 1628 Tuesday, July 3, 2018 Approved
AWS Command Line Interface 1.15.50 961 Monday, July 2, 2018 Approved
AWS Command Line Interface (Install) 1.15.49 1951 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 517 Monday, June 25, 2018 Approved
AWS Command Line Interface (Install) 1.15.44 744 Friday, June 22, 2018 Approved
AWS Command Line Interface (Install) 1.15.42 3072 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 1466 Monday, June 18, 2018 Approved
AWS Command Line Interface (Install) 1.15.39 1480 Friday, June 15, 2018 Approved
AWS Command Line Interface (Install) 1.15.37 1559 Wednesday, June 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.35 1520 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 15405 Friday, April 6, 2018 Approved
AWS Command Line Interface 1.15.1 794 Thursday, April 5, 2018 Approved
AWS Command Line Interface 1.15.0 733 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 337 Tuesday, April 3, 2018 Approved
AWS Command Line Interface 1.14.68 311 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 847 Sunday, February 18, 2018 Approved
AWS Command Line Interface 1.14.40 917 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 1218 Tuesday, February 13, 2018 Approved
AWS Command Line Interface 1.14.36 1177 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 2503 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 3082 Saturday, January 13, 2018 Approved
AWS Command Line Interface 1.14.23 858 Thursday, January 11, 2018 Approved
AWS Command Line Interface 1.14.22 805 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 1502 Wednesday, January 3, 2018 Approved
AWS Command Line Interface 1.14.16 1541 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 1136 Tuesday, December 19, 2017 Approved
AWS Command Line Interface 1.14.11 869 Saturday, December 16, 2017 Approved
AWS Command Line Interface 1.14.10 740 Thursday, December 14, 2017 Approved
AWS Command Line Interface 1.14.9 1014 Tuesday, December 12, 2017 Approved
AWS Command Line Interface 1.14.8 669 Tuesday, December 12, 2017 Approved
AWS Command Line Interface 1.14.7 921 Saturday, December 9, 2017 Approved
AWS Command Line Interface 1.14.6 689 Thursday, December 7, 2017 Approved
AWS Command Line Interface 1.14.5 520 Thursday, December 7, 2017 Approved
AWS Command Line Interface 1.14.3 1152 Monday, December 4, 2017 Approved
AWS Command Line Interface 1.14.2 1080 Thursday, November 30, 2017 Approved
AWS Command Line Interface 1.14.1 579 Thursday, November 30, 2017 Approved
AWS Command Line Interface 1.14.0 476 Wednesday, November 29, 2017 Approved
AWS Command Line Interface 1.13.0 611 Wednesday, November 29, 2017 Approved
AWS Command Line Interface 1.12.2 979 Monday, November 27, 2017 Approved
AWS Command Line Interface 1.12.1 962 Thursday, November 23, 2017 Approved
AWS Command Line Interface 1.12.0 616 Wednesday, November 22, 2017 Approved
AWS Command Line Interface 1.11.190 755 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 682 Friday, November 17, 2017 Approved
AWS Command Line Interface 1.11.187 673 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 823 Thursday, November 9, 2017 Approved
AWS Command Line Interface 1.11.183 719 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 677 Friday, November 3, 2017 Approved
AWS Command Line Interface 1.11.179 687 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 872 Wednesday, October 25, 2017 Approved
AWS Command Line Interface 1.11.176 707 Tuesday, October 24, 2017 Approved
AWS Command Line Interface 1.11.175 917 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 699 Wednesday, October 18, 2017 Approved
AWS Command Line Interface 1.11.172 815 Tuesday, October 17, 2017 Approved
AWS Command Line Interface 1.11.171 765 Monday, October 16, 2017 Approved
AWS Command Line Interface 1.11.170 1106 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 624 Thursday, October 5, 2017 Approved
AWS Command Line Interface 1.11.165 623 Thursday, October 5, 2017 Approved
AWS Command Line Interface 1.11.164 748 Tuesday, October 3, 2017 Approved
AWS Command Line Interface 1.11.163 714 Monday, October 2, 2017 Approved
AWS Command Line Interface 1.11.162 798 Saturday, September 30, 2017 Approved
AWS Command Line Interface 1.11.160 1922 Tuesday, September 26, 2017 Approved
AWS Command Line Interface 1.11.159 15539 Monday, September 25, 2017 Approved
AWS Command Line Interface 1.11.158 1435 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 1012 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 1036 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 799 Tuesday, September 12, 2017 Approved
AWS Command Line Interface 1.11.150 762 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 1761 Saturday, September 2, 2017 Approved
AWS Command Line Interface 1.11.144 13670 Friday, September 1, 2017 Approved
AWS Command Line Interface 1.11.143 759 Thursday, August 31, 2017 Approved
AWS Command Line Interface 1.11.142 987 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 1184 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 4230 Saturday, August 12, 2017 Approved
AWS Command Line Interface 1.11.132 1062 Friday, August 11, 2017 Approved
AWS Command Line Interface 1.11.131 1260 Wednesday, August 9, 2017 Approved
AWS Command Line Interface 1.11.129 7126 Wednesday, August 2, 2017 Approved
AWS Command Line Interface 1.11.128 1179 Tuesday, August 1, 2017 Approved
AWS Command Line Interface 1.11.127 2251 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 644 Wednesday, July 26, 2017 Approved
AWS Command Line Interface 1.11.124 1739 Monday, July 24, 2017 Approved
AWS Command Line Interface 1.11.123 2259 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 1587 Tuesday, July 18, 2017 Approved
AWS Command Line Interface 1.11.120 2105 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 8492 Friday, June 30, 2017 Approved
AWS Command Line Interface 1.11.114 1339 Thursday, June 29, 2017 Approved
AWS Command Line Interface 1.11.113 1297 Wednesday, June 28, 2017 Approved
AWS Command Line Interface 1.11.112 3460 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 1304 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 1590 Sunday, June 18, 2017 Approved
AWS Command Line Interface 1.11.101 7242 Thursday, June 8, 2017 Approved
AWS Command Line Interface 1.11.100 1518 Wednesday, June 7, 2017 Approved
AWS Command Line Interface 1.11.99 678 Wednesday, June 7, 2017 Approved
AWS Command Line Interface 1.11.98 813 Monday, June 5, 2017 Approved
AWS Command Line Interface 1.11.97 3144 Saturday, June 3, 2017 Approved
AWS Command Line Interface 1.11.96 1226 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 4717 Wednesday, May 24, 2017 Approved
AWS Command Line Interface 1.11.90 764 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 1049 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 1189 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 3951 Friday, May 5, 2017 Approved
AWS Command Line Interface 1.11.82 3642 Saturday, April 29, 2017 Approved
AWS Command Line Interface 1.11.81 1900 Wednesday, April 26, 2017 Approved
AWS Command Line Interface 1.11.80 1452 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 1505 Tuesday, April 18, 2017 Approved
AWS Command Line Interface 1.11.76 7991 Tuesday, April 11, 2017 Approved
AWS Command Line Interface 1.11.75 1480 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 728 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 624 Friday, March 31, 2017 Approved
AWS Command Line Interface 1.11.68 1101 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 1045 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 719 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 893 Friday, March 10, 2017 Approved
AWS Command Line Interface 1.11.60 779 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 784 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 42661 Sunday, February 19, 2017 Approved
AWS Command Line Interface 1.11.50 812 Friday, February 17, 2017 Approved
AWS Command Line Interface 1.11.49 804 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 744 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 549 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 726 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 671 Wednesday, December 21, 2016 Approved
AWS Command Line Interface 1.11.31 746 Tuesday, December 20, 2016 Approved
AWS Command Line Interface 1.11.30 894 Friday, December 16, 2016 Approved
AWS Command Line Interface 1.11.24 1980 Saturday, December 3, 2016 Approved
AWS Command Line Interface 1.11.22 1519 Wednesday, November 30, 2016 Approved
AWS Command Line Interface 1.10.38 10472 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 443 Friday, May 27, 2016 Approved
AWS Command Line Interface 1.10.30 463 Wednesday, May 18, 2016 Approved
AWS Command Line Interface 1.10.27 503 Wednesday, May 11, 2016 Approved
AWS Command Line Interface 1.10.26 463 Friday, May 6, 2016 Approved
AWS Command Line Interface 1.10.25 439 Wednesday, May 4, 2016 Approved
AWS Command Line Interface 1.10.24 487 Friday, April 29, 2016 Approved
AWS Command Line Interface 1.10.23 559 Thursday, April 28, 2016 Approved
AWS Command Line Interface 1.10.22 665 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 578 Monday, April 11, 2016 Approved
AWS Command Line Interface 1.10.16 859 Friday, March 25, 2016 Approved
AWS Command Line Interface 1.10.15 589 Wednesday, March 23, 2016 Approved
AWS Command Line Interface 1.10.14 572 Friday, March 18, 2016 Approved
AWS Command Line Interface 1.10.13 507 Wednesday, March 16, 2016 Approved
AWS Command Line Interface 1.10.12 586 Friday, March 11, 2016 Approved
AWS Command Line Interface 1.10.11 577 Wednesday, March 9, 2016 Approved
AWS Command Line Interface 1.10.10 583 Friday, March 4, 2016 Approved
AWS Command Line Interface 1.10.9 568 Wednesday, March 2, 2016 Approved
AWS Command Line Interface 1.10.8 544 Monday, February 29, 2016 Approved
AWS Command Line Interface 1.10.7 665 Wednesday, February 24, 2016 Approved
awscli 1.0.4 13420 Saturday, February 22, 2014 Approved
awscli 1.0.3 606 Saturday, December 7, 2013 Approved
awscli 1.0.2 529 Saturday, December 7, 2013 Approved
awscli 1.0.1 734 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