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:

4,780,966

Downloads of v 1.29.72:

32

Last Update:

27 Oct 2023

Package Maintainer(s):

Software Author(s):

  • Amazon Web Services

Tags:

awscli aws cli foss cloud amazon web services s3 admin

AWS Command Line Interface (Install)

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

  • 1
  • 2
  • 3

1.29.72 | Updated: 27 Oct 2023

Downloads:

4,780,966

Downloads of v 1.29.72:

32

Maintainer(s):

Software Author(s):

  • Amazon Web Services

AWS Command Line Interface (Install) 1.29.72

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

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

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

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

>

Deployment Method:

NOTE

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

1. Enter Your Internal Repository Url

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


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

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

3. Copy Your Script

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

See options you can pass to upgrade.

See best practices for scripting.

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

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


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

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

Exit $exitCode

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

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


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

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


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

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


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

WARNING

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

Package Approved

This package was approved as a trusted package on 27 Oct 2023.

Description

The AWS CLI is an open source tool built on top of the AWS SDK for Python (Boto) that provides commands for interacting with AWS services. With minimal configuration, you can start using all of the functionality provided by the AWS Management Console from your favorite terminal program.

  • Linux shells – Use common shell programs such as Bash, Zsh, and tsch to run commands in Linux, macOS, or Unix.

  • Windows command line – On Microsoft Windows, run commands in either PowerShell or the Windows Command Processor.

  • Remotely – Run commands on Amazon EC2 instances through a remote terminal such as PuTTY or SSH, or with Amazon EC2 systems manager.

The AWS CLI provides direct access to AWS services' public APIs. Explore a service's capabilities with the AWS CLI, and develop shell scripts to manage your resources. Or take what you've learned to develop programs in other languages with the AWS SDK.

In addition to the low level, API equivalent commands, the AWS CLI also provides customizations for several services. Customizations are higher level commands that simplify using a service with a complex API. For example, the aws s3 set of commands provide a familiar syntax for managing files in Amazon S3.


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

$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  softwareName  = 'AWS Command Line Interface*'
  fileType      = 'MSI'
  silentArgs    = "/qn /norestart"
  validExitCodes= @(0, 3010, 1605, 1614, 1641)
}

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']

if ($key.Count -eq 1) {
  $key | % { 
    $packageArgs['file'] = "$($_.UninstallString)"
    if ($packageArgs['fileType'] -eq 'MSI') {
      $packageArgs['silentArgs'] = "$($_.PSChildName) $($packageArgs['silentArgs'])"
      
      $packageArgs['file'] = ''
    }

    Uninstall-ChocolateyPackage @packageArgs
  }
} elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
  Write-Warning "$($key.Count) matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | % {Write-Warning "- $($_.DisplayName)"}
}
tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url        = 'https://s3.amazonaws.com/aws-cli/AWSCLI32PY3-1.29.72.msi'
$checksum   = '30ffcc8be4f50e74f7189d2083d5c064b61361c2bddda44c749451efdd99e35f'
$url64      = 'https://s3.amazonaws.com/aws-cli/AWSCLI64PY3-1.29.72.msi'
$checksum64 = '1578a7f0cf0741cbb0117927e1fbd784a2dc0ca42e36c39803e1c51c302d038c'
 
$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  unzipLocation = $toolsDir
  fileType      = 'MSI'
  url           = $url
  url64bit      = $url64
  softwareName  = 'AWS Command Line Interface*'
  checksum      = $checksum
  checksumType  = 'sha256'
  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.17.65 2490 Friday, October 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.64 3614 Thursday, October 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.63 2629 Wednesday, October 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.61 11167 Saturday, September 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.60 7 Friday, September 27, 2024
Waiting for Maintainer
AWS Command Line Interface v2 (Install) 2.17.59 5565 Thursday, September 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.58 3668 Wednesday, September 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.57 3874 Tuesday, September 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.56 7816 Saturday, September 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.55 2860 Friday, September 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.54 3591 Thursday, September 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.53 3626 Wednesday, September 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.52 3728 Tuesday, September 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.51 8008 Saturday, September 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.50 3062 Friday, September 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.49 3490 Thursday, September 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.48 4251 Wednesday, September 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.47 6083 Monday, September 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.46 4014 Saturday, September 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.45 199 Friday, September 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.44 3200 Thursday, September 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.43 7331 Wednesday, September 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.42 9203 Saturday, August 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.40 4479 Thursday, August 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.39 3597 Wednesday, August 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.38 3524 Tuesday, August 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.37 7381 Saturday, August 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.36 2887 Friday, August 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.35 3158 Thursday, August 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.34 3763 Wednesday, August 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.33 3373 Tuesday, August 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.32 6757 Saturday, August 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.31 2439 Friday, August 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.30 2764 Thursday, August 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.29 4353 Wednesday, August 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.28 3117 Tuesday, August 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.27 5301 Saturday, August 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.26 3052 Friday, August 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.25 3096 Thursday, August 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.24 2543 Wednesday, August 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.23 3972 Tuesday, August 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.22 5997 Saturday, August 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.21 2793 Friday, August 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.20 5422 Wednesday, July 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.19 2379 Tuesday, July 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.18 7146 Friday, July 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.16 5405 Wednesday, July 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.15 3246 Tuesday, July 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.14 8507 Friday, July 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.13 12313 Saturday, July 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.12 4041 Thursday, July 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.11 3640 Wednesday, July 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.10 3808 Tuesday, July 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.9 7868 Saturday, July 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.8 4689 Thursday, July 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.7 4135 Wednesday, July 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.6 3384 Tuesday, July 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.5 7451 Saturday, June 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.4 1873 Friday, June 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.3 58 Thursday, June 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.2 6228 Wednesday, June 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.1 4508 Tuesday, June 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.0 9348 Friday, June 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.12 4090 Thursday, June 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.11 2683 Wednesday, June 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.10 4734 Tuesday, June 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.9 8009 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.8 1902 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.7 4365 Thursday, June 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.6 3885 Wednesday, June 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.5 4464 Tuesday, June 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.4 7356 Saturday, June 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.3 1667 Friday, June 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.2 4836 Thursday, June 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.1 3507 Wednesday, June 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.0 3213 Tuesday, June 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.62 6023 Saturday, June 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.61 3013 Friday, May 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.60 5224 Thursday, May 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.59 3886 Wednesday, May 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.58 10889 Saturday, May 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.57 3455 Friday, May 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.56 3107 Thursday, May 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.55 4389 Wednesday, May 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.54 2754 Tuesday, May 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.53 6181 Saturday, May 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.52 2516 Friday, May 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.51 3563 Thursday, May 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.50 2985 Wednesday, May 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.49 3009 Tuesday, May 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.48 7395 Saturday, May 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.47 3727 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.46 1005 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.45 6649 Tuesday, May 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.44 13121 Saturday, May 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.43 4569 Thursday, May 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.42 10580 Saturday, April 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.41 5063 Thursday, April 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.40 10093 Saturday, April 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.39 4454 Thursday, April 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.38 10722 Saturday, April 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.37 4282 Thursday, April 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.36 10046 Saturday, April 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.35 4483 Thursday, April 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.34 12108 Saturday, March 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.33 5024 Thursday, March 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.32 11286 Saturday, March 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.31 6465 Thursday, March 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.30 12762 Saturday, March 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.28 10894 Tuesday, March 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.27 7009 Saturday, March 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.26 6719 Thursday, March 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.25 21954 Saturday, March 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.24 8418 Thursday, February 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.23 15538 Saturday, February 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.22 8325 Thursday, February 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.21 12836 Saturday, February 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.20 7097 Thursday, February 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.19 16609 Saturday, February 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.17 20700 Saturday, February 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.16 6668 Thursday, February 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.15 14893 Saturday, January 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.14 7081 Thursday, January 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.13 8653 Tuesday, January 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.12 8900 Saturday, January 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.11 8022 Thursday, January 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.10 13552 Saturday, January 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.9 7077 Thursday, January 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.8 12378 Saturday, January 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.7 6325 Thursday, January 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.6 10116 Saturday, December 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.5 4996 Thursday, December 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.4 8661 Saturday, December 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.3 6460 Thursday, December 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.2 11610 Saturday, December 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.1 5113 Thursday, December 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.0 15726 Saturday, December 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.6 8639 Thursday, December 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.5 15043 Friday, December 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.2 6371 Wednesday, November 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.0 7071 Tuesday, November 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.38 14228 Wednesday, November 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.37 14495 Saturday, November 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.36 5229 Thursday, November 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.35 8350 Tuesday, November 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.34 9103 Saturday, November 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.32 15371 Saturday, November 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.31 6343 Thursday, November 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.30 13041 Saturday, October 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.29 6241 Thursday, October 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.28 13402 Saturday, October 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.27 7969 Thursday, October 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.26 13424 Saturday, October 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.25 15805 Saturday, October 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.24 6393 Thursday, October 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.23 7942 Tuesday, October 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.21 130 Saturday, September 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.20 24642 Thursday, September 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.19 12558 Saturday, September 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.18 7078 Thursday, September 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.16 17729 Thursday, September 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.15 12122 Saturday, September 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.14 8480 Thursday, August 31, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.13 13328 Saturday, August 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.12 7020 Thursday, August 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.11 1640 Saturday, August 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.9 27461 Saturday, August 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.8 7244 Thursday, August 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.7 12954 Saturday, August 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.6 7581 Thursday, August 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.5 75 Saturday, July 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.4 15799 Thursday, July 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.3 14445 Saturday, July 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.2 14360 Thursday, July 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.1 23106 Friday, July 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.0 27728 Saturday, July 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.7 11014 Thursday, July 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.6 17567 Saturday, July 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.5 7345 Friday, June 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.4 8109 Thursday, June 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.3 17481 Saturday, June 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.2 10877 Thursday, June 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.1 18153 Saturday, June 17, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.0 11899 Thursday, June 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.27 13189 Saturday, June 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.26 6975 Thursday, June 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.25 12519 Saturday, June 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.24 7219 Thursday, June 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.23 12689 Saturday, May 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.22 7816 Thursday, May 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.21 13217 Saturday, May 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.20 25191 Saturday, May 13, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.19 9786 Thursday, May 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.17 17160 Thursday, May 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.16 16301 Saturday, April 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.13 24498 Saturday, April 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.11 21915 Monday, April 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.10 9166 Thursday, April 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.9 8727 Tuesday, April 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.8 9245 Saturday, April 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.6 17672 Saturday, March 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.5 6838 Thursday, March 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.4 17291 Saturday, March 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.2 17668 Saturday, March 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.1 7545 Thursday, March 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.0 14294 Friday, March 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.4 5936 Thursday, March 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.3 11602 Saturday, February 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.2 8208 Thursday, February 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.1 12520 Saturday, February 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.23 17721 Saturday, February 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.22 7346 Thursday, February 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.21 11285 Monday, February 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.20 11434 Thursday, February 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.19 11411 Monday, January 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.18 11733 Thursday, January 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.17 13374 Saturday, January 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.16 8628 Thursday, January 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.15 12811 Saturday, January 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.14 7497 Thursday, January 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.13 15781 Friday, January 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.12 14429 Saturday, December 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.11 6995 Thursday, December 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.10 11188 Friday, December 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.9 7481 Thursday, December 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.8 12843 Saturday, December 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.7 8496 Thursday, December 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.6 13921 Saturday, December 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.5 7413 Thursday, December 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.4 12286 Saturday, December 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.3 6350 Thursday, December 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.2 5428 Wednesday, November 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.1 13476 Thursday, November 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.0 15934 Saturday, November 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.13 6779 Thursday, November 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.12 9591 Saturday, November 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.11 11548 Thursday, November 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.9 13223 Saturday, November 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.8 7483 Thursday, November 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.7 15716 Friday, October 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.6 7382 Thursday, October 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.5 10772 Saturday, October 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.3 17756 Friday, October 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.2 15559 Saturday, October 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.1 6581 Thursday, October 6, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.0 10799 Saturday, October 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.35 13639 Saturday, September 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.34 6708 Thursday, September 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.33 11587 Saturday, September 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.32 6912 Thursday, September 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.31 14062 Saturday, September 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.30 7643 Thursday, September 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.29 13876 Monday, September 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.28 19849 Thursday, September 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.26 23178 Thursday, August 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.25 16550 Saturday, August 20, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.24 11588 Wednesday, August 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.22 15275 Friday, August 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.21 32568 Thursday, August 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.20 16088 Saturday, July 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.19 7914 Thursday, July 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.18 14022 Saturday, July 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.17 8190 Thursday, July 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.16 13979 Saturday, July 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.15 7253 Thursday, July 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.14 13306 Saturday, July 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.13 6224 Thursday, July 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.11 27745 Saturday, June 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.9 18276 Saturday, June 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.8 4856 Friday, June 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.7 21283 Thursday, June 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.6 11568 Saturday, June 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.5 6938 Thursday, June 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.4 11539 Friday, May 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.3 6109 Thursday, May 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.2 12290 Saturday, May 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.1 7903 Wednesday, May 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.0 11201 Saturday, May 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.4 6810 Wednesday, May 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.3 8201 Sunday, May 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.2 6860 Thursday, May 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.1 9347 Friday, April 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.0 5253 Thursday, April 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.8 10716 Friday, April 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.7 3694 Thursday, April 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.6 10522 Saturday, April 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.4 11230 Saturday, April 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.3 5801 Thursday, April 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.2 8569 Saturday, April 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.1 5826 Thursday, March 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.0 6688 Monday, March 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.29 8191 Saturday, March 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.28 5485 Thursday, March 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.27 10407 Friday, March 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.25 12163 Friday, March 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.24 5925 Wednesday, March 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.23 8735 Friday, March 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.22 6018 Wednesday, March 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.21 22680 Friday, February 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.20 6040 Wednesday, February 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.19 8076 Friday, February 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.18 10513 Friday, February 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.17 6742 Wednesday, February 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.16 8276 Friday, February 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.15 10523 Friday, January 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.13 10793 Friday, January 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.12 14750 Wednesday, January 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.11 6727 Friday, January 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.10 4127 Wednesday, January 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.9 6789 Friday, January 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.7 13167 Wednesday, December 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.6 16730 Friday, December 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.5 8463 Saturday, December 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.4 2604 Friday, December 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.3 4952 Tuesday, November 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.2 6561 Saturday, November 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.1 6038 Wednesday, November 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.0 6775 Friday, November 19, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.7 5173 Wednesday, November 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.6 7348 Friday, November 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.5 5077 Wednesday, November 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.4 6878 Friday, November 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.0 16177 Friday, October 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.47 4820 Wednesday, October 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.46 6629 Friday, October 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.45 5701 Tuesday, October 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.43 12436 Friday, October 1, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.42 5046 Wednesday, September 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.41 6510 Friday, September 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.40 3945 Wednesday, September 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.39 6038 Friday, September 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.38 4386 Wednesday, September 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.37 7448 Friday, September 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.36 4117 Wednesday, September 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.35 5736 Friday, September 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.33 7936 Friday, August 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.32 3598 Wednesday, August 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.31 6376 Friday, August 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.30 4137 Wednesday, August 18, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.29 5754 Friday, August 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.28 3818 Wednesday, August 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.27 6357 Friday, August 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.26 3294 Wednesday, August 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.25 7432 Saturday, July 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.24 2002 Friday, July 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.23 2357 Wednesday, July 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.22 6893 Friday, July 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.21 4485 Wednesday, July 21, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.20 5149 Friday, July 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.19 3324 Thursday, July 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.18 7028 Friday, July 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.17 3854 Wednesday, July 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.16 6993 Friday, July 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.15 5945 Wednesday, June 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.14 5430 Friday, June 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.13 7770 Thursday, June 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.12 6058 Wednesday, June 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.11 5547 Friday, June 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.10 4702 Wednesday, June 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.9 5943 Friday, June 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.8 3355 Wednesday, June 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.7 6420 Friday, May 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.6 4344 Wednesday, May 26, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.5 13287 Saturday, May 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.4 5543 Wednesday, May 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.3 5732 Friday, May 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.2 3918 Wednesday, May 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.1 4999 Friday, April 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.0 3106 Wednesday, April 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.39 98 Thursday, April 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.38 12338 Friday, April 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.37 4046 Wednesday, April 14, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.36 5625 Friday, April 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.35 398 Wednesday, April 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.34 9225 Friday, April 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.33 3504 Wednesday, March 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.32 541 Tuesday, March 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.29 53030 Tuesday, March 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.28 18492 Tuesday, February 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.27 33389 Wednesday, February 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.26 5905 Friday, February 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.25 3063 Wednesday, February 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.24 6730 Friday, February 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.23 3511 Wednesday, February 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.22 9911 Friday, January 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.21 7657 Friday, January 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.20 4318 Wednesday, January 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.19 5598 Friday, January 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.18 2755 Wednesday, January 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.17 4957 Friday, January 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.16 1888 Wednesday, January 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.15 5606 Wednesday, December 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.14 4054 Wednesday, December 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.13 4522 Friday, December 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.12 1903 Thursday, December 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.11 1679 Wednesday, December 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.10 5265 Friday, December 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.9 1667 Thursday, December 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.8 3083 Wednesday, December 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.7 4666 Friday, December 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.6 2445 Wednesday, December 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.4 6771 Wednesday, November 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.3 4615 Friday, November 20, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.2 2156 Wednesday, November 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.1 4430 Friday, November 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.0 4026 Wednesday, November 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.63 4702 Tuesday, November 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.62 2839 Friday, November 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.61 7111 Friday, October 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.60 4048 Wednesday, October 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.59 7191 Friday, October 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.58 3247 Wednesday, October 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.57 3703 Friday, October 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.56 9022 Friday, October 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.55 5548 Wednesday, October 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.54 4962 Friday, October 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.53 5886 Wednesday, September 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.52 4347 Friday, September 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.51 2383 Thursday, September 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.50 6547 Friday, September 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.49 2948 Wednesday, September 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.48 5224 Friday, September 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.47 3309 Wednesday, September 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.46 3857 Friday, September 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.45 2703 Wednesday, September 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.44 3202 Friday, August 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.43 4789 Wednesday, August 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.42 5724 Friday, August 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.41 3147 Wednesday, August 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.40 3626 Friday, August 14, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.39 3783 Wednesday, August 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.38 4225 Friday, August 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.37 3077 Wednesday, August 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.36 4025 Friday, July 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.35 2992 Wednesday, July 29, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.34 4501 Friday, July 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.33 3351 Wednesday, July 22, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.31 5566 Thursday, July 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.30 7952 Friday, July 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.29 2767 Wednesday, July 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.28 3957 Friday, July 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.27 2812 Wednesday, July 1, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.26 4391 Friday, June 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.25 2906 Wednesday, June 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.24 4401 Friday, June 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.23 2736 Wednesday, June 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.22 5526 Friday, June 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.21 1224 Thursday, June 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.20 1858 Wednesday, June 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.19 3624 Friday, June 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.18 2129 Wednesday, June 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.17 4587 Wednesday, May 27, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.15 3489 Thursday, May 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.14 5629 Friday, May 15, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.13 2526 Wednesday, May 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.12 4013 Friday, May 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.11 3244 Wednesday, May 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.10 6403 Tuesday, April 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.9 3397 Thursday, April 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.8 4747 Friday, April 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.7 6219 Tuesday, April 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.6 5822 Tuesday, March 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.5 5109 Tuesday, March 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.4 5376 Wednesday, March 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.3 5686 Tuesday, March 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.2 4299 Tuesday, March 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.1 5750 Wednesday, February 26, 2020 Approved
AWS Command Line Interface (Install) 1.34.30 8 Tuesday, October 1, 2024 Approved
AWS Command Line Interface (Install) 1.33.37 19 Tuesday, August 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.102 37 Friday, May 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.100 25 Wednesday, May 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.97 19 Friday, May 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.95 33 Wednesday, May 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.94 26 Tuesday, April 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.92 28 Friday, April 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.89 31 Tuesday, April 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.87 23 Friday, April 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.86 23 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.85 23 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.83 20 Friday, April 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.81 21 Wednesday, April 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.80 25 Tuesday, April 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.76 28 Wednesday, April 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.75 24 Tuesday, April 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.73 23 Friday, March 29, 2024 Approved
AWS Command Line Interface (Install) 1.32.71 27 Wednesday, March 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.70 32 Tuesday, March 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.66 27 Wednesday, March 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.65 38 Tuesday, March 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.61 36 Wednesday, March 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.58 24 Friday, March 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.56 26 Wednesday, March 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.53 25 Friday, March 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.51 24 Wednesday, February 28, 2024 Approved
AWS Command Line Interface (Install) 1.32.50 25 Tuesday, February 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.48 26 Friday, February 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.45 30 Tuesday, February 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.43 26 Friday, February 16, 2024 Approved
AWS Command Line Interface (Install) 1.32.40 28 Tuesday, February 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.38 33 Friday, February 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.36 36 Wednesday, February 7, 2024 Approved
AWS Command Line Interface (Install) 1.32.35 25 Tuesday, February 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.33 29 Friday, February 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.31 25 Wednesday, January 31, 2024 Approved
AWS Command Line Interface (Install) 1.32.30 35 Tuesday, January 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.28 31 Friday, January 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.22 30 Friday, January 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.20 30 Wednesday, January 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.19 35 Monday, January 15, 2024 Approved
AWS Command Line Interface (Install) 1.32.17 24 Friday, January 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.15 29 Tuesday, January 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.13 35 Friday, January 5, 2024 Approved
AWS Command Line Interface (Install) 1.32.6 29 Friday, December 22, 2023 Approved
AWS Command Line Interface (Install) 1.32.4 31 Wednesday, December 20, 2023 Approved
AWS Command Line Interface (Install) 1.32.3 31 Tuesday, December 19, 2023 Approved
AWS Command Line Interface (Install) 1.32.1 32 Friday, December 15, 2023 Approved
AWS Command Line Interface (Install) 1.31.13 30 Wednesday, December 13, 2023 Approved
AWS Command Line Interface (Install) 1.31.12 29 Monday, December 11, 2023 Approved
AWS Command Line Interface (Install) 1.31.10 31 Friday, December 8, 2023 Approved
AWS Command Line Interface (Install) 1.31.7 25 Tuesday, December 5, 2023 Approved
AWS Command Line Interface (Install) 1.31.6 34 Saturday, December 2, 2023 Approved
AWS Command Line Interface (Install) 1.30.4 37 Tuesday, November 21, 2023 Approved
AWS Command Line Interface (Install) 1.30.2 34 Friday, November 17, 2023 Approved
AWS Command Line Interface (Install) 1.30.0 38 Wednesday, November 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.83 34 Friday, November 10, 2023 Approved
AWS Command Line Interface (Install) 1.29.82 40 Thursday, November 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.80 36 Wednesday, November 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.79 37 Tuesday, November 7, 2023 Approved
AWS Command Line Interface (Install) 1.29.77 44 Thursday, November 2, 2023 Approved
AWS Command Line Interface (Install) 1.29.75 32 Wednesday, November 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.72 32 Friday, October 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.70 36 Wednesday, October 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.69 37 Tuesday, October 24, 2023 Approved
AWS Command Line Interface (Install) 1.29.67 49 Friday, October 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.65 35 Wednesday, October 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.64 40 Tuesday, October 17, 2023 Approved
AWS Command Line Interface (Install) 1.29.63 42 Friday, October 13, 2023 Approved
AWS Command Line Interface (Install) 1.29.61 28 Friday, October 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.59 41 Wednesday, October 4, 2023 Approved
AWS Command Line Interface (Install) 1.29.57 33 Saturday, September 30, 2023 Approved
AWS Command Line Interface (Install) 1.29.55 33 Wednesday, September 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.54 32 Tuesday, September 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.51 45 Wednesday, September 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.50 39 Tuesday, September 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.48 40 Friday, September 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.45 40 Tuesday, September 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.43 42 Friday, September 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.41 43 Wednesday, September 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.36 248 Tuesday, August 29, 2023 Approved
AWS Command Line Interface (Install) 1.29.34 36 Friday, August 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.32 36 Wednesday, August 23, 2023 Approved
AWS Command Line Interface (Install) 1.29.31 45 Tuesday, August 22, 2023 Approved
AWS Command Line Interface (Install) 1.29.29 46 Friday, August 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.26 45 Tuesday, August 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.24 46 Friday, August 11, 2023 Approved
AWS Command Line Interface (Install) 1.29.22 56 Wednesday, August 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.16 49 Tuesday, August 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.14 44 Friday, July 28, 2023 Approved
AWS Command Line Interface (Install) 1.29.11 47 Wednesday, July 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.5 35 Wednesday, July 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.4 33 Tuesday, July 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.2 72 Wednesday, July 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.0 164 Friday, July 7, 2023 Approved
AWS Command Line Interface (Install) 1.28.0 44 Tuesday, July 4, 2023 Approved
AWS Command Line Interface (Install) 1.27.162 40 Wednesday, June 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.161 37 Tuesday, June 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.159 35 Friday, June 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.157 37 Wednesday, June 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.156 38 Tuesday, June 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.153 37 Wednesday, June 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.152 35 Tuesday, June 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.150 38 Friday, June 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.148 37 Wednesday, June 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.145 36 Friday, June 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.143 38 Wednesday, May 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.141 40 Friday, May 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.139 38 Wednesday, May 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.138 33 Tuesday, May 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.135 40 Thursday, May 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.134 50 Tuesday, May 16, 2023 Approved
AWS Command Line Interface (Install) 1.27.133 40 Friday, May 12, 2023 Approved
AWS Command Line Interface (Install) 1.27.131 41 Wednesday, May 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.130 47 Tuesday, May 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.127 32 Friday, May 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.125 32 Wednesday, May 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.124 32 Tuesday, May 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.122 37 Friday, April 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.120 47 Wednesday, April 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.119 38 Tuesday, April 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.113 43 Friday, April 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.110 36 Tuesday, April 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.106 43 Wednesday, April 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.101 44 Wednesday, March 29, 2023 Approved
AWS Command Line Interface (Install) 1.27.100 42 Tuesday, March 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.98 39 Friday, March 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.93 45 Friday, March 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.90 39 Tuesday, March 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.88 53 Friday, March 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.86 35 Wednesday, March 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.85 43 Tuesday, March 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.81 41 Wednesday, March 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.80 37 Tuesday, February 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.78 43 Friday, February 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.75 44 Tuesday, February 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.73 42 Friday, February 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.71 42 Wednesday, February 15, 2023 Approved
AWS Command Line Interface (Install) 1.27.70 45 Tuesday, February 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.68 44 Friday, February 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.66 36 Wednesday, February 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.65 43 Tuesday, February 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.63 41 Friday, February 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.61 48 Wednesday, February 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.60 42 Tuesday, January 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.58 38 Friday, January 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.56 47 Wednesday, January 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.53 49 Friday, January 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.51 43 Wednesday, January 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.49 50 Friday, January 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.47 44 Wednesday, January 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.46 44 Tuesday, January 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.43 41 Thursday, January 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.40 43 Friday, December 30, 2022 Approved
AWS Command Line Interface (Install) 1.27.38 53 Wednesday, December 28, 2022 Approved
AWS Command Line Interface (Install) 1.27.36 40 Friday, December 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.33 44 Tuesday, December 20, 2022 Approved
AWS Command Line Interface (Install) 1.27.31 36 Friday, December 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.29 49 Wednesday, December 14, 2022 Approved
AWS Command Line Interface (Install) 1.27.26 42 Friday, December 9, 2022 Approved
AWS Command Line Interface (Install) 1.27.24 45 Wednesday, December 7, 2022 Approved
AWS Command Line Interface (Install) 1.27.23 47 Tuesday, December 6, 2022 Approved
AWS Command Line Interface (Install) 1.27.15 61 Wednesday, November 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.14 49 Tuesday, November 22, 2022 Approved
AWS Command Line Interface (Install) 1.27.12 38 Friday, November 18, 2022 Approved
AWS Command Line Interface (Install) 1.27.10 46 Wednesday, November 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.9 43 Tuesday, November 15, 2022 Approved
AWS Command Line Interface (Install) 1.27.7 46 Friday, November 11, 2022 Approved
AWS Command Line Interface (Install) 1.27.4 43 Tuesday, November 8, 2022 Approved
AWS Command Line Interface (Install) 1.27.3 54 Saturday, November 5, 2022 Approved
AWS Command Line Interface (Install) 1.27.2 47 Friday, November 4, 2022 Approved
AWS Command Line Interface (Install) 1.27.0 56 Wednesday, November 2, 2022 Approved
AWS Command Line Interface (Install) 1.26.5 52 Tuesday, November 1, 2022 Approved
AWS Command Line Interface (Install) 1.26.3 50 Friday, October 28, 2022 Approved
AWS Command Line Interface (Install) 1.26.1 42 Wednesday, October 26, 2022 Approved
AWS Command Line Interface (Install) 1.26.0 56 Tuesday, October 25, 2022 Approved
AWS Command Line Interface (Install) 1.25.96 45 Friday, October 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.94 59 Wednesday, October 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.93 51 Tuesday, October 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.92 48 Saturday, October 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.89 57 Friday, October 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.87 45 Wednesday, October 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.83 42 Wednesday, September 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.82 43 Tuesday, September 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.78 51 Wednesday, September 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.77 55 Monday, September 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.75 53 Friday, September 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.73 60 Wednesday, September 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.68 52 Wednesday, September 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.66 58 Friday, September 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.64 64 Wednesday, August 31, 2022 Approved
AWS Command Line Interface (Install) 1.25.63 53 Tuesday, August 30, 2022 Approved
AWS Command Line Interface (Install) 1.25.62 48 Saturday, August 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.59 62 Wednesday, August 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.58 62 Tuesday, August 23, 2022 Approved
AWS Command Line Interface (Install) 1.25.56 52 Friday, August 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.55 59 Thursday, August 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.51 60 Saturday, August 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.49 49 Thursday, August 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.48 53 Wednesday, August 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.46 56 Friday, August 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.43 57 Tuesday, August 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.42 62 Monday, August 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.40 65 Friday, July 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.38 51 Wednesday, July 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.37 51 Tuesday, July 26, 2022 Approved
AWS Command Line Interface (Install) 1.25.35 50 Friday, July 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.32 56 Tuesday, July 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.28 56 Wednesday, July 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.25 54 Friday, July 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.23 53 Wednesday, July 6, 2022 Approved
AWS Command Line Interface (Install) 1.25.22 58 Saturday, July 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.21 57 Friday, July 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.19 53 Wednesday, June 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.18 56 Tuesday, June 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.16 58 Friday, June 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.14 53 Wednesday, June 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.13 64 Tuesday, June 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.10 67 Thursday, June 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.9 50 Wednesday, June 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.8 76 Tuesday, June 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.7 58 Saturday, June 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.6 60 Friday, June 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.4 47 Wednesday, June 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.3 58 Tuesday, June 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.2 60 Friday, June 3, 2022 Approved
AWS Command Line Interface (Install) 1.25.0 59 Wednesday, June 1, 2022 Approved
AWS Command Line Interface (Install) 1.24.9 55 Friday, May 27, 2022 Approved
AWS Command Line Interface (Install) 1.24.7 68 Wednesday, May 25, 2022 Approved
AWS Command Line Interface (Install) 1.24.6 65 Tuesday, May 24, 2022 Approved
AWS Command Line Interface (Install) 1.24.4 71 Friday, May 20, 2022 Approved
AWS Command Line Interface (Install) 1.24.2 64 Wednesday, May 18, 2022 Approved
AWS Command Line Interface (Install) 1.24.1 65 Tuesday, May 17, 2022 Approved
AWS Command Line Interface (Install) 1.23.13 68 Friday, May 13, 2022 Approved
AWS Command Line Interface (Install) 1.23.11 70 Wednesday, May 11, 2022 Approved
AWS Command Line Interface (Install) 1.23.6 98 Wednesday, May 4, 2022 Approved
AWS Command Line Interface (Install) 1.23.5 67 Tuesday, May 3, 2022 Approved
AWS Command Line Interface (Install) 1.23.3 55 Thursday, April 28, 2022 Approved
AWS Command Line Interface (Install) 1.23.1 55 Wednesday, April 27, 2022 Approved
AWS Command Line Interface (Install) 1.23.0 77 Tuesday, April 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.101 65 Saturday, April 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.98 55 Wednesday, April 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.96 63 Friday, April 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.94 70 Wednesday, April 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.93 61 Tuesday, April 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.89 75 Wednesday, April 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.88 62 Tuesday, April 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.86 64 Friday, April 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.84 66 Wednesday, March 30, 2022 Approved
AWS Command Line Interface (Install) 1.22.81 71 Friday, March 25, 2022 Approved
AWS Command Line Interface (Install) 1.22.79 58 Wednesday, March 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.78 66 Tuesday, March 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.77 158 Saturday, March 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.74 61 Tuesday, March 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.71 69 Thursday, March 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.69 66 Tuesday, March 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.68 65 Saturday, March 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.66 64 Thursday, March 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.64 67 Tuesday, March 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.63 64 Saturday, February 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.61 67 Thursday, February 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.59 71 Tuesday, February 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.58 64 Saturday, February 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.56 62 Thursday, February 17, 2022 Approved
AWS Command Line Interface (Install) 1.22.55 67 Tuesday, February 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.54 110 Saturday, February 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.52 76 Thursday, February 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.50 59 Tuesday, February 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.49 64 Saturday, February 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.47 68 Thursday, February 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.46 76 Saturday, January 29, 2022 Approved
AWS Command Line Interface (Install) 1.22.44 80 Thursday, January 27, 2022 Approved
AWS Command Line Interface (Install) 1.22.42 76 Monday, January 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.39 79 Thursday, January 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.37 84 Saturday, January 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.34 76 Thursday, January 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.32 64 Monday, January 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.31 79 Saturday, January 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.29 69 Thursday, January 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.25 150 Tuesday, December 21, 2021 Approved
AWS Command Line Interface (Install) 1.22.24 68 Tuesday, December 14, 2021 Approved
AWS Command Line Interface (Install) 1.22.22 71 Thursday, December 9, 2021 Approved
AWS Command Line Interface (Install) 1.22.21 60 Tuesday, December 7, 2021 Approved
AWS Command Line Interface (Install) 1.22.13 93 Thursday, November 25, 2021 Approved
AWS Command Line Interface (Install) 1.22.11 80 Tuesday, November 23, 2021 Approved
AWS Command Line Interface (Install) 1.22.10 65 Saturday, November 20, 2021 Approved
AWS Command Line Interface (Install) 1.22.8 83 Thursday, November 18, 2021 Approved
AWS Command Line Interface (Install) 1.22.6 79 Tuesday, November 16, 2021 Approved
AWS Command Line Interface (Install) 1.22.5 77 Saturday, November 13, 2021 Approved
AWS Command Line Interface (Install) 1.22.3 108 Thursday, November 11, 2021 Approved
AWS Command Line Interface (Install) 1.22.1 77 Tuesday, November 9, 2021 Approved
AWS Command Line Interface (Install) 1.21.12 141 Saturday, November 6, 2021 Approved
AWS Command Line Interface (Install) 1.21.0 80 Thursday, October 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.64 77 Tuesday, October 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.63 78 Saturday, October 16, 2021 Approved
AWS Command Line Interface (Install) 1.20.61 81 Thursday, October 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.58 206 Saturday, October 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.57 86 Friday, October 8, 2021 Approved
AWS Command Line Interface (Install) 1.20.56 79 Thursday, October 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.54 72 Tuesday, October 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.53 72 Saturday, October 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.51 79 Thursday, September 30, 2021 Approved
AWS Command Line Interface (Install) 1.20.49 82 Tuesday, September 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.48 81 Saturday, September 25, 2021 Approved
AWS Command Line Interface (Install) 1.20.46 74 Thursday, September 23, 2021 Approved
AWS Command Line Interface (Install) 1.20.44 94 Saturday, September 18, 2021 Approved
AWS Command Line Interface (Install) 1.20.40 111 Saturday, September 11, 2021 Approved
AWS Command Line Interface (Install) 1.20.38 88 Thursday, September 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.36 75 Saturday, September 4, 2021 Approved
AWS Command Line Interface (Install) 1.20.34 90 Thursday, September 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.32 81 Tuesday, August 31, 2021 Approved
AWS Command Line Interface (Install) 1.20.31 76 Saturday, August 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.29 70 Thursday, August 26, 2021 Approved
AWS Command Line Interface (Install) 1.20.27 80 Tuesday, August 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.26 109 Saturday, August 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.24 81 Thursday, August 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.23 103 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.22 76 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.21 89 Saturday, August 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.19 82 Thursday, August 12, 2021 Approved
AWS Command Line Interface (Install) 1.20.17 86 Tuesday, August 10, 2021 Approved
AWS Command Line Interface (Install) 1.20.16 86 Saturday, August 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.15 103 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.14 88 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.12 78 Tuesday, August 3, 2021 Approved
AWS Command Line Interface (Install) 1.20.9 79 Thursday, July 29, 2021 Approved
AWS Command Line Interface (Install) 1.20.7 92 Tuesday, July 27, 2021 Approved
AWS Command Line Interface (Install) 1.20.6 91 Saturday, July 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.4 84 Thursday, July 22, 2021 Approved
AWS Command Line Interface (Install) 1.20.2 80 Monday, July 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.1 91 Saturday, July 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.111 76 Wednesday, July 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.110 83 Tuesday, July 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.109 81 Saturday, July 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.107 74 Thursday, July 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.105 83 Friday, July 2, 2021 Approved
AWS Command Line Interface (Install) 1.19.103 1164 Thursday, July 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.102 84 Tuesday, June 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.101 81 Saturday, June 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.99 102 Thursday, June 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.98 71 Tuesday, June 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.96 90 Thursday, June 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.94 81 Tuesday, June 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.93 85 Saturday, June 12, 2021 Approved
AWS Command Line Interface (Install) 1.19.92 86 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.91 86 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.89 86 Tuesday, June 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.88 79 Saturday, June 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.86 78 Thursday, June 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.84 82 Saturday, May 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.82 81 Thursday, May 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.79 90 Tuesday, May 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.78 84 Saturday, May 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.77 75 Friday, May 21, 2021 Approved
AWS Command Line Interface (Install) 1.19.76 78 Thursday, May 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.75 84 Wednesday, May 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.74 90 Tuesday, May 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.72 75 Friday, May 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.70 97 Tuesday, May 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.69 96 Saturday, May 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.67 94 Thursday, May 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.64 87 Monday, May 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.62 99 Saturday, May 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.60 69 Thursday, April 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.58 82 Tuesday, April 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.57 76 Saturday, April 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.56 79 Friday, April 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.54 88 Tuesday, April 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.52 74 Thursday, April 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.50 70 Tuesday, April 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.49 85 Saturday, April 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.45 88 Tuesday, April 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.44 74 Saturday, April 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.42 73 Thursday, April 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.40 81 Monday, March 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.39 94 Saturday, March 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.37 94 Thursday, March 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.35 104 Wednesday, March 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.34 93 Tuesday, March 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.32 82 Friday, March 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.30 92 Thursday, March 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.29 79 Wednesday, March 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.28 105 Tuesday, March 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.27 93 Saturday, March 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.26 4316 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.25 97 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.23 94 Tuesday, March 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.22 85 Saturday, March 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.21 92 Friday, March 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.20 97 Thursday, March 4, 2021 Approved
AWS Command Line Interface (Install) 1.19.19 101 Wednesday, March 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.17 105 Saturday, February 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.16 97 Friday, February 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.15 80 Thursday, February 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.13 83 Tuesday, February 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.12 80 Saturday, February 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.11 80 Friday, February 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.10 97 Thursday, February 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.8 90 Tuesday, February 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.7 102 Saturday, February 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.4 113 Tuesday, February 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.3 185 Saturday, February 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.1 107 Thursday, February 4, 2021 Approved
AWS Command Line Interface (Install) 1.18.223 98 Saturday, January 30, 2021 Approved
AWS Command Line Interface (Install) 1.18.221 108 Thursday, January 28, 2021 Approved
AWS Command Line Interface (Install) 1.18.220 101 Wednesday, January 27, 2021 Approved
AWS Command Line Interface (Install) 1.18.219 123 Saturday, January 23, 2021 Approved
AWS Command Line Interface (Install) 1.18.216 91 Saturday, January 16, 2021 Approved
AWS Command Line Interface (Install) 1.18.214 111 Thursday, January 14, 2021 Approved
AWS Command Line Interface (Install) 1.18.212 104 Tuesday, January 12, 2021 Approved
AWS Command Line Interface (Install) 1.18.210 104 Thursday, January 7, 2021 Approved
AWS Command Line Interface (Install) 1.18.208 112 Tuesday, January 5, 2021 Approved
AWS Command Line Interface (Install) 1.18.207 97 Friday, January 1, 2021 Approved
AWS Command Line Interface (Install) 1.18.206 98 Thursday, December 31, 2020 Approved
AWS Command Line Interface (Install) 1.18.205 100 Tuesday, December 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.204 87 Monday, December 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.201 85 Tuesday, December 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.200 98 Friday, December 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.197 91 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.196 95 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.195 1696 Saturday, December 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.193 92 Wednesday, December 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.191 82 Tuesday, December 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.190 92 Saturday, December 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.184 107 Tuesday, November 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.183 104 Saturday, November 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.181 118 Thursday, November 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.179 109 Tuesday, November 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.178 113 Saturday, November 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.176 89 Thursday, November 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.174 100 Monday, November 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.173 105 Saturday, November 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.171 172 Thursday, November 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.170 111 Tuesday, November 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.167 119 Thursday, October 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.165 230 Tuesday, October 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.164 128 Saturday, October 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.162 115 Thursday, October 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.160 114 Tuesday, October 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.159 100 Saturday, October 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.157 173 Saturday, October 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.153 112 Tuesday, October 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.152 123 Saturday, October 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.150 102 Thursday, October 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.148 113 Tuesday, September 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.147 137 Saturday, September 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.146 94 Thursday, September 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.144 97 Wednesday, September 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.143 105 Tuesday, September 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.142 108 Saturday, September 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.141 396 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.140 112 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.138 97 Tuesday, September 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.137 107 Saturday, September 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.133 166 Saturday, September 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.131 117 Thursday, September 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.129 119 Tuesday, September 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.128 127 Saturday, August 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.126 158 Thursday, August 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.125 128 Tuesday, August 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.123 139 Thursday, August 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.121 165 Tuesday, August 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.120 120 Saturday, August 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.119 114 Thursday, August 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.116 6230 Monday, August 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.115 134 Saturday, August 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.113 163 Thursday, August 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.111 155 Tuesday, August 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.110 172 Saturday, August 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.108 145 Thursday, July 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.106 168 Tuesday, July 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.105 164 Saturday, July 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.103 197 Thursday, July 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.101 1279 Tuesday, July 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.100 162 Saturday, July 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.96 187 Thursday, July 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.94 215 Tuesday, July 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.92 188 Thursday, July 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.90 188 Tuesday, June 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.89 232 Saturday, June 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.87 190 Thursday, June 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.85 197 Tuesday, June 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.84 215 Saturday, June 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.82 194 Thursday, June 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.80 262 Tuesday, June 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.79 209 Saturday, June 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.75 179 Tuesday, June 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.74 209 Saturday, June 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.72 207 Thursday, June 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.70 199 Tuesday, June 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.69 6462 Friday, May 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.68 230 Thursday, May 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.65 22184 Thursday, May 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.63 178 Wednesday, May 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.62 222 Tuesday, May 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.61 195 Saturday, May 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.57 187 Tuesday, May 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.56 244 Saturday, May 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.54 203 Thursday, May 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.52 194 Tuesday, May 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.51 269 Saturday, May 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.50 163 Friday, May 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.49 190 Thursday, April 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.46 363 Saturday, April 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.43 214 Wednesday, April 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.42 547 Tuesday, April 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.41 185 Friday, April 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.39 222 Thursday, April 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.36 320 Saturday, April 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.35 190 Friday, April 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.34 171 Thursday, April 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.31 216 Saturday, March 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.30 217 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.29 175 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.28 290 Wednesday, March 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.26 227 Saturday, March 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.25 221 Friday, March 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.24 202 Thursday, March 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.22 187 Tuesday, March 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.21 243 Saturday, March 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.20 210 Friday, March 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.19 221 Thursday, March 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.16 176 Saturday, March 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.15 158 Friday, March 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.14 219 Thursday, March 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.11 21893 Saturday, February 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.9 5865 Friday, February 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.6 3713 Tuesday, February 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.5 4421 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.4 1204 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.3 1400 Thursday, February 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.2 1386 Wednesday, February 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.1 1654 Tuesday, February 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.0 1965 Saturday, February 15, 2020 Approved
AWS Command Line Interface (Install) 1.17.17 4213 Friday, February 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.16 2705 Thursday, February 13, 2020 Approved
AWS Command Line Interface (Install) 1.17.15 1533 Wednesday, February 12, 2020 Approved
AWS Command Line Interface (Install) 1.17.13 3042 Saturday, February 8, 2020 Approved
AWS Command Line Interface (Install) 1.17.12 1227 Friday, February 7, 2020 Approved
AWS Command Line Interface (Install) 1.17.11 155 Thursday, February 6, 2020 Approved
AWS Command Line Interface (Install) 1.17.10 174 Wednesday, February 5, 2020 Approved
AWS Command Line Interface (Install) 1.17.9 8270 Saturday, January 25, 2020 Approved
AWS Command Line Interface (Install) 1.17.8 942 Friday, January 24, 2020 Approved
AWS Command Line Interface (Install) 1.17.7 3032 Wednesday, January 22, 2020 Approved
AWS Command Line Interface (Install) 1.17.6 280 Tuesday, January 21, 2020 Approved
AWS Command Line Interface (Install) 1.17.5 2557 Saturday, January 18, 2020 Approved
AWS Command Line Interface (Install) 1.17.4 1203 Friday, January 17, 2020 Approved
AWS Command Line Interface (Install) 1.17.3 1109 Thursday, January 16, 2020 Approved
AWS Command Line Interface (Install) 1.17.2 2025 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.1 1178 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.0 2016 Saturday, January 11, 2020 Approved
AWS Command Line Interface (Install) 1.16.314 1388 Friday, January 10, 2020 Approved
AWS Command Line Interface (Install) 1.16.313 1412 Thursday, January 9, 2020 Approved
AWS Command Line Interface (Install) 1.16.312 1105 Wednesday, January 8, 2020 Approved
AWS Command Line Interface (Install) 1.16.311 1336 Tuesday, January 7, 2020 Approved
AWS Command Line Interface (Install) 1.16.310 180 Friday, January 3, 2020 Approved
AWS Command Line Interface (Install) 1.16.309 1421 Tuesday, December 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.308 5804 Saturday, December 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.307 1055 Friday, December 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.305 2032 Wednesday, December 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.303 2522 Saturday, December 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.302 1186 Friday, December 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.301 1523 Thursday, December 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.300 1284 Wednesday, December 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.299 1534 Tuesday, December 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.298 2548 Friday, December 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.297 1304 Thursday, December 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.296 1344 Wednesday, December 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.294 816 Tuesday, December 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.292 4653 Wednesday, November 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.291 1360 Tuesday, November 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.290 2073 Saturday, November 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.289 1209 Friday, November 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.287 1293 Thursday, November 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.286 1744 Wednesday, November 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.284 1547 Tuesday, November 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.283 2207 Saturday, November 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.282 1273 Friday, November 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.281 1546 Thursday, November 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.280 1509 Wednesday, November 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.279 1458 Tuesday, November 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.278 2079 Saturday, November 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.277 2676 Friday, November 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.276 1387 Thursday, November 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.274 1636 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.273 1289 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.272 2080 Saturday, November 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.271 1010 Friday, November 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.270 1497 Thursday, October 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.269 1553 Wednesday, October 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.268 1612 Tuesday, October 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.266 2881 Friday, October 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.265 1790 Thursday, October 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.264 1548 Wednesday, October 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.263 3555 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.262 721 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.261 2340 Thursday, October 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.260 1562 Wednesday, October 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.259 1501 Tuesday, October 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.258 1955 Saturday, October 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.257 1320 Friday, October 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.256 2056 Thursday, October 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.255 1697 Wednesday, October 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.254 1386 Tuesday, October 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.253 2016 Saturday, October 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.252 1513 Friday, October 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.251 2137 Thursday, October 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.250 1636 Wednesday, October 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.249 1650 Tuesday, October 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.248 2354 Saturday, September 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.247 1138 Friday, September 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.246 1838 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.245 1439 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.244 1528 Tuesday, September 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.243 1855 Saturday, September 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.242 1230 Friday, September 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.241 2340 Thursday, September 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.240 1497 Wednesday, September 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.239 1153 Tuesday, September 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.238 7161 Friday, September 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.237 1830 Thursday, September 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.236 1386 Wednesday, September 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.235 1319 Tuesday, September 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.234 1799 Saturday, September 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.233 1210 Friday, September 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.232 1839 Thursday, September 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.231 1259 Wednesday, September 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.230 2509 Saturday, August 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.229 1878 Friday, August 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.228 2820 Thursday, August 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.227 2360 Wednesday, August 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.226 1271 Tuesday, August 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.225 2026 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.224 1080 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.223 1147 Thursday, August 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.222 1227 Wednesday, August 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.221 2591 Tuesday, August 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.220 1854 Saturday, August 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.219 1104 Friday, August 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.218 1184 Thursday, August 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.217 1672 Wednesday, August 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.216 1130 Tuesday, August 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.215 1655 Saturday, August 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.214 1023 Friday, August 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.213 2223 Thursday, August 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.212 546 Wednesday, August 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.211 1720 Tuesday, August 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.210 1665 Saturday, August 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.209 5100 Wednesday, July 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.208 1011 Tuesday, July 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.207 1626 Saturday, July 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.206 1186 Friday, July 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.205 1393 Thursday, July 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.204 1193 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.203 1194 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.202 1152 Monday, July 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.201 834 Saturday, July 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.200 914 Friday, July 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.199 1112 Thursday, July 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.198 3113 Saturday, July 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.197 947 Friday, July 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.196 1023 Thursday, July 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.195 1049 Wednesday, July 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.194 1256 Tuesday, July 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.193 2732 Thursday, July 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.192 976 Wednesday, July 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.191 985 Tuesday, July 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.190 1541 Saturday, June 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.189 867 Friday, June 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.188 980 Thursday, June 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.186 1204 Wednesday, June 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.185 1023 Tuesday, June 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.184 2825 Saturday, June 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.183 990 Friday, June 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.182 860 Thursday, June 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.181 1360 Wednesday, June 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.180 1452 Tuesday, June 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.179 1681 Saturday, June 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.178 888 Friday, June 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.177 2280 Thursday, June 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.176 1581 Wednesday, June 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.175 1495 Tuesday, June 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.174 1879 Saturday, June 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.173 1074 Friday, June 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.172 1261 Thursday, June 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.171 1272 Wednesday, June 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.170 1419 Tuesday, June 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.169 2980 Friday, May 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.168 1164 Thursday, May 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.167 1060 Wednesday, May 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.166 2316 Saturday, May 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.165 1033 Friday, May 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.164 12774 Thursday, May 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.163 1250 Wednesday, May 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.162 1283 Monday, May 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.161 1772 Saturday, May 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.160 1120 Friday, May 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.159 1011 Thursday, May 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.158 1101 Wednesday, May 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.157 1377 Tuesday, May 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.156 1833 Saturday, May 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.155 1676 Thursday, May 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.154 1232 Wednesday, May 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.153 1307 Tuesday, May 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.152 2602 Saturday, May 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.151 1428 Friday, May 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.150 1231 Thursday, May 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.149 1022 Wednesday, May 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.148 1223 Tuesday, April 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.147 1965 Saturday, April 27, 2019 Approved