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

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!

Learn More Register Now

Chocolatey Community Coffee Break

Join the Chocolatey Team on our regular monthly stream where we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

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

Announcing Chocolatey Central Management 0.10.0

Livestream from
Thursday, 06 October 2022

We recently released our largest update to Chocolatey Central Management so far. Join Gary and Steph to find out more about Chocolatey Central Management and the new features and fixes we've added to this release.

Watch On-Demand
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
Chocolatey Product Spotlight: Chocolatey 1.2.0 and Chocolatey Licensed Extension 5.0.0

Livestream from
Thursday, 03 November 2022

Join Paul and Gary for this months Chocolatey product livestream where we look at the latest release of Chocolatey 1.2.0, Chocolatey Licensed Extension 5.0.0 and shine a spotlight on the new hook scripts functionality. This opens up so many possibilities for Chocolatey CLI users!

Watch On-Demand
Chocolatey Coding Livestream

Livestream from
Tuesday, 29 November 2022

Join Josh as he adds the ability to manage Chocolatey GUI config and features with the Chocolatey Ansible Collection.

Watch On-Demand
Introduction into Chocolatey with Veeam

Webinar from
Tuesday, 13 December 2022

Join Gary, Paul, and Maurice as they introduce and demonstrate how to use Chocolatey! Questions will be answered live in an Ask Me Anything format.

Watch On-Demand

Downloads:

3,857,655

Downloads of v 1.18.167:

84

Last Update:

29 Oct 2020

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.18.167 | Updated: 29 Oct 2020

Downloads:

3,857,655

Downloads of v 1.18.167:

84

Maintainer(s):

Software Author(s):

  • Amazon Web Services

AWS Command Line Interface (Install) 1.18.167

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

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

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


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

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


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

Package Approved

This package was approved as a trusted package on 29 Oct 2020.

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\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url        = 'https://s3.amazonaws.com/aws-cli/AWSCLI32PY3-1.18.167.msi'
$checksum   = '623494ae5e66a609d1715c38c30ae4e41096c8f47247b2db5b0224c7658557f7'
$url64      = 'https://s3.amazonaws.com/aws-cli/AWSCLI64PY3-1.18.167.msi'
$checksum64 = '96040a91d052f0f2f4728046b1c4aced8750a81a17b224508a6e064e85e25e7a'
 
$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
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)"}
}

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.14.5 14948 Friday, December 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.2 6332 Wednesday, November 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.0 7038 Tuesday, November 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.38 14193 Wednesday, November 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.37 11447 Saturday, November 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.36 5199 Thursday, November 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.35 8322 Tuesday, November 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.34 8886 Saturday, November 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.32 15294 Saturday, November 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.31 6199 Thursday, November 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.30 12360 Saturday, October 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.29 6219 Thursday, October 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.28 13217 Saturday, October 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.27 7189 Thursday, October 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.26 13377 Saturday, October 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.25 15594 Saturday, October 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.24 6272 Thursday, October 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.23 7911 Tuesday, October 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.21 107 Saturday, September 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.20 24383 Thursday, September 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.19 12527 Saturday, September 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.18 7003 Thursday, September 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.16 17655 Thursday, September 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.15 12077 Saturday, September 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.14 8382 Thursday, August 31, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.13 13204 Saturday, August 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.12 6990 Thursday, August 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.11 1607 Saturday, August 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.9 27252 Saturday, August 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.8 7226 Thursday, August 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.7 12925 Saturday, August 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.6 7555 Thursday, August 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.5 52 Saturday, July 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.4 15709 Thursday, July 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.3 14381 Saturday, July 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.2 14327 Thursday, July 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.1 23074 Friday, July 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.0 26820 Saturday, July 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.7 10989 Thursday, July 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.6 17527 Saturday, July 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.5 7318 Friday, June 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.4 8089 Thursday, June 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.3 17453 Saturday, June 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.2 10854 Thursday, June 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.1 18069 Saturday, June 17, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.0 11869 Thursday, June 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.27 12975 Saturday, June 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.26 6950 Thursday, June 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.25 12492 Saturday, June 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.24 7201 Thursday, June 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.23 12658 Saturday, May 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.22 7784 Thursday, May 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.21 13190 Saturday, May 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.20 25129 Saturday, May 13, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.19 9761 Thursday, May 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.17 17135 Thursday, May 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.16 15123 Saturday, April 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.13 24448 Saturday, April 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.11 21881 Monday, April 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.10 9052 Thursday, April 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.9 8697 Tuesday, April 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.8 9226 Saturday, April 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.6 17501 Saturday, March 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.5 6816 Thursday, March 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.4 17103 Saturday, March 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.2 17635 Saturday, March 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.1 7522 Thursday, March 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.0 14263 Friday, March 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.4 5918 Thursday, March 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.3 11545 Saturday, February 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.2 8179 Thursday, February 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.1 12445 Saturday, February 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.23 17585 Saturday, February 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.22 7321 Thursday, February 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.21 11260 Monday, February 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.20 11405 Thursday, February 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.19 11386 Monday, January 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.18 11711 Thursday, January 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.17 13349 Saturday, January 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.16 8507 Thursday, January 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.15 12757 Saturday, January 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.14 7473 Thursday, January 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.13 15756 Friday, January 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.12 14388 Saturday, December 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.11 6952 Thursday, December 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.10 11133 Friday, December 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.9 7395 Thursday, December 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.8 12816 Saturday, December 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.7 8458 Thursday, December 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.6 13895 Saturday, December 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.5 7387 Thursday, December 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.4 12268 Saturday, December 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.3 6312 Thursday, December 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.2 5402 Wednesday, November 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.1 13286 Thursday, November 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.0 15229 Saturday, November 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.13 6742 Thursday, November 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.12 9560 Saturday, November 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.11 11491 Thursday, November 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.9 13111 Saturday, November 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.8 7463 Thursday, November 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.7 15623 Friday, October 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.6 7357 Thursday, October 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.5 10752 Saturday, October 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.3 17655 Friday, October 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.2 15496 Saturday, October 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.1 6562 Thursday, October 6, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.0 10730 Saturday, October 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.35 13607 Saturday, September 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.34 6686 Thursday, September 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.33 11562 Saturday, September 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.32 6885 Thursday, September 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.31 14031 Saturday, September 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.30 7622 Thursday, September 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.29 13850 Monday, September 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.28 19823 Thursday, September 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.26 23123 Thursday, August 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.25 16527 Saturday, August 20, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.24 11566 Wednesday, August 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.22 15251 Friday, August 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.21 32329 Thursday, August 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.20 16063 Saturday, July 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.19 7896 Thursday, July 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.18 13982 Saturday, July 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.17 8170 Thursday, July 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.16 13957 Saturday, July 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.15 7237 Thursday, July 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.14 13282 Saturday, July 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.13 6201 Thursday, July 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.11 27706 Saturday, June 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.9 18241 Saturday, June 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.8 4833 Friday, June 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.7 21244 Thursday, June 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.6 11519 Saturday, June 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.5 6915 Thursday, June 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.4 11515 Friday, May 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.3 6090 Thursday, May 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.2 12260 Saturday, May 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.1 7872 Wednesday, May 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.0 11173 Saturday, May 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.4 6784 Wednesday, May 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.3 8176 Sunday, May 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.2 6834 Thursday, May 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.1 9321 Friday, April 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.0 5231 Thursday, April 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.8 10681 Friday, April 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.7 3670 Thursday, April 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.6 10498 Saturday, April 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.4 11202 Saturday, April 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.3 5772 Thursday, April 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.2 8541 Saturday, April 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.1 5807 Thursday, March 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.0 6664 Monday, March 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.29 7630 Saturday, March 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.28 5456 Thursday, March 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.27 10368 Friday, March 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.25 12129 Friday, March 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.24 5900 Wednesday, March 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.23 8702 Friday, March 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.22 5998 Wednesday, March 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.21 17605 Friday, February 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.20 6019 Wednesday, February 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.19 8050 Friday, February 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.18 10489 Friday, February 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.17 6721 Wednesday, February 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.16 8255 Friday, February 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.15 10482 Friday, January 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.13 10769 Friday, January 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.12 14733 Wednesday, January 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.11 6705 Friday, January 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.10 4104 Wednesday, January 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.9 6762 Friday, January 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.7 13148 Wednesday, December 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.6 16333 Friday, December 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.5 8440 Saturday, December 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.4 2585 Friday, December 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.3 4928 Tuesday, November 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.2 6541 Saturday, November 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.1 6013 Wednesday, November 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.0 6751 Friday, November 19, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.7 5133 Wednesday, November 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.6 7324 Friday, November 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.5 5055 Wednesday, November 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.4 6853 Friday, November 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.0 16152 Friday, October 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.47 4788 Wednesday, October 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.46 6610 Friday, October 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.45 5672 Tuesday, October 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.43 12392 Friday, October 1, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.42 4642 Wednesday, September 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.41 6476 Friday, September 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.40 3915 Wednesday, September 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.39 6008 Friday, September 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.38 4361 Wednesday, September 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.37 7388 Friday, September 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.36 4088 Wednesday, September 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.35 5706 Friday, September 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.33 7910 Friday, August 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.32 3578 Wednesday, August 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.31 6344 Friday, August 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.30 4112 Wednesday, August 18, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.29 5720 Friday, August 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.28 3788 Wednesday, August 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.27 6313 Friday, August 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.26 3270 Wednesday, August 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.25 7406 Saturday, July 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.24 1972 Friday, July 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.23 2334 Wednesday, July 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.22 6863 Friday, July 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.21 4462 Wednesday, July 21, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.20 5120 Friday, July 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.19 3273 Thursday, July 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.18 7005 Friday, July 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.17 3832 Wednesday, July 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.16 6970 Friday, July 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.15 5926 Wednesday, June 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.14 5409 Friday, June 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.13 7741 Thursday, June 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.12 6036 Wednesday, June 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.11 5482 Friday, June 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.10 4679 Wednesday, June 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.9 5884 Friday, June 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.8 3328 Wednesday, June 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.7 6395 Friday, May 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.6 4322 Wednesday, May 26, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.5 13257 Saturday, May 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.4 5521 Wednesday, May 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.3 5699 Friday, May 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.2 3891 Wednesday, May 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.1 4969 Friday, April 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.0 3074 Wednesday, April 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.39 76 Thursday, April 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.38 12257 Friday, April 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.37 4025 Wednesday, April 14, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.36 5600 Friday, April 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.35 382 Wednesday, April 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.34 8797 Friday, April 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.33 3329 Wednesday, March 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.32 516 Tuesday, March 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.29 52123 Tuesday, March 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.28 18458 Tuesday, February 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.27 32313 Wednesday, February 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.26 5846 Friday, February 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.25 3038 Wednesday, February 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.24 6610 Friday, February 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.23 3486 Wednesday, February 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.22 9877 Friday, January 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.21 7635 Friday, January 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.20 4294 Wednesday, January 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.19 5569 Friday, January 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.18 2734 Wednesday, January 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.17 4937 Friday, January 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.16 1863 Wednesday, January 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.15 5531 Wednesday, December 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.14 4027 Wednesday, December 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.13 4498 Friday, December 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.12 1879 Thursday, December 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.11 1646 Wednesday, December 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.10 5224 Friday, December 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.9 1633 Thursday, December 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.8 3060 Wednesday, December 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.7 4640 Friday, December 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.6 2417 Wednesday, December 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.4 6744 Wednesday, November 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.3 4286 Friday, November 20, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.2 2127 Wednesday, November 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.1 4398 Friday, November 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.0 3997 Wednesday, November 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.63 4640 Tuesday, November 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.62 2814 Friday, November 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.61 7084 Friday, October 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.60 3999 Wednesday, October 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.59 7158 Friday, October 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.58 3222 Wednesday, October 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.57 3677 Friday, October 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.56 8992 Friday, October 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.55 5523 Wednesday, October 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.54 4938 Friday, October 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.53 5857 Wednesday, September 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.52 4319 Friday, September 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.51 2356 Thursday, September 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.50 6519 Friday, September 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.49 2916 Wednesday, September 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.48 5180 Friday, September 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.47 3279 Wednesday, September 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.46 3830 Friday, September 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.45 2676 Wednesday, September 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.44 3175 Friday, August 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.43 4763 Wednesday, August 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.42 5699 Friday, August 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.41 3126 Wednesday, August 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.40 3587 Friday, August 14, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.39 3755 Wednesday, August 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.38 4195 Friday, August 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.37 3051 Wednesday, August 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.36 3992 Friday, July 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.35 2967 Wednesday, July 29, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.34 4478 Friday, July 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.33 3322 Wednesday, July 22, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.31 5529 Thursday, July 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.30 7910 Friday, July 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.29 2740 Wednesday, July 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.28 3926 Friday, July 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.27 2788 Wednesday, July 1, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.26 4308 Friday, June 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.25 2876 Wednesday, June 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.24 4360 Friday, June 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.23 2701 Wednesday, June 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.22 5488 Friday, June 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.21 1202 Thursday, June 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.20 1830 Wednesday, June 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.19 3590 Friday, June 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.18 2096 Wednesday, June 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.17 4556 Wednesday, May 27, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.15 3457 Thursday, May 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.14 5595 Friday, May 15, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.13 2492 Wednesday, May 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.12 3981 Friday, May 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.11 3196 Wednesday, May 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.10 6372 Tuesday, April 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.9 3364 Thursday, April 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.8 4707 Friday, April 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.7 6186 Tuesday, April 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.6 5778 Tuesday, March 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.5 5083 Tuesday, March 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.4 5281 Wednesday, March 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.3 5652 Tuesday, March 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.2 4276 Tuesday, March 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.1 5721 Wednesday, February 26, 2020 Approved
AWS Command Line Interface (Install) 1.31.10 5 Friday, December 8, 2023 Approved
AWS Command Line Interface (Install) 1.31.7 7 Tuesday, December 5, 2023 Approved
AWS Command Line Interface (Install) 1.31.6 7 Saturday, December 2, 2023 Approved
AWS Command Line Interface (Install) 1.30.4 12 Tuesday, November 21, 2023 Approved
AWS Command Line Interface (Install) 1.30.2 10 Friday, November 17, 2023 Approved
AWS Command Line Interface (Install) 1.30.0 17 Wednesday, November 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.83 11 Friday, November 10, 2023 Approved
AWS Command Line Interface (Install) 1.29.82 15 Thursday, November 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.80 11 Wednesday, November 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.79 12 Tuesday, November 7, 2023 Approved
AWS Command Line Interface (Install) 1.29.77 13 Thursday, November 2, 2023 Approved
AWS Command Line Interface (Install) 1.29.75 9 Wednesday, November 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.72 9 Friday, October 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.70 15 Wednesday, October 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.69 12 Tuesday, October 24, 2023 Approved
AWS Command Line Interface (Install) 1.29.67 16 Friday, October 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.65 12 Wednesday, October 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.64 10 Tuesday, October 17, 2023 Approved
AWS Command Line Interface (Install) 1.29.63 11 Friday, October 13, 2023 Approved
AWS Command Line Interface (Install) 1.29.61 10 Friday, October 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.59 18 Wednesday, October 4, 2023 Approved
AWS Command Line Interface (Install) 1.29.57 8 Saturday, September 30, 2023 Approved
AWS Command Line Interface (Install) 1.29.55 8 Wednesday, September 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.54 8 Tuesday, September 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.51 16 Wednesday, September 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.50 15 Tuesday, September 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.48 17 Friday, September 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.45 11 Tuesday, September 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.43 12 Friday, September 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.41 18 Wednesday, September 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.36 43 Tuesday, August 29, 2023 Approved
AWS Command Line Interface (Install) 1.29.34 15 Friday, August 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.32 11 Wednesday, August 23, 2023 Approved
AWS Command Line Interface (Install) 1.29.31 18 Tuesday, August 22, 2023 Approved
AWS Command Line Interface (Install) 1.29.29 22 Friday, August 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.26 19 Tuesday, August 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.24 19 Friday, August 11, 2023 Approved
AWS Command Line Interface (Install) 1.29.22 32 Wednesday, August 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.16 22 Tuesday, August 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.14 20 Friday, July 28, 2023 Approved
AWS Command Line Interface (Install) 1.29.11 21 Wednesday, July 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.5 12 Wednesday, July 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.4 12 Tuesday, July 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.2 27 Wednesday, July 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.0 55 Friday, July 7, 2023 Approved
AWS Command Line Interface (Install) 1.28.0 21 Tuesday, July 4, 2023 Approved
AWS Command Line Interface (Install) 1.27.162 19 Wednesday, June 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.161 16 Tuesday, June 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.159 14 Friday, June 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.157 14 Wednesday, June 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.156 14 Tuesday, June 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.153 14 Wednesday, June 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.152 11 Tuesday, June 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.150 15 Friday, June 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.148 16 Wednesday, June 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.145 14 Friday, June 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.143 15 Wednesday, May 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.141 13 Friday, May 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.139 14 Wednesday, May 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.138 14 Tuesday, May 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.135 14 Thursday, May 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.134 26 Tuesday, May 16, 2023 Approved
AWS Command Line Interface (Install) 1.27.133 13 Friday, May 12, 2023 Approved
AWS Command Line Interface (Install) 1.27.131 17 Wednesday, May 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.130 24 Tuesday, May 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.127 15 Friday, May 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.125 12 Wednesday, May 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.124 14 Tuesday, May 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.122 14 Friday, April 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.120 17 Wednesday, April 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.119 15 Tuesday, April 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.113 19 Friday, April 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.110 17 Tuesday, April 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.106 20 Wednesday, April 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.101 26 Wednesday, March 29, 2023 Approved
AWS Command Line Interface (Install) 1.27.100 18 Tuesday, March 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.98 17 Friday, March 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.93 19 Friday, March 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.90 17 Tuesday, March 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.88 17 Friday, March 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.86 17 Wednesday, March 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.85 18 Tuesday, March 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.81 17 Wednesday, March 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.80 14 Tuesday, February 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.78 18 Friday, February 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.75 17 Tuesday, February 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.73 19 Friday, February 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.71 17 Wednesday, February 15, 2023 Approved
AWS Command Line Interface (Install) 1.27.70 20 Tuesday, February 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.68 23 Friday, February 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.66 18 Wednesday, February 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.65 20 Tuesday, February 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.63 19 Friday, February 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.61 19 Wednesday, February 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.60 22 Tuesday, January 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.58 17 Friday, January 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.56 23 Wednesday, January 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.53 22 Friday, January 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.51 21 Wednesday, January 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.49 25 Friday, January 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.47 20 Wednesday, January 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.46 20 Tuesday, January 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.43 18 Thursday, January 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.40 24 Friday, December 30, 2022 Approved
AWS Command Line Interface (Install) 1.27.38 27 Wednesday, December 28, 2022 Approved
AWS Command Line Interface (Install) 1.27.36 21 Friday, December 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.33 20 Tuesday, December 20, 2022 Approved
AWS Command Line Interface (Install) 1.27.31 18 Friday, December 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.29 22 Wednesday, December 14, 2022 Approved
AWS Command Line Interface (Install) 1.27.26 21 Friday, December 9, 2022 Approved
AWS Command Line Interface (Install) 1.27.24 22 Wednesday, December 7, 2022 Approved
AWS Command Line Interface (Install) 1.27.23 24 Tuesday, December 6, 2022 Approved
AWS Command Line Interface (Install) 1.27.15 32 Wednesday, November 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.14 23 Tuesday, November 22, 2022 Approved
AWS Command Line Interface (Install) 1.27.12 23 Friday, November 18, 2022 Approved
AWS Command Line Interface (Install) 1.27.10 25 Wednesday, November 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.9 25 Tuesday, November 15, 2022 Approved
AWS Command Line Interface (Install) 1.27.7 29 Friday, November 11, 2022 Approved
AWS Command Line Interface (Install) 1.27.4 26 Tuesday, November 8, 2022 Approved
AWS Command Line Interface (Install) 1.27.3 24 Saturday, November 5, 2022 Approved
AWS Command Line Interface (Install) 1.27.2 26 Friday, November 4, 2022 Approved
AWS Command Line Interface (Install) 1.27.0 35 Wednesday, November 2, 2022 Approved
AWS Command Line Interface (Install) 1.26.5 29 Tuesday, November 1, 2022 Approved
AWS Command Line Interface (Install) 1.26.3 27 Friday, October 28, 2022 Approved
AWS Command Line Interface (Install) 1.26.1 24 Wednesday, October 26, 2022 Approved
AWS Command Line Interface (Install) 1.26.0 34 Tuesday, October 25, 2022 Approved
AWS Command Line Interface (Install) 1.25.96 23 Friday, October 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.94 30 Wednesday, October 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.93 29 Tuesday, October 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.92 29 Saturday, October 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.89 33 Friday, October 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.87 26 Wednesday, October 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.83 26 Wednesday, September 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.82 23 Tuesday, September 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.78 32 Wednesday, September 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.77 34 Monday, September 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.75 34 Friday, September 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.73 35 Wednesday, September 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.68 29 Wednesday, September 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.66 34 Friday, September 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.64 38 Wednesday, August 31, 2022 Approved
AWS Command Line Interface (Install) 1.25.63 31 Tuesday, August 30, 2022 Approved
AWS Command Line Interface (Install) 1.25.62 31 Saturday, August 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.59 39 Wednesday, August 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.58 35 Tuesday, August 23, 2022 Approved
AWS Command Line Interface (Install) 1.25.56 33 Friday, August 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.55 36 Thursday, August 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.51 36 Saturday, August 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.49 30 Thursday, August 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.48 37 Wednesday, August 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.46 34 Friday, August 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.43 38 Tuesday, August 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.42 39 Monday, August 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.40 37 Friday, July 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.38 31 Wednesday, July 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.37 32 Tuesday, July 26, 2022 Approved
AWS Command Line Interface (Install) 1.25.35 31 Friday, July 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.32 30 Tuesday, July 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.28 36 Wednesday, July 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.25 35 Friday, July 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.23 36 Wednesday, July 6, 2022 Approved
AWS Command Line Interface (Install) 1.25.22 41 Saturday, July 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.21 35 Friday, July 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.19 33 Wednesday, June 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.18 37 Tuesday, June 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.16 36 Friday, June 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.14 33 Wednesday, June 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.13 39 Tuesday, June 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.10 44 Thursday, June 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.9 33 Wednesday, June 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.8 52 Tuesday, June 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.7 40 Saturday, June 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.6 40 Friday, June 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.4 29 Wednesday, June 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.3 36 Tuesday, June 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.2 39 Friday, June 3, 2022 Approved
AWS Command Line Interface (Install) 1.25.0 40 Wednesday, June 1, 2022 Approved
AWS Command Line Interface (Install) 1.24.9 34 Friday, May 27, 2022 Approved
AWS Command Line Interface (Install) 1.24.7 41 Wednesday, May 25, 2022 Approved
AWS Command Line Interface (Install) 1.24.6 39 Tuesday, May 24, 2022 Approved
AWS Command Line Interface (Install) 1.24.4 43 Friday, May 20, 2022 Approved
AWS Command Line Interface (Install) 1.24.2 42 Wednesday, May 18, 2022 Approved
AWS Command Line Interface (Install) 1.24.1 42 Tuesday, May 17, 2022 Approved
AWS Command Line Interface (Install) 1.23.13 40 Friday, May 13, 2022 Approved
AWS Command Line Interface (Install) 1.23.11 46 Wednesday, May 11, 2022 Approved
AWS Command Line Interface (Install) 1.23.6 74 Wednesday, May 4, 2022 Approved
AWS Command Line Interface (Install) 1.23.5 47 Tuesday, May 3, 2022 Approved
AWS Command Line Interface (Install) 1.23.3 37 Thursday, April 28, 2022 Approved
AWS Command Line Interface (Install) 1.23.1 37 Wednesday, April 27, 2022 Approved
AWS Command Line Interface (Install) 1.23.0 43 Tuesday, April 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.101 43 Saturday, April 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.98 35 Wednesday, April 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.96 40 Friday, April 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.94 49 Wednesday, April 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.93 46 Tuesday, April 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.89 47 Wednesday, April 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.88 45 Tuesday, April 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.86 41 Friday, April 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.84 40 Wednesday, March 30, 2022 Approved
AWS Command Line Interface (Install) 1.22.81 48 Friday, March 25, 2022 Approved
AWS Command Line Interface (Install) 1.22.79 37 Wednesday, March 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.78 46 Tuesday, March 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.77 44 Saturday, March 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.74 40 Tuesday, March 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.71 43 Thursday, March 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.69 48 Tuesday, March 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.68 44 Saturday, March 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.66 46 Thursday, March 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.64 45 Tuesday, March 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.63 39 Saturday, February 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.61 44 Thursday, February 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.59 50 Tuesday, February 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.58 41 Saturday, February 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.56 44 Thursday, February 17, 2022 Approved
AWS Command Line Interface (Install) 1.22.55 46 Tuesday, February 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.54 90 Saturday, February 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.52 59 Thursday, February 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.50 42 Tuesday, February 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.49 45 Saturday, February 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.47 50 Thursday, February 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.46 54 Saturday, January 29, 2022 Approved
AWS Command Line Interface (Install) 1.22.44 56 Thursday, January 27, 2022 Approved
AWS Command Line Interface (Install) 1.22.42 54 Monday, January 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.39 52 Thursday, January 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.37 55 Saturday, January 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.34 57 Thursday, January 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.32 47 Monday, January 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.31 55 Saturday, January 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.29 47 Thursday, January 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.25 133 Tuesday, December 21, 2021 Approved
AWS Command Line Interface (Install) 1.22.24 52 Tuesday, December 14, 2021 Approved
AWS Command Line Interface (Install) 1.22.22 48 Thursday, December 9, 2021 Approved
AWS Command Line Interface (Install) 1.22.21 40 Tuesday, December 7, 2021 Approved
AWS Command Line Interface (Install) 1.22.13 70 Thursday, November 25, 2021 Approved
AWS Command Line Interface (Install) 1.22.11 58 Tuesday, November 23, 2021 Approved
AWS Command Line Interface (Install) 1.22.10 44 Saturday, November 20, 2021 Approved
AWS Command Line Interface (Install) 1.22.8 59 Thursday, November 18, 2021 Approved
AWS Command Line Interface (Install) 1.22.6 59 Tuesday, November 16, 2021 Approved
AWS Command Line Interface (Install) 1.22.5 54 Saturday, November 13, 2021 Approved
AWS Command Line Interface (Install) 1.22.3 88 Thursday, November 11, 2021 Approved
AWS Command Line Interface (Install) 1.22.1 57 Tuesday, November 9, 2021 Approved
AWS Command Line Interface (Install) 1.21.12 123 Saturday, November 6, 2021 Approved
AWS Command Line Interface (Install) 1.21.0 60 Thursday, October 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.64 51 Tuesday, October 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.63 56 Saturday, October 16, 2021 Approved
AWS Command Line Interface (Install) 1.20.61 52 Thursday, October 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.58 151 Saturday, October 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.57 61 Friday, October 8, 2021 Approved
AWS Command Line Interface (Install) 1.20.56 53 Thursday, October 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.54 47 Tuesday, October 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.53 51 Saturday, October 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.51 57 Thursday, September 30, 2021 Approved
AWS Command Line Interface (Install) 1.20.49 62 Tuesday, September 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.48 61 Saturday, September 25, 2021 Approved
AWS Command Line Interface (Install) 1.20.46 50 Thursday, September 23, 2021 Approved
AWS Command Line Interface (Install) 1.20.44 65 Saturday, September 18, 2021 Approved
AWS Command Line Interface (Install) 1.20.40 88 Saturday, September 11, 2021 Approved
AWS Command Line Interface (Install) 1.20.38 64 Thursday, September 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.36 54 Saturday, September 4, 2021 Approved
AWS Command Line Interface (Install) 1.20.34 65 Thursday, September 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.32 60 Tuesday, August 31, 2021 Approved
AWS Command Line Interface (Install) 1.20.31 50 Saturday, August 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.29 50 Thursday, August 26, 2021 Approved
AWS Command Line Interface (Install) 1.20.27 54 Tuesday, August 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.26 81 Saturday, August 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.24 53 Thursday, August 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.23 78 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.22 56 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.21 62 Saturday, August 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.19 56 Thursday, August 12, 2021 Approved
AWS Command Line Interface (Install) 1.20.17 61 Tuesday, August 10, 2021 Approved
AWS Command Line Interface (Install) 1.20.16 59 Saturday, August 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.15 72 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.14 64 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.12 50 Tuesday, August 3, 2021 Approved
AWS Command Line Interface (Install) 1.20.9 55 Thursday, July 29, 2021 Approved
AWS Command Line Interface (Install) 1.20.7 71 Tuesday, July 27, 2021 Approved
AWS Command Line Interface (Install) 1.20.6 60 Saturday, July 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.4 54 Thursday, July 22, 2021 Approved
AWS Command Line Interface (Install) 1.20.2 60 Monday, July 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.1 59 Saturday, July 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.111 56 Wednesday, July 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.110 60 Tuesday, July 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.109 65 Saturday, July 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.107 57 Thursday, July 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.105 62 Friday, July 2, 2021 Approved
AWS Command Line Interface (Install) 1.19.103 1129 Thursday, July 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.102 62 Tuesday, June 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.101 54 Saturday, June 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.99 66 Thursday, June 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.98 54 Tuesday, June 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.96 60 Thursday, June 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.94 63 Tuesday, June 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.93 61 Saturday, June 12, 2021 Approved
AWS Command Line Interface (Install) 1.19.92 69 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.91 65 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.89 65 Tuesday, June 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.88 56 Saturday, June 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.86 58 Thursday, June 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.84 61 Saturday, May 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.82 58 Thursday, May 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.79 69 Tuesday, May 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.78 63 Saturday, May 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.77 56 Friday, May 21, 2021 Approved
AWS Command Line Interface (Install) 1.19.76 54 Thursday, May 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.75 61 Wednesday, May 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.74 63 Tuesday, May 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.72 53 Friday, May 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.70 75 Tuesday, May 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.69 68 Saturday, May 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.67 64 Thursday, May 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.64 62 Monday, May 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.62 70 Saturday, May 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.60 48 Thursday, April 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.58 62 Tuesday, April 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.57 57 Saturday, April 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.56 56 Friday, April 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.54 66 Tuesday, April 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.52 54 Thursday, April 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.50 52 Tuesday, April 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.49 62 Saturday, April 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.45 58 Tuesday, April 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.44 52 Saturday, April 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.42 51 Thursday, April 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.40 57 Monday, March 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.39 75 Saturday, March 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.37 69 Thursday, March 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.35 76 Wednesday, March 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.34 65 Tuesday, March 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.32 65 Friday, March 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.30 61 Thursday, March 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.29 64 Wednesday, March 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.28 74 Tuesday, March 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.27 65 Saturday, March 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.26 3584 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.25 71 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.23 69 Tuesday, March 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.22 67 Saturday, March 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.21 63 Friday, March 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.20 74 Thursday, March 4, 2021 Approved
AWS Command Line Interface (Install) 1.19.19 62 Wednesday, March 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.17 77 Saturday, February 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.16 62 Friday, February 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.15 59 Thursday, February 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.13 54 Tuesday, February 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.12 58 Saturday, February 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.11 55 Friday, February 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.10 74 Thursday, February 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.8 66 Tuesday, February 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.7 69 Saturday, February 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.4 77 Tuesday, February 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.3 164 Saturday, February 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.1 76 Thursday, February 4, 2021 Approved
AWS Command Line Interface (Install) 1.18.223 68 Saturday, January 30, 2021 Approved
AWS Command Line Interface (Install) 1.18.221 77 Thursday, January 28, 2021 Approved
AWS Command Line Interface (Install) 1.18.220 78 Wednesday, January 27, 2021 Approved
AWS Command Line Interface (Install) 1.18.219 92 Saturday, January 23, 2021 Approved
AWS Command Line Interface (Install) 1.18.216 64 Saturday, January 16, 2021 Approved
AWS Command Line Interface (Install) 1.18.214 84 Thursday, January 14, 2021 Approved
AWS Command Line Interface (Install) 1.18.212 77 Tuesday, January 12, 2021 Approved
AWS Command Line Interface (Install) 1.18.210 75 Thursday, January 7, 2021 Approved
AWS Command Line Interface (Install) 1.18.208 86 Tuesday, January 5, 2021 Approved
AWS Command Line Interface (Install) 1.18.207 70 Friday, January 1, 2021 Approved
AWS Command Line Interface (Install) 1.18.206 72 Thursday, December 31, 2020 Approved
AWS Command Line Interface (Install) 1.18.205 67 Tuesday, December 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.204 61 Monday, December 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.201 65 Tuesday, December 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.200 73 Friday, December 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.197 69 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.196 65 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.195 1125 Saturday, December 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.193 69 Wednesday, December 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.191 59 Tuesday, December 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.190 67 Saturday, December 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.184 85 Tuesday, November 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.183 77 Saturday, November 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.181 93 Thursday, November 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.179 87 Tuesday, November 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.178 92 Saturday, November 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.176 68 Thursday, November 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.174 70 Monday, November 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.173 73 Saturday, November 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.171 144 Thursday, November 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.170 84 Tuesday, November 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.167 84 Thursday, October 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.165 205 Tuesday, October 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.164 89 Saturday, October 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.162 79 Thursday, October 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.160 90 Tuesday, October 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.159 76 Saturday, October 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.157 155 Saturday, October 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.153 87 Tuesday, October 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.152 95 Saturday, October 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.150 80 Thursday, October 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.148 85 Tuesday, September 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.147 111 Saturday, September 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.146 73 Thursday, September 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.144 71 Wednesday, September 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.143 82 Tuesday, September 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.142 85 Saturday, September 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.141 371 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.140 89 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.138 75 Tuesday, September 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.137 82 Saturday, September 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.133 137 Saturday, September 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.131 82 Thursday, September 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.129 95 Tuesday, September 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.128 95 Saturday, August 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.126 113 Thursday, August 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.125 101 Tuesday, August 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.123 109 Thursday, August 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.121 139 Tuesday, August 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.120 93 Saturday, August 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.119 86 Thursday, August 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.116 4399 Monday, August 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.115 109 Saturday, August 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.113 135 Thursday, August 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.111 128 Tuesday, August 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.110 133 Saturday, August 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.108 120 Thursday, July 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.106 142 Tuesday, July 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.105 135 Saturday, July 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.103 152 Thursday, July 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.101 1236 Tuesday, July 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.100 137 Saturday, July 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.96 166 Thursday, July 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.94 185 Tuesday, July 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.92 167 Thursday, July 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.90 160 Tuesday, June 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.89 209 Saturday, June 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.87 163 Thursday, June 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.85 173 Tuesday, June 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.84 191 Saturday, June 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.82 163 Thursday, June 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.80 203 Tuesday, June 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.79 185 Saturday, June 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.75 156 Tuesday, June 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.74 182 Saturday, June 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.72 181 Thursday, June 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.70 167 Tuesday, June 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.69 5702 Friday, May 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.68 203 Thursday, May 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.65 12096 Thursday, May 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.63 152 Wednesday, May 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.62 195 Tuesday, May 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.61 172 Saturday, May 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.57 156 Tuesday, May 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.56 217 Saturday, May 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.54 173 Thursday, May 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.52 154 Tuesday, May 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.51 237 Saturday, May 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.50 141 Friday, May 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.49 153 Thursday, April 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.46 325 Saturday, April 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.43 187 Wednesday, April 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.42 523 Tuesday, April 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.41 153 Friday, April 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.39 194 Thursday, April 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.36 199 Saturday, April 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.35 167 Friday, April 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.34 143 Thursday, April 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.31 182 Saturday, March 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.30 187 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.29 154 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.28 258 Wednesday, March 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.26 193 Saturday, March 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.25 199 Friday, March 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.24 172 Thursday, March 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.22 156 Tuesday, March 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.21 211 Saturday, March 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.20 184 Friday, March 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.19 194 Thursday, March 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.16 145 Saturday, March 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.15 132 Friday, March 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.14 189 Thursday, March 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.11 20822 Saturday, February 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.9 5333 Friday, February 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.6 3649 Tuesday, February 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.5 4387 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.4 1173 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.3 1375 Thursday, February 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.2 1360 Wednesday, February 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.1 1623 Tuesday, February 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.0 1933 Saturday, February 15, 2020 Approved
AWS Command Line Interface (Install) 1.17.17 4178 Friday, February 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.16 1558 Thursday, February 13, 2020 Approved
AWS Command Line Interface (Install) 1.17.15 1505 Wednesday, February 12, 2020 Approved
AWS Command Line Interface (Install) 1.17.13 3017 Saturday, February 8, 2020 Approved
AWS Command Line Interface (Install) 1.17.12 1195 Friday, February 7, 2020 Approved
AWS Command Line Interface (Install) 1.17.11 127 Thursday, February 6, 2020 Approved
AWS Command Line Interface (Install) 1.17.10 150 Wednesday, February 5, 2020 Approved
AWS Command Line Interface (Install) 1.17.9 8237 Saturday, January 25, 2020 Approved
AWS Command Line Interface (Install) 1.17.8 914 Friday, January 24, 2020 Approved
AWS Command Line Interface (Install) 1.17.7 3004 Wednesday, January 22, 2020 Approved
AWS Command Line Interface (Install) 1.17.6 247 Tuesday, January 21, 2020 Approved
AWS Command Line Interface (Install) 1.17.5 2524 Saturday, January 18, 2020 Approved
AWS Command Line Interface (Install) 1.17.4 1170 Friday, January 17, 2020 Approved
AWS Command Line Interface (Install) 1.17.3 1081 Thursday, January 16, 2020 Approved
AWS Command Line Interface (Install) 1.17.2 1998 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.1 1146 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.0 1974 Saturday, January 11, 2020 Approved
AWS Command Line Interface (Install) 1.16.314 1341 Friday, January 10, 2020 Approved
AWS Command Line Interface (Install) 1.16.313 1385 Thursday, January 9, 2020 Approved
AWS Command Line Interface (Install) 1.16.312 1077 Wednesday, January 8, 2020 Approved
AWS Command Line Interface (Install) 1.16.311 1311 Tuesday, January 7, 2020 Approved
AWS Command Line Interface (Install) 1.16.310 144 Friday, January 3, 2020 Approved
AWS Command Line Interface (Install) 1.16.309 1393 Tuesday, December 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.308 5776 Saturday, December 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.307 1031 Friday, December 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.305 2000 Wednesday, December 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.303 2487 Saturday, December 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.302 1158 Friday, December 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.301 1492 Thursday, December 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.300 1255 Wednesday, December 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.299 1503 Tuesday, December 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.298 2524 Friday, December 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.297 1272 Thursday, December 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.296 1317 Wednesday, December 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.294 784 Tuesday, December 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.292 4543 Wednesday, November 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.291 1335 Tuesday, November 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.290 2028 Saturday, November 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.289 1182 Friday, November 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.287 1263 Thursday, November 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.286 1715 Wednesday, November 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.284 1517 Tuesday, November 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.283 2182 Saturday, November 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.282 1245 Friday, November 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.281 1503 Thursday, November 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.280 1484 Wednesday, November 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.279 1419 Tuesday, November 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.278 2041 Saturday, November 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.277 2598 Friday, November 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.276 1353 Thursday, November 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.274 1599 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.273 1267 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.272 2050 Saturday, November 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.271 987 Friday, November 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.270 1468 Thursday, October 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.269 1512 Wednesday, October 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.268 1579 Tuesday, October 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.266 2851 Friday, October 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.265 1748 Thursday, October 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.264 1521 Wednesday, October 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.263 3524 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.262 684 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.261 2310 Thursday, October 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.260 1535 Wednesday, October 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.259 1473 Tuesday, October 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.258 1929 Saturday, October 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.257 1287 Friday, October 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.256 2027 Thursday, October 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.255 1661 Wednesday, October 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.254 1356 Tuesday, October 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.253 1992 Saturday, October 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.252 1486 Friday, October 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.251 2111 Thursday, October 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.250 1611 Wednesday, October 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.249 1618 Tuesday, October 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.248 2321 Saturday, September 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.247 1103 Friday, September 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.246 1812 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.245 1410 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.244 1494 Tuesday, September 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.243 1828 Saturday, September 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.242 1201 Friday, September 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.241 2301 Thursday, September 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.240 1469 Wednesday, September 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.239 1123 Tuesday, September 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.238 7128 Friday, September 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.237 1799 Thursday, September 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.236 1352 Wednesday, September 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.235 1284 Tuesday, September 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.234 1761 Saturday, September 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.233 1180 Friday, September 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.232 1809 Thursday, September 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.231 1223 Wednesday, September 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.230 2480 Saturday, August 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.229 1847 Friday, August 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.228 2792 Thursday, August 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.227 2319 Wednesday, August 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.226 1239 Tuesday, August 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.225 1987 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.224 1057 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.223 1100 Thursday, August 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.222 1199 Wednesday, August 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.221 2556 Tuesday, August 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.220 1822 Saturday, August 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.219 1069 Friday, August 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.218 1153 Thursday, August 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.217 1623 Wednesday, August 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.216 1098 Tuesday, August 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.215 1613 Saturday, August 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.214 986 Friday, August 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.213 2180 Thursday, August 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.212 513 Wednesday, August 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.211 1690 Tuesday, August 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.210 1634 Saturday, August 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.209 5009 Wednesday, July 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.208 984 Tuesday, July 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.207 1600 Saturday, July 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.206 1153 Friday, July 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.205 1345 Thursday, July 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.204 1162 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.203 1162 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.202 1127 Monday, July 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.201 793 Saturday, July 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.200 889 Friday, July 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.199 1081 Thursday, July 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.198 3086 Saturday, July 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.197 905 Friday, July 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.196 997 Thursday, July 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.195 1014 Wednesday, July 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.194 1231 Tuesday, July 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.193 2688 Thursday, July 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.192 944 Wednesday, July 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.191 946 Tuesday, July 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.190 1506 Saturday, June 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.189 837 Friday, June 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.188 948 Thursday, June 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.186 1168 Wednesday, June 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.185 983 Tuesday, June 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.184 2801 Saturday, June 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.183 946 Friday, June 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.182 821 Thursday, June 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.181 1322 Wednesday, June 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.180 1428 Tuesday, June 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.179 1653 Saturday, June 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.178 860 Friday, June 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.177 2236 Thursday, June 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.176 1545 Wednesday, June 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.175 1457 Tuesday, June 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.174 1848 Saturday, June 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.173 1034 Friday, June 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.172 1238 Thursday, June 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.171 1248 Wednesday, June 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.170 1397 Tuesday, June 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.169 2949 Friday, May 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.168 1136 Thursday, May 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.167 1022 Wednesday, May 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.166 2286 Saturday, May 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.165 996 Friday, May 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.164 12736 Thursday, May 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.163 1217 Wednesday, May 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.162 1254 Monday, May 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.161 1740 Saturday, May 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.160 1083 Friday, May 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.159 980 Thursday, May 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.158 1061 Wednesday, May 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.157 1352 Tuesday, May 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.156 1795 Saturday, May 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.155 1644 Thursday, May 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.154 1193 Wednesday, May 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.153 1275 Tuesday, May 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.152 2569 Saturday, May 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.151 1390 Friday, May 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.150 1205 Thursday, May 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.149 993 Wednesday, May 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.148 1192 Tuesday, April 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.147 1935 Saturday, April 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.146 1169 Friday, April 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.145 1447 Thursday, April 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.144 2933 Saturday, April 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.143 1047 Friday, April 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.142 1015 Thursday, April 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.141 1072 Wednesday, April 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.140 10503 Saturday, April 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.139 1082 Friday, April 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.138 1202 Thursday, April 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.137 735 Wednesday, April 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.136 1439 Tuesday, April 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.135 1973 Saturday, March 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.134 1138 Friday, March 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.133 1662 Thursday, March 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.132 1511 Tuesday, March 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.131 1151 Tuesday, March 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.130 1823 Saturday, March 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.129 934 Friday, March 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.128 1125 Thursday, March 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.127 886 Wednesday, March 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.126 1588 Tuesday, March 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.125 2581 Friday, March 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.124 1163 Thursday, March 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.123 387 Wednesday, March 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.122 1892 Tuesday, March 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.121 1887 Saturday, March 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.120 1008 Friday, March 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.119 1023 Thursday, March 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.118 1136 Wednesday, March 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.117 1515 Tuesday, March 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.116 1633 Saturday, March 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.115 1349 Friday, March 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.114 4642 Thursday, February 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.113 1496 Wednesday, February 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.112 1159 Tuesday, February 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.111 1623 Saturday, February 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.110 914 Friday, February 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.109 1286 Thursday, February 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.108 1163 Wednesday, February 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.107 1196 Tuesday, February 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.106 1883 Saturday, February 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.105 1200 Friday, February 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.104 1142 Thursday, February 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.103 811 Wednesday, February 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.102 1214 Tuesday, February 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.101 1475 Saturday, February 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.99 1664 Thursday, February 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.98 1201 Wednesday, February 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.97 1134 Tuesday, February 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.96 5836 Saturday, January 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.94 1703 Thursday, January 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.93 1738 Tuesday, January 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.92 1671 Saturday, January 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.91 999 Friday, January 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.90 1186 Thursday, January 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.89 1811 Tuesday, January 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.88 1576 Saturday, January 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.87 899 Friday, January 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.86 925 Thursday, January 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.85 1698 Tuesday, January 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.84 1481 Saturday, January 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.81 4977 Saturday, December 22, 2018 Approved
AWS Command Line Interface (Install) 1.16.80 824 Friday, December 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.79 890 Thursday, December 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.78 1068 Wednesday, December 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.77 906 Tuesday, December 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.76 1429 Saturday, December 15, 2018 Approved
AWS Command Line Interface (Install) 1.16.75 1023 Friday, December 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.74 1133 Thursday, December 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.73 1131 Wednesday, December 12, 2018 Approved
AWS Command Line Interface (Install) 1.16.72 2511 Saturday, December 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.71 1016 Friday, December 7, 2018 Approved
AWS Command Line Interface (Install) 1.16.70 1406 Thursday, December 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.69 1304 Wednesday, December 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.68 1936 Tuesday, December 4, 2018 Approved
AWS Command Line Interface (Install) 1.16.67 2957 Friday, November 30, 2018 Approved
AWS Command Line Interface (Install) 1.16.65 1023 Thursday, November 29, 2018 Approved
AWS Command Line Interface (Install) 1.16.63 1242 Wednesday, November 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.60 3968 Thursday, November 22, 2018 Approved
AWS Command Line Interface (Install) 1.16.59 739 Wednesday, November 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.58 1474 Tuesday, November 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.57 2077 Saturday, November 17, 2018 Approved
AWS Command Line Interface (Install) 1.16.56 1199 Friday, November 16, 2018 Approved
AWS Command Line Interface (Install) 1.16.55 1249 Thursday, November 15, 2018 Approved
AWS Command Line Interface (Install) 1.16.54 1237 Wednesday, November 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.53 1358 Tuesday, November 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.52 1917 Saturday, November 10, 2018 Approved
AWS Command Line Interface (Install) 1.16.51 753 Friday, November 9, 2018 Approved
AWS Command Line Interface (Install) 1.16.50 642 Thursday, November 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.48 2408 Tuesday, November 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.47 1762 Saturday, November 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.46 1004 Friday, November 2, 2018 Approved
AWS Command Line Interface (Install) 1.16.45 1101 Thursday, November 1, 2018 Approved
AWS Command Line Interface (Install) 1.16.44 1097 Wednesday, October 31, 2018 Approved
AWS Command Line Interface (Install) 1.16.43 2241 Sunday, October 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.42 1478 Friday, October 26, 2018 Approved
AWS Command Line Interface (Install) 1.16.41 1024 Thursday, October 25, 2018 Approved
AWS Command Line Interface (Install) 1.16.40 1074 Wednesday, October 24, 2018 Approved
AWS Command Line Interface (Install) 1.16.39 961 Tuesday, October 23, 2018 Approved
AWS Command Line Interface (Install) 1.16.38 1115 Sunday, October 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.37 1528 Friday, October 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.36 1037 Thursday, October 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.35 1231 Wednesday, October 17, 2018 Approved
AWS Command Line Interface (Install) 1.16.34 962 Tuesday, October 16, 2018 Approved
AWS Command Line Interface (Install) 1.16.33 1031 Sunday, October 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.32 1519 Friday, October 12, 2018 Approved
AWS Command Line Interface (Install) 1.16.29 2402 Tuesday, October 9, 2018 Approved
AWS Command Line Interface (Install) 1.16.28 1016 Monday, October 8, 2018 Approved
AWS Command Line Interface (Install) 1.16.27 1513 Friday, October 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.26 1552 Wednesday, October 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.25 1031 Tuesday, October 2, 2018 Approved
AWS Command Line Interface (Install) 1.16.24 1017 Monday, October 1, 2018 Approved
AWS Command Line Interface (Install) 1.16.23 1396 Friday, September 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.22 948 Thursday, September 27, 2018 Approved
AWS Command Line Interface (Install) 1.16.21 1007 Wednesday, September 26, 2018 Approved
AWS Command Line Interface (Install) 1.16.20 1052 Tuesday, September 25, 2018 Approved
AWS Command Line Interface (Install) 1.16.19 1005 Monday, September 24, 2018 Approved
AWS Command Line Interface (Install) 1.16.18 1932 Friday, September 21, 2018 Approved
AWS Command Line Interface (Install) 1.16.17 1291 Thursday, September 20, 2018 Approved
AWS Command Line Interface (Install) 1.16.16 1069 Wednesday, September 19, 2018 Approved
AWS Command Line Interface (Install) 1.16.15 1201 Tuesday, September 18, 2018 Approved
AWS Command Line Interface (Install) 1.16.14 2498 Friday, September 14, 2018 Approved
AWS Command Line Interface (Install) 1.16.13 1153 Thursday, September 13, 2018 Approved
AWS Command Line Interface (Install) 1.16.11 1724 Tuesday, September 11, 2018 Approved
AWS Command Line Interface (Install) 1.16.10 1264 Monday, September 10, 2018 Approved
AWS Command Line Interface (Install) 1.16.9 1722 Friday, September 7, 2018 Approved
AWS Command Line Interface (Install) 1.16.8 996 Thursday, September 6, 2018 Approved
AWS Command Line Interface (Install) 1.16.7 1004 Wednesday, September 5, 2018 Approved
AWS Command Line Interface (Install) 1.16.6 1757 Monday, September 3, 2018 Approved
AWS Command Line Interface (Install) 1.16.5 1911 Friday, August 31, 2018 Approved
AWS Command Line Interface (Install) 1.16.4 1023 Thursday, August 30, 2018 Approved
AWS Command Line Interface (Install) 1.16.3 659 Wednesday, August 29, 2018 Approved
AWS Command Line Interface (Install) 1.16.2 470 Tuesday, August 28, 2018 Approved
AWS Command Line Interface (Install) 1.16.1 1888 Monday, August 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.85 1604 Friday, August 24, 2018 Approved
AWS Command Line Interface (Install) 1.15.84 1802 Thursday, August 23, 2018 Approved
AWS Command Line Interface (Install) 1.15.83 616 Wednesday, August 22, 2018 Approved
AWS Command Line Interface (Install) 1.15.82 1362 Tuesday, August 21, 2018 Approved
AWS Command Line Interface (Install) 1.15.81 1036 Monday, August 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.80 1572 Friday, August 17, 2018 Approved
AWS Command Line Interface (Install) 1.15.79 901 Thursday, August 16, 2018 Approved
AWS Command Line Interface (Install) 1.15.78 922 Wednesday, August 15, 2018 Approved
AWS Command Line Interface (Install) 1.15.77 841 Tuesday, August 14, 2018 Approved
AWS Command Line Interface (Install) 1.15.76 939 Monday, August 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.75 1556 Friday, August 10, 2018 Approved
AWS Command Line Interface (Install) 1.15.74 949 Thursday, August 9, 2018 Approved
AWS Command Line Interface (Install) 1.15.73 900 Wednesday, August 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.72 926 Tuesday, August 7, 2018 Approved
AWS Command Line Interface (Install) 1.15.71 932 Monday, August 6, 2018 Approved
AWS Command Line Interface (Install) 1.15.70 1387 Friday, August 3, 2018 Approved
AWS Command Line Interface (Install) 1.15.69 945 Thursday, August 2, 2018 Approved
AWS Command Line Interface (Install) 1.15.68 972 Wednesday, August 1, 2018 Approved
AWS Command Line Interface (Install) 1.15.67 965 Tuesday, July 31, 2018 Approved
AWS Command Line Interface (Install) 1.15.66 2222 Friday, July 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.65 1008 Thursday, July 26, 2018 Approved
AWS Command Line Interface (Install) 1.15.64 979 Wednesday, July 25, 2018 Approved
AWS Command Line Interface (Install) 1.15.63 1971 Monday, July 23, 2018 Approved
AWS Command Line Interface (Install) 1.15.62 1501 Friday, July 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.61 1063 Thursday, July 19, 2018 Approved
AWS Command Line Interface (Install) 1.15.60 1019 Wednesday, July 18, 2018 Approved
AWS Command Line Interface (Install) 1.15.59 1468 Monday, July 16, 2018 Approved
AWS Command Line Interface (Install) 1.15.58 1354 Friday, July 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.57 941 Thursday, July 12, 2018 Approved
AWS Command Line Interface (Install) 1.15.56 941 Wednesday, July 11, 2018 Approved
AWS Command Line Interface (Install) 1.15.55 873 Tuesday, July 10, 2018 Approved
AWS Command Line Interface (Install) 1.15.53 968 Sunday, July 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.52 1245 Friday, July 6, 2018 Approved
AWS Command Line Interface 1.15.51 1534 Tuesday, July 3, 2018 Approved
AWS Command Line Interface 1.15.50 882 Monday, July 2, 2018 Approved
AWS Command Line Interface (Install) 1.15.49 1888 Friday, June 29, 2018 Approved
AWS Command Line Interface (Install) 1.15.47 881 Thursday, June 28, 2018 Approved
AWS Command Line Interface (Install) 1.15.46 461 Wednesday, June 27, 2018 Approved
AWS Command Line Interface (Install) 1.15.45 435 Monday, June 25, 2018 Approved
AWS Command Line Interface (Install) 1.15.44 691 Friday, June 22, 2018 Approved
AWS Command Line Interface (Install) 1.15.42 3001 Thursday, June 21, 2018 Approved
AWS Command Line Interface (Install) 1.15.41 940 Wednesday, June 20, 2018 Approved
AWS Command Line Interface (Install) 1.15.40 1407 Monday, June 18, 2018 Approved
AWS Command Line Interface (Install) 1.15.39 1400 Friday, June 15, 2018 Approved
AWS Command Line Interface (Install) 1.15.37 1495 Wednesday, June 13, 2018 Approved
AWS Command Line Interface (Install) 1.15.35 1455 Monday, June 11, 2018 Approved
AWS Command Line Interface (Install) 1.15.34 1545 Friday, June 8, 2018 Approved
AWS Command Line Interface (Install) 1.15.33 1801 Wednesday, June 6, 2018 Approved
AWS Command Line Interface ((Install) 1.15.31 2135 Saturday, June 2, 2018 Approved
AWS Command Line Interface 1.15.20 6925 Tuesday, May 15, 2018 Approved
AWS Command Line Interface 1.15.2 15321 Friday, April 6, 2018 Approved
AWS Command Line Interface 1.15.1 721 Thursday, April 5, 2018 Approved
AWS Command Line Interface 1.15.0 667 Wednesday, April 4, 2018 Approved
AWS Command Line Interface 1.14.70 773 Tuesday, April 3, 2018 Approved
AWS Command Line Interface 1.14.69