Unpacking Software Livestream

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

Learn More

Chocolatey Product Spotlight

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

Learn More

Chocolatey Coding Livestream

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

Learn More

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

Webinar from
Wednesday, 17 January 2024

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

Watch On-Demand
Chocolatey Community Coffee Break

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

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

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

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

Livestream from
Thursday, 9 June 2022

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

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

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

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

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

Watch On-Demand

Downloads:

4,709,989

Downloads of v 1.16.198:

3,108

Last Update:

13 Jul 2019

Package Maintainer(s):

Software Author(s):

  • Amazon Web Services

Tags:

awscli aws cli 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.16.198 | Updated: 13 Jul 2019

Downloads:

4,709,989

Downloads of v 1.16.198:

3,108

Maintainer(s):

Software Author(s):

  • Amazon Web Services

AWS Command Line Interface (Install) 1.16.198

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

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

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

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

>

Deployment Method:

NOTE

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

1. Enter Your Internal Repository Url

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


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

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

3. Copy Your Script

choco upgrade awscli -y --source="'INTERNAL REPO URL'" --version="'1.16.198'" [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.16.198'" 
$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.16.198'
    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.16.198'
end

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


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

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


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

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

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

WARNING

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

Package Approved

This package was approved as a trusted package on 13 Jul 2019.

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.16.198.msi'
$checksum   = '40433953a32f5d529006bf29d3b1274d81cd1ec4c897afb269212d4621fd7efa'
$url64      = 'https://s3.amazonaws.com/aws-cli/AWSCLI64PY3-1.16.198.msi'
$checksum64 = '47366807ea68791fb57ec210b1765d8262b38d4a467f6ddc95294eb29fe10a99'
 
$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.17.50 3043 Friday, September 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.49 3419 Thursday, September 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.48 4084 Wednesday, September 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.47 6076 Monday, September 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.46 4003 Saturday, September 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.45 177 Friday, September 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.44 3196 Thursday, September 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.43 7324 Wednesday, September 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.42 9190 Saturday, August 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.41 10 Friday, August 30, 2024
Waiting for Maintainer
AWS Command Line Interface v2 (Install) 2.17.40 4474 Thursday, August 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.39 3541 Wednesday, August 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.38 3523 Tuesday, August 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.37 7352 Saturday, August 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.36 2882 Friday, August 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.35 3132 Thursday, August 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.34 3761 Wednesday, August 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.33 3367 Tuesday, August 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.32 6753 Saturday, August 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.31 2428 Friday, August 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.30 2761 Thursday, August 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.29 4350 Wednesday, August 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.28 3091 Tuesday, August 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.27 5297 Saturday, August 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.26 3049 Friday, August 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.25 3095 Thursday, August 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.24 2540 Wednesday, August 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.23 3970 Tuesday, August 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.22 5994 Saturday, August 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.21 2789 Friday, August 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.20 5418 Wednesday, July 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.19 2375 Tuesday, July 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.18 7121 Friday, July 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.16 5385 Wednesday, July 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.15 3241 Tuesday, July 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.14 8445 Friday, July 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.13 12263 Saturday, July 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.12 4037 Thursday, July 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.11 3635 Wednesday, July 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.10 3805 Tuesday, July 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.9 7863 Saturday, July 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.8 4686 Thursday, July 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.7 4128 Wednesday, July 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.6 3378 Tuesday, July 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.5 7448 Saturday, June 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.4 1870 Friday, June 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.3 56 Thursday, June 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.2 6222 Wednesday, June 26, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.1 4503 Tuesday, June 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.17.0 9339 Friday, June 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.12 4087 Thursday, June 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.11 2678 Wednesday, June 19, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.10 4730 Tuesday, June 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.9 8007 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.8 1900 Friday, June 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.7 4362 Thursday, June 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.6 3880 Wednesday, June 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.5 4459 Tuesday, June 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.4 7351 Saturday, June 8, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.3 1666 Friday, June 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.2 4796 Thursday, June 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.1 3505 Wednesday, June 5, 2024 Approved
AWS Command Line Interface v2 (Install) 2.16.0 3199 Tuesday, June 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.62 6018 Saturday, June 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.61 3008 Friday, May 31, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.60 5206 Thursday, May 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.59 3884 Wednesday, May 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.58 10876 Saturday, May 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.57 3450 Friday, May 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.56 3104 Thursday, May 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.55 4384 Wednesday, May 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.54 2751 Tuesday, May 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.53 6176 Saturday, May 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.52 2510 Friday, May 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.51 3560 Thursday, May 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.50 2983 Wednesday, May 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.49 3003 Tuesday, May 14, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.48 7391 Saturday, May 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.47 3722 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.46 1004 Thursday, May 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.45 6646 Tuesday, May 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.44 12187 Saturday, May 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.43 4566 Thursday, May 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.42 10572 Saturday, April 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.41 5056 Thursday, April 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.40 10077 Saturday, April 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.39 4438 Thursday, April 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.38 10717 Saturday, April 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.37 4278 Thursday, April 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.36 10041 Saturday, April 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.35 4479 Thursday, April 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.34 12103 Saturday, March 30, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.33 5024 Thursday, March 28, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.32 11283 Saturday, March 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.31 6464 Thursday, March 21, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.30 12758 Saturday, March 16, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.28 10874 Tuesday, March 12, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.27 7002 Saturday, March 9, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.26 6690 Thursday, March 7, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.25 21947 Saturday, March 2, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.24 8415 Thursday, February 29, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.23 15537 Saturday, February 24, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.22 8322 Thursday, February 22, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.21 12828 Saturday, February 17, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.20 7095 Thursday, February 15, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.19 16599 Saturday, February 10, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.17 20690 Saturday, February 3, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.16 6664 Thursday, February 1, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.15 14892 Saturday, January 27, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.14 7074 Thursday, January 25, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.13 8595 Tuesday, January 23, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.12 8897 Saturday, January 20, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.11 8018 Thursday, January 18, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.10 13549 Saturday, January 13, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.9 7074 Thursday, January 11, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.8 12346 Saturday, January 6, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.7 6323 Thursday, January 4, 2024 Approved
AWS Command Line Interface v2 (Install) 2.15.6 10111 Saturday, December 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.5 4995 Thursday, December 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.4 8656 Saturday, December 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.3 6458 Thursday, December 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.2 11606 Saturday, December 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.1 5111 Thursday, December 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.15.0 15618 Saturday, December 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.6 8607 Thursday, December 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.5 15038 Friday, December 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.2 6366 Wednesday, November 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.14.0 7064 Tuesday, November 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.38 14225 Wednesday, November 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.37 14492 Saturday, November 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.36 5223 Thursday, November 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.35 8347 Tuesday, November 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.34 9096 Saturday, November 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.32 15366 Saturday, November 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.31 6337 Thursday, November 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.30 13028 Saturday, October 28, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.29 6240 Thursday, October 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.28 13400 Saturday, October 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.27 7949 Thursday, October 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.26 13421 Saturday, October 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.25 15801 Saturday, October 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.24 6388 Thursday, October 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.23 7940 Tuesday, October 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.21 127 Saturday, September 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.20 24636 Thursday, September 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.19 12556 Saturday, September 16, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.18 7074 Thursday, September 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.16 17723 Thursday, September 7, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.15 12117 Saturday, September 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.14 8475 Thursday, August 31, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.13 13319 Saturday, August 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.12 7013 Thursday, August 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.11 1636 Saturday, August 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.9 27454 Saturday, August 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.8 7243 Thursday, August 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.7 12951 Saturday, August 5, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.6 7574 Thursday, August 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.5 72 Saturday, July 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.4 15798 Thursday, July 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.3 14441 Saturday, July 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.2 14358 Thursday, July 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.1 23102 Friday, July 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.13.0 27660 Saturday, July 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.7 11010 Thursday, July 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.6 17565 Saturday, July 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.5 7338 Friday, June 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.4 8107 Thursday, June 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.3 17478 Saturday, June 24, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.2 10874 Thursday, June 22, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.1 18149 Saturday, June 17, 2023 Approved
AWS Command Line Interface v2 (Install) 2.12.0 11893 Thursday, June 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.27 13168 Saturday, June 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.26 6970 Thursday, June 8, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.25 12517 Saturday, June 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.24 7216 Thursday, June 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.23 12685 Saturday, May 27, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.22 7814 Thursday, May 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.21 13211 Saturday, May 20, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.20 25186 Saturday, May 13, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.19 9778 Thursday, May 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.17 17156 Thursday, May 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.16 16300 Saturday, April 29, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.13 24490 Saturday, April 15, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.11 21913 Monday, April 10, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.10 9164 Thursday, April 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.9 8725 Tuesday, April 4, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.8 9242 Saturday, April 1, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.6 17658 Saturday, March 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.5 6835 Thursday, March 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.4 17285 Saturday, March 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.2 17665 Saturday, March 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.1 7541 Thursday, March 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.11.0 14289 Friday, March 3, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.4 5932 Thursday, March 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.3 11596 Saturday, February 25, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.2 8199 Thursday, February 23, 2023 Approved
AWS Command Line Interface v2 (Install) 2.10.1 12518 Saturday, February 18, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.23 17716 Saturday, February 11, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.22 7343 Thursday, February 9, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.21 11281 Monday, February 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.20 11424 Thursday, February 2, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.19 11409 Monday, January 30, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.18 11730 Thursday, January 26, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.17 13371 Saturday, January 21, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.16 8624 Thursday, January 19, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.15 12805 Saturday, January 14, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.14 7492 Thursday, January 12, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.13 15775 Friday, January 6, 2023 Approved
AWS Command Line Interface v2 (Install) 2.9.12 14426 Saturday, December 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.11 6991 Thursday, December 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.10 11177 Friday, December 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.9 7475 Thursday, December 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.8 12835 Saturday, December 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.7 8491 Thursday, December 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.6 13917 Saturday, December 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.5 7409 Thursday, December 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.4 12286 Saturday, December 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.3 6343 Thursday, December 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.2 5426 Wednesday, November 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.1 13464 Thursday, November 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.9.0 15897 Saturday, November 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.13 6774 Thursday, November 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.12 9588 Saturday, November 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.11 11537 Thursday, November 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.9 13211 Saturday, November 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.8 7481 Thursday, November 3, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.7 15716 Friday, October 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.6 7378 Thursday, October 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.5 10770 Saturday, October 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.3 17752 Friday, October 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.2 15530 Saturday, October 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.1 6580 Thursday, October 6, 2022 Approved
AWS Command Line Interface v2 (Install) 2.8.0 10797 Saturday, October 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.35 13637 Saturday, September 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.34 6706 Thursday, September 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.33 11583 Saturday, September 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.32 6904 Thursday, September 15, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.31 14059 Saturday, September 10, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.30 7641 Thursday, September 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.29 13872 Monday, September 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.28 19847 Thursday, September 1, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.26 23174 Thursday, August 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.25 16548 Saturday, August 20, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.24 11585 Wednesday, August 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.22 15272 Friday, August 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.21 32567 Thursday, August 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.20 16087 Saturday, July 30, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.19 7912 Thursday, July 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.18 14017 Saturday, July 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.17 8187 Thursday, July 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.16 13976 Saturday, July 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.15 7253 Thursday, July 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.14 13306 Saturday, July 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.13 6219 Thursday, July 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.11 27741 Saturday, June 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.9 18274 Saturday, June 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.8 4853 Friday, June 17, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.7 21281 Thursday, June 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.6 11561 Saturday, June 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.5 6938 Thursday, June 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.4 11536 Friday, May 27, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.3 6107 Thursday, May 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.2 12282 Saturday, May 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.1 7898 Wednesday, May 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.7.0 11199 Saturday, May 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.4 6808 Wednesday, May 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.3 8198 Sunday, May 8, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.2 6860 Thursday, May 5, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.1 9345 Friday, April 29, 2022 Approved
AWS Command Line Interface v2 (Install) 2.6.0 5249 Thursday, April 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.8 10712 Friday, April 22, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.7 3692 Thursday, April 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.6 10519 Saturday, April 16, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.4 11228 Saturday, April 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.3 5800 Thursday, April 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.2 8566 Saturday, April 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.1 5823 Thursday, March 31, 2022 Approved
AWS Command Line Interface v2 (Install) 2.5.0 6686 Monday, March 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.29 8174 Saturday, March 26, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.28 5480 Thursday, March 24, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.27 10403 Friday, March 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.25 12160 Friday, March 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.24 5924 Wednesday, March 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.23 8730 Friday, March 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.22 6015 Wednesday, March 2, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.21 22675 Friday, February 25, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.20 6040 Wednesday, February 23, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.19 8072 Friday, February 18, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.18 10510 Friday, February 11, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.17 6739 Wednesday, February 9, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.16 8274 Friday, February 4, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.15 10523 Friday, January 28, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.13 10789 Friday, January 21, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.12 14748 Wednesday, January 19, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.11 6725 Friday, January 14, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.10 4124 Wednesday, January 12, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.9 6787 Friday, January 7, 2022 Approved
AWS Command Line Interface v2 (Install) 2.4.7 13165 Wednesday, December 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.6 16707 Friday, December 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.5 8457 Saturday, December 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.4 2603 Friday, December 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.3 4949 Tuesday, November 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.2 6559 Saturday, November 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.1 6038 Wednesday, November 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.4.0 6771 Friday, November 19, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.7 5168 Wednesday, November 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.6 7344 Friday, November 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.5 5075 Wednesday, November 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.4 6872 Friday, November 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.3.0 16173 Friday, October 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.47 4817 Wednesday, October 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.46 6628 Friday, October 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.45 5696 Tuesday, October 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.43 12433 Friday, October 1, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.42 5045 Wednesday, September 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.41 6503 Friday, September 24, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.40 3941 Wednesday, September 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.39 6034 Friday, September 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.38 4385 Wednesday, September 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.37 7443 Friday, September 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.36 4110 Wednesday, September 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.35 5731 Friday, September 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.33 7933 Friday, August 27, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.32 3595 Wednesday, August 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.31 6373 Friday, August 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.30 4135 Wednesday, August 18, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.29 5749 Friday, August 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.28 3813 Wednesday, August 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.27 6354 Friday, August 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.26 3290 Wednesday, August 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.25 7430 Saturday, July 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.24 1993 Friday, July 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.23 2352 Wednesday, July 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.22 6885 Friday, July 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.21 4484 Wednesday, July 21, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.20 5146 Friday, July 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.19 3320 Thursday, July 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.18 7024 Friday, July 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.17 3854 Wednesday, July 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.16 6989 Friday, July 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.15 5942 Wednesday, June 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.14 5428 Friday, June 25, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.13 7766 Thursday, June 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.12 6055 Wednesday, June 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.11 5532 Friday, June 11, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.10 4697 Wednesday, June 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.9 5937 Friday, June 4, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.8 3349 Wednesday, June 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.7 6418 Friday, May 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.6 4343 Wednesday, May 26, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.5 13284 Saturday, May 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.4 5538 Wednesday, May 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.3 5724 Friday, May 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.2 3917 Wednesday, May 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.1 4993 Friday, April 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.2.0 3103 Wednesday, April 28, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.39 96 Thursday, April 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.38 12332 Friday, April 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.37 4042 Wednesday, April 14, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.36 5624 Friday, April 9, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.35 397 Wednesday, April 7, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.34 9223 Friday, April 2, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.33 3501 Wednesday, March 31, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.32 540 Tuesday, March 30, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.29 52989 Tuesday, March 16, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.28 18486 Tuesday, February 23, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.27 33213 Wednesday, February 17, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.26 5898 Friday, February 12, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.25 3058 Wednesday, February 10, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.24 6723 Friday, February 5, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.23 3508 Wednesday, February 3, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.22 9906 Friday, January 29, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.21 7655 Friday, January 22, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.20 4314 Wednesday, January 20, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.19 5592 Friday, January 15, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.18 2754 Wednesday, January 13, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.17 4957 Friday, January 8, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.16 1885 Wednesday, January 6, 2021 Approved
AWS Command Line Interface v2 (Install) 2.1.15 5602 Wednesday, December 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.14 4047 Wednesday, December 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.13 4520 Friday, December 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.12 1899 Thursday, December 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.11 1676 Wednesday, December 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.10 5257 Friday, December 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.9 1657 Thursday, December 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.8 3077 Wednesday, December 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.7 4662 Friday, December 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.6 2439 Wednesday, December 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.4 6767 Wednesday, November 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.3 4590 Friday, November 20, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.2 2150 Wednesday, November 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.1 4423 Friday, November 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.1.0 4024 Wednesday, November 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.63 4695 Tuesday, November 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.62 2839 Friday, November 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.61 7103 Friday, October 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.60 4041 Wednesday, October 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.59 7188 Friday, October 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.58 3243 Wednesday, October 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.57 3701 Friday, October 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.56 9015 Friday, October 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.55 5548 Wednesday, October 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.54 4956 Friday, October 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.53 5882 Wednesday, September 30, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.52 4346 Friday, September 25, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.51 2379 Thursday, September 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.50 6544 Friday, September 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.49 2942 Wednesday, September 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.48 5206 Friday, September 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.47 3303 Wednesday, September 9, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.46 3850 Friday, September 4, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.45 2701 Wednesday, September 2, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.44 3199 Friday, August 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.43 4786 Wednesday, August 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.42 5719 Friday, August 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.41 3145 Wednesday, August 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.40 3619 Friday, August 14, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.39 3781 Wednesday, August 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.38 4220 Friday, August 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.37 3075 Wednesday, August 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.36 4020 Friday, July 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.35 2991 Wednesday, July 29, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.34 4499 Friday, July 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.33 3347 Wednesday, July 22, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.31 5557 Thursday, July 16, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.30 7942 Friday, July 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.29 2762 Wednesday, July 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.28 3952 Friday, July 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.27 2810 Wednesday, July 1, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.26 4386 Friday, June 26, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.25 2903 Wednesday, June 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.24 4394 Friday, June 19, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.23 2731 Wednesday, June 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.22 5520 Friday, June 12, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.21 1222 Thursday, June 11, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.20 1856 Wednesday, June 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.19 3619 Friday, June 5, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.18 2127 Wednesday, June 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.17 4583 Wednesday, May 27, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.15 3486 Thursday, May 21, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.14 5620 Friday, May 15, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.13 2523 Wednesday, May 13, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.12 4007 Friday, May 8, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.11 3237 Wednesday, May 6, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.10 6399 Tuesday, April 28, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.9 3396 Thursday, April 23, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.8 4739 Friday, April 17, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.7 6210 Tuesday, April 7, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.6 5814 Tuesday, March 31, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.5 5108 Tuesday, March 24, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.4 5372 Wednesday, March 18, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.3 5682 Tuesday, March 10, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.2 4297 Tuesday, March 3, 2020 Approved
AWS Command Line Interface v2 (Install) 2.0.1 5744 Wednesday, February 26, 2020 Approved
AWS Command Line Interface (Install) 1.33.37 13 Tuesday, August 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.102 35 Friday, May 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.100 21 Wednesday, May 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.97 17 Friday, May 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.95 26 Wednesday, May 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.94 22 Tuesday, April 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.92 21 Friday, April 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.89 26 Tuesday, April 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.87 20 Friday, April 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.86 20 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.85 21 Wednesday, April 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.83 16 Friday, April 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.81 20 Wednesday, April 10, 2024 Approved
AWS Command Line Interface (Install) 1.32.80 20 Tuesday, April 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.76 23 Wednesday, April 3, 2024 Approved
AWS Command Line Interface (Install) 1.32.75 19 Tuesday, April 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.73 21 Friday, March 29, 2024 Approved
AWS Command Line Interface (Install) 1.32.71 24 Wednesday, March 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.70 29 Tuesday, March 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.66 21 Wednesday, March 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.65 34 Tuesday, March 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.61 30 Wednesday, March 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.58 21 Friday, March 8, 2024 Approved
AWS Command Line Interface (Install) 1.32.56 22 Wednesday, March 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.53 20 Friday, March 1, 2024 Approved
AWS Command Line Interface (Install) 1.32.51 21 Wednesday, February 28, 2024 Approved
AWS Command Line Interface (Install) 1.32.50 21 Tuesday, February 27, 2024 Approved
AWS Command Line Interface (Install) 1.32.48 23 Friday, February 23, 2024 Approved
AWS Command Line Interface (Install) 1.32.45 27 Tuesday, February 20, 2024 Approved
AWS Command Line Interface (Install) 1.32.43 23 Friday, February 16, 2024 Approved
AWS Command Line Interface (Install) 1.32.40 25 Tuesday, February 13, 2024 Approved
AWS Command Line Interface (Install) 1.32.38 28 Friday, February 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.36 33 Wednesday, February 7, 2024 Approved
AWS Command Line Interface (Install) 1.32.35 24 Tuesday, February 6, 2024 Approved
AWS Command Line Interface (Install) 1.32.33 25 Friday, February 2, 2024 Approved
AWS Command Line Interface (Install) 1.32.31 25 Wednesday, January 31, 2024 Approved
AWS Command Line Interface (Install) 1.32.30 30 Tuesday, January 30, 2024 Approved
AWS Command Line Interface (Install) 1.32.28 28 Friday, January 26, 2024 Approved
AWS Command Line Interface (Install) 1.32.22 29 Friday, January 19, 2024 Approved
AWS Command Line Interface (Install) 1.32.20 26 Wednesday, January 17, 2024 Approved
AWS Command Line Interface (Install) 1.32.19 29 Monday, January 15, 2024 Approved
AWS Command Line Interface (Install) 1.32.17 23 Friday, January 12, 2024 Approved
AWS Command Line Interface (Install) 1.32.15 26 Tuesday, January 9, 2024 Approved
AWS Command Line Interface (Install) 1.32.13 31 Friday, January 5, 2024 Approved
AWS Command Line Interface (Install) 1.32.6 27 Friday, December 22, 2023 Approved
AWS Command Line Interface (Install) 1.32.4 28 Wednesday, December 20, 2023 Approved
AWS Command Line Interface (Install) 1.32.3 28 Tuesday, December 19, 2023 Approved
AWS Command Line Interface (Install) 1.32.1 27 Friday, December 15, 2023 Approved
AWS Command Line Interface (Install) 1.31.13 29 Wednesday, December 13, 2023 Approved
AWS Command Line Interface (Install) 1.31.12 28 Monday, December 11, 2023 Approved
AWS Command Line Interface (Install) 1.31.10 29 Friday, December 8, 2023 Approved
AWS Command Line Interface (Install) 1.31.7 23 Tuesday, December 5, 2023 Approved
AWS Command Line Interface (Install) 1.31.6 30 Saturday, December 2, 2023 Approved
AWS Command Line Interface (Install) 1.30.4 32 Tuesday, November 21, 2023 Approved
AWS Command Line Interface (Install) 1.30.2 32 Friday, November 17, 2023 Approved
AWS Command Line Interface (Install) 1.30.0 38 Wednesday, November 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.83 28 Friday, November 10, 2023 Approved
AWS Command Line Interface (Install) 1.29.82 38 Thursday, November 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.80 30 Wednesday, November 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.79 36 Tuesday, November 7, 2023 Approved
AWS Command Line Interface (Install) 1.29.77 41 Thursday, November 2, 2023 Approved
AWS Command Line Interface (Install) 1.29.75 30 Wednesday, November 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.72 29 Friday, October 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.70 34 Wednesday, October 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.69 32 Tuesday, October 24, 2023 Approved
AWS Command Line Interface (Install) 1.29.67 39 Friday, October 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.65 31 Wednesday, October 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.64 36 Tuesday, October 17, 2023 Approved
AWS Command Line Interface (Install) 1.29.63 38 Friday, October 13, 2023 Approved
AWS Command Line Interface (Install) 1.29.61 27 Friday, October 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.59 37 Wednesday, October 4, 2023 Approved
AWS Command Line Interface (Install) 1.29.57 29 Saturday, September 30, 2023 Approved
AWS Command Line Interface (Install) 1.29.55 29 Wednesday, September 27, 2023 Approved
AWS Command Line Interface (Install) 1.29.54 30 Tuesday, September 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.51 40 Wednesday, September 20, 2023 Approved
AWS Command Line Interface (Install) 1.29.50 34 Tuesday, September 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.48 38 Friday, September 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.45 33 Tuesday, September 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.43 38 Friday, September 8, 2023 Approved
AWS Command Line Interface (Install) 1.29.41 41 Wednesday, September 6, 2023 Approved
AWS Command Line Interface (Install) 1.29.36 243 Tuesday, August 29, 2023 Approved
AWS Command Line Interface (Install) 1.29.34 33 Friday, August 25, 2023 Approved
AWS Command Line Interface (Install) 1.29.32 29 Wednesday, August 23, 2023 Approved
AWS Command Line Interface (Install) 1.29.31 38 Tuesday, August 22, 2023 Approved
AWS Command Line Interface (Install) 1.29.29 43 Friday, August 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.26 44 Tuesday, August 15, 2023 Approved
AWS Command Line Interface (Install) 1.29.24 42 Friday, August 11, 2023 Approved
AWS Command Line Interface (Install) 1.29.22 53 Wednesday, August 9, 2023 Approved
AWS Command Line Interface (Install) 1.29.16 45 Tuesday, August 1, 2023 Approved
AWS Command Line Interface (Install) 1.29.14 36 Friday, July 28, 2023 Approved
AWS Command Line Interface (Install) 1.29.11 42 Wednesday, July 26, 2023 Approved
AWS Command Line Interface (Install) 1.29.5 29 Wednesday, July 19, 2023 Approved
AWS Command Line Interface (Install) 1.29.4 31 Tuesday, July 18, 2023 Approved
AWS Command Line Interface (Install) 1.29.2 59 Wednesday, July 12, 2023 Approved
AWS Command Line Interface (Install) 1.29.0 138 Friday, July 7, 2023 Approved
AWS Command Line Interface (Install) 1.28.0 40 Tuesday, July 4, 2023 Approved
AWS Command Line Interface (Install) 1.27.162 37 Wednesday, June 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.161 35 Tuesday, June 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.159 33 Friday, June 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.157 32 Wednesday, June 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.156 33 Tuesday, June 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.153 31 Wednesday, June 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.152 31 Tuesday, June 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.150 34 Friday, June 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.148 35 Wednesday, June 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.145 32 Friday, June 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.143 36 Wednesday, May 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.141 38 Friday, May 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.139 34 Wednesday, May 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.138 31 Tuesday, May 23, 2023 Approved
AWS Command Line Interface (Install) 1.27.135 36 Thursday, May 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.134 45 Tuesday, May 16, 2023 Approved
AWS Command Line Interface (Install) 1.27.133 35 Friday, May 12, 2023 Approved
AWS Command Line Interface (Install) 1.27.131 36 Wednesday, May 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.130 42 Tuesday, May 9, 2023 Approved
AWS Command Line Interface (Install) 1.27.127 31 Friday, May 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.125 30 Wednesday, May 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.124 31 Tuesday, May 2, 2023 Approved
AWS Command Line Interface (Install) 1.27.122 36 Friday, April 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.120 40 Wednesday, April 26, 2023 Approved
AWS Command Line Interface (Install) 1.27.119 33 Tuesday, April 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.113 40 Friday, April 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.110 34 Tuesday, April 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.106 40 Wednesday, April 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.101 43 Wednesday, March 29, 2023 Approved
AWS Command Line Interface (Install) 1.27.100 38 Tuesday, March 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.98 37 Friday, March 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.93 42 Friday, March 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.90 36 Tuesday, March 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.88 42 Friday, March 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.86 32 Wednesday, March 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.85 40 Tuesday, March 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.81 35 Wednesday, March 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.80 33 Tuesday, February 28, 2023 Approved
AWS Command Line Interface (Install) 1.27.78 40 Friday, February 24, 2023 Approved
AWS Command Line Interface (Install) 1.27.75 39 Tuesday, February 21, 2023 Approved
AWS Command Line Interface (Install) 1.27.73 38 Friday, February 17, 2023 Approved
AWS Command Line Interface (Install) 1.27.71 37 Wednesday, February 15, 2023 Approved
AWS Command Line Interface (Install) 1.27.70 41 Tuesday, February 14, 2023 Approved
AWS Command Line Interface (Install) 1.27.68 39 Friday, February 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.66 34 Wednesday, February 8, 2023 Approved
AWS Command Line Interface (Install) 1.27.65 38 Tuesday, February 7, 2023 Approved
AWS Command Line Interface (Install) 1.27.63 36 Friday, February 3, 2023 Approved
AWS Command Line Interface (Install) 1.27.61 39 Wednesday, February 1, 2023 Approved
AWS Command Line Interface (Install) 1.27.60 38 Tuesday, January 31, 2023 Approved
AWS Command Line Interface (Install) 1.27.58 35 Friday, January 27, 2023 Approved
AWS Command Line Interface (Install) 1.27.56 43 Wednesday, January 25, 2023 Approved
AWS Command Line Interface (Install) 1.27.53 44 Friday, January 20, 2023 Approved
AWS Command Line Interface (Install) 1.27.51 40 Wednesday, January 18, 2023 Approved
AWS Command Line Interface (Install) 1.27.49 47 Friday, January 13, 2023 Approved
AWS Command Line Interface (Install) 1.27.47 40 Wednesday, January 11, 2023 Approved
AWS Command Line Interface (Install) 1.27.46 38 Tuesday, January 10, 2023 Approved
AWS Command Line Interface (Install) 1.27.43 37 Thursday, January 5, 2023 Approved
AWS Command Line Interface (Install) 1.27.40 39 Friday, December 30, 2022 Approved
AWS Command Line Interface (Install) 1.27.38 51 Wednesday, December 28, 2022 Approved
AWS Command Line Interface (Install) 1.27.36 38 Friday, December 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.33 39 Tuesday, December 20, 2022 Approved
AWS Command Line Interface (Install) 1.27.31 34 Friday, December 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.29 42 Wednesday, December 14, 2022 Approved
AWS Command Line Interface (Install) 1.27.26 37 Friday, December 9, 2022 Approved
AWS Command Line Interface (Install) 1.27.24 39 Wednesday, December 7, 2022 Approved
AWS Command Line Interface (Install) 1.27.23 41 Tuesday, December 6, 2022 Approved
AWS Command Line Interface (Install) 1.27.15 59 Wednesday, November 23, 2022 Approved
AWS Command Line Interface (Install) 1.27.14 44 Tuesday, November 22, 2022 Approved
AWS Command Line Interface (Install) 1.27.12 35 Friday, November 18, 2022 Approved
AWS Command Line Interface (Install) 1.27.10 40 Wednesday, November 16, 2022 Approved
AWS Command Line Interface (Install) 1.27.9 43 Tuesday, November 15, 2022 Approved
AWS Command Line Interface (Install) 1.27.7 45 Friday, November 11, 2022 Approved
AWS Command Line Interface (Install) 1.27.4 42 Tuesday, November 8, 2022 Approved
AWS Command Line Interface (Install) 1.27.3 50 Saturday, November 5, 2022 Approved
AWS Command Line Interface (Install) 1.27.2 42 Friday, November 4, 2022 Approved
AWS Command Line Interface (Install) 1.27.0 54 Wednesday, November 2, 2022 Approved
AWS Command Line Interface (Install) 1.26.5 46 Tuesday, November 1, 2022 Approved
AWS Command Line Interface (Install) 1.26.3 47 Friday, October 28, 2022 Approved
AWS Command Line Interface (Install) 1.26.1 42 Wednesday, October 26, 2022 Approved
AWS Command Line Interface (Install) 1.26.0 54 Tuesday, October 25, 2022 Approved
AWS Command Line Interface (Install) 1.25.96 43 Friday, October 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.94 54 Wednesday, October 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.93 48 Tuesday, October 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.92 47 Saturday, October 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.89 53 Friday, October 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.87 44 Wednesday, October 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.83 42 Wednesday, September 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.82 43 Tuesday, September 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.78 49 Wednesday, September 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.77 51 Monday, September 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.75 51 Friday, September 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.73 56 Wednesday, September 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.68 49 Wednesday, September 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.66 56 Friday, September 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.64 64 Wednesday, August 31, 2022 Approved
AWS Command Line Interface (Install) 1.25.63 49 Tuesday, August 30, 2022 Approved
AWS Command Line Interface (Install) 1.25.62 43 Saturday, August 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.59 60 Wednesday, August 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.58 55 Tuesday, August 23, 2022 Approved
AWS Command Line Interface (Install) 1.25.56 48 Friday, August 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.55 56 Thursday, August 18, 2022 Approved
AWS Command Line Interface (Install) 1.25.51 53 Saturday, August 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.49 47 Thursday, August 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.48 51 Wednesday, August 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.46 51 Friday, August 5, 2022 Approved
AWS Command Line Interface (Install) 1.25.43 56 Tuesday, August 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.42 59 Monday, August 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.40 59 Friday, July 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.38 49 Wednesday, July 27, 2022 Approved
AWS Command Line Interface (Install) 1.25.37 49 Tuesday, July 26, 2022 Approved
AWS Command Line Interface (Install) 1.25.35 47 Friday, July 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.32 52 Tuesday, July 19, 2022 Approved
AWS Command Line Interface (Install) 1.25.28 53 Wednesday, July 13, 2022 Approved
AWS Command Line Interface (Install) 1.25.25 52 Friday, July 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.23 52 Wednesday, July 6, 2022 Approved
AWS Command Line Interface (Install) 1.25.22 57 Saturday, July 2, 2022 Approved
AWS Command Line Interface (Install) 1.25.21 53 Friday, July 1, 2022 Approved
AWS Command Line Interface (Install) 1.25.19 50 Wednesday, June 29, 2022 Approved
AWS Command Line Interface (Install) 1.25.18 53 Tuesday, June 28, 2022 Approved
AWS Command Line Interface (Install) 1.25.16 54 Friday, June 24, 2022 Approved
AWS Command Line Interface (Install) 1.25.14 51 Wednesday, June 22, 2022 Approved
AWS Command Line Interface (Install) 1.25.13 58 Tuesday, June 21, 2022 Approved
AWS Command Line Interface (Install) 1.25.10 66 Thursday, June 16, 2022 Approved
AWS Command Line Interface (Install) 1.25.9 50 Wednesday, June 15, 2022 Approved
AWS Command Line Interface (Install) 1.25.8 71 Tuesday, June 14, 2022 Approved
AWS Command Line Interface (Install) 1.25.7 56 Saturday, June 11, 2022 Approved
AWS Command Line Interface (Install) 1.25.6 57 Friday, June 10, 2022 Approved
AWS Command Line Interface (Install) 1.25.4 43 Wednesday, June 8, 2022 Approved
AWS Command Line Interface (Install) 1.25.3 56 Tuesday, June 7, 2022 Approved
AWS Command Line Interface (Install) 1.25.2 57 Friday, June 3, 2022 Approved
AWS Command Line Interface (Install) 1.25.0 56 Wednesday, June 1, 2022 Approved
AWS Command Line Interface (Install) 1.24.9 55 Friday, May 27, 2022 Approved
AWS Command Line Interface (Install) 1.24.7 65 Wednesday, May 25, 2022 Approved
AWS Command Line Interface (Install) 1.24.6 60 Tuesday, May 24, 2022 Approved
AWS Command Line Interface (Install) 1.24.4 65 Friday, May 20, 2022 Approved
AWS Command Line Interface (Install) 1.24.2 63 Wednesday, May 18, 2022 Approved
AWS Command Line Interface (Install) 1.24.1 62 Tuesday, May 17, 2022 Approved
AWS Command Line Interface (Install) 1.23.13 64 Friday, May 13, 2022 Approved
AWS Command Line Interface (Install) 1.23.11 65 Wednesday, May 11, 2022 Approved
AWS Command Line Interface (Install) 1.23.6 93 Wednesday, May 4, 2022 Approved
AWS Command Line Interface (Install) 1.23.5 64 Tuesday, May 3, 2022 Approved
AWS Command Line Interface (Install) 1.23.3 54 Thursday, April 28, 2022 Approved
AWS Command Line Interface (Install) 1.23.1 55 Wednesday, April 27, 2022 Approved
AWS Command Line Interface (Install) 1.23.0 72 Tuesday, April 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.101 62 Saturday, April 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.98 52 Wednesday, April 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.96 57 Friday, April 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.94 68 Wednesday, April 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.93 61 Tuesday, April 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.89 67 Wednesday, April 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.88 59 Tuesday, April 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.86 59 Friday, April 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.84 63 Wednesday, March 30, 2022 Approved
AWS Command Line Interface (Install) 1.22.81 70 Friday, March 25, 2022 Approved
AWS Command Line Interface (Install) 1.22.79 54 Wednesday, March 23, 2022 Approved
AWS Command Line Interface (Install) 1.22.78 65 Tuesday, March 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.77 155 Saturday, March 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.74 60 Tuesday, March 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.71 65 Thursday, March 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.69 66 Tuesday, March 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.68 65 Saturday, March 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.66 63 Thursday, March 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.64 65 Tuesday, March 1, 2022 Approved
AWS Command Line Interface (Install) 1.22.63 58 Saturday, February 26, 2022 Approved
AWS Command Line Interface (Install) 1.22.61 67 Thursday, February 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.59 68 Tuesday, February 22, 2022 Approved
AWS Command Line Interface (Install) 1.22.58 60 Saturday, February 19, 2022 Approved
AWS Command Line Interface (Install) 1.22.56 61 Thursday, February 17, 2022 Approved
AWS Command Line Interface (Install) 1.22.55 65 Tuesday, February 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.54 109 Saturday, February 12, 2022 Approved
AWS Command Line Interface (Install) 1.22.52 75 Thursday, February 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.50 54 Tuesday, February 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.49 60 Saturday, February 5, 2022 Approved
AWS Command Line Interface (Install) 1.22.47 66 Thursday, February 3, 2022 Approved
AWS Command Line Interface (Install) 1.22.46 71 Saturday, January 29, 2022 Approved
AWS Command Line Interface (Install) 1.22.44 76 Thursday, January 27, 2022 Approved
AWS Command Line Interface (Install) 1.22.42 72 Monday, January 24, 2022 Approved
AWS Command Line Interface (Install) 1.22.39 73 Thursday, January 20, 2022 Approved
AWS Command Line Interface (Install) 1.22.37 78 Saturday, January 15, 2022 Approved
AWS Command Line Interface (Install) 1.22.34 76 Thursday, January 13, 2022 Approved
AWS Command Line Interface (Install) 1.22.32 61 Monday, January 10, 2022 Approved
AWS Command Line Interface (Install) 1.22.31 76 Saturday, January 8, 2022 Approved
AWS Command Line Interface (Install) 1.22.29 63 Thursday, January 6, 2022 Approved
AWS Command Line Interface (Install) 1.22.25 150 Tuesday, December 21, 2021 Approved
AWS Command Line Interface (Install) 1.22.24 66 Tuesday, December 14, 2021 Approved
AWS Command Line Interface (Install) 1.22.22 66 Thursday, December 9, 2021 Approved
AWS Command Line Interface (Install) 1.22.21 59 Tuesday, December 7, 2021 Approved
AWS Command Line Interface (Install) 1.22.13 89 Thursday, November 25, 2021 Approved
AWS Command Line Interface (Install) 1.22.11 77 Tuesday, November 23, 2021 Approved
AWS Command Line Interface (Install) 1.22.10 61 Saturday, November 20, 2021 Approved
AWS Command Line Interface (Install) 1.22.8 79 Thursday, November 18, 2021 Approved
AWS Command Line Interface (Install) 1.22.6 77 Tuesday, November 16, 2021 Approved
AWS Command Line Interface (Install) 1.22.5 74 Saturday, November 13, 2021 Approved
AWS Command Line Interface (Install) 1.22.3 107 Thursday, November 11, 2021 Approved
AWS Command Line Interface (Install) 1.22.1 72 Tuesday, November 9, 2021 Approved
AWS Command Line Interface (Install) 1.21.12 140 Saturday, November 6, 2021 Approved
AWS Command Line Interface (Install) 1.21.0 77 Thursday, October 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.64 75 Tuesday, October 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.63 76 Saturday, October 16, 2021 Approved
AWS Command Line Interface (Install) 1.20.61 74 Thursday, October 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.58 202 Saturday, October 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.57 85 Friday, October 8, 2021 Approved
AWS Command Line Interface (Install) 1.20.56 75 Thursday, October 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.54 68 Tuesday, October 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.53 66 Saturday, October 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.51 75 Thursday, September 30, 2021 Approved
AWS Command Line Interface (Install) 1.20.49 77 Tuesday, September 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.48 79 Saturday, September 25, 2021 Approved
AWS Command Line Interface (Install) 1.20.46 72 Thursday, September 23, 2021 Approved
AWS Command Line Interface (Install) 1.20.44 88 Saturday, September 18, 2021 Approved
AWS Command Line Interface (Install) 1.20.40 107 Saturday, September 11, 2021 Approved
AWS Command Line Interface (Install) 1.20.38 84 Thursday, September 9, 2021 Approved
AWS Command Line Interface (Install) 1.20.36 71 Saturday, September 4, 2021 Approved
AWS Command Line Interface (Install) 1.20.34 87 Thursday, September 2, 2021 Approved
AWS Command Line Interface (Install) 1.20.32 78 Tuesday, August 31, 2021 Approved
AWS Command Line Interface (Install) 1.20.31 73 Saturday, August 28, 2021 Approved
AWS Command Line Interface (Install) 1.20.29 69 Thursday, August 26, 2021 Approved
AWS Command Line Interface (Install) 1.20.27 78 Tuesday, August 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.26 106 Saturday, August 21, 2021 Approved
AWS Command Line Interface (Install) 1.20.24 75 Thursday, August 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.23 96 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.22 73 Tuesday, August 17, 2021 Approved
AWS Command Line Interface (Install) 1.20.21 83 Saturday, August 14, 2021 Approved
AWS Command Line Interface (Install) 1.20.19 78 Thursday, August 12, 2021 Approved
AWS Command Line Interface (Install) 1.20.17 81 Tuesday, August 10, 2021 Approved
AWS Command Line Interface (Install) 1.20.16 81 Saturday, August 7, 2021 Approved
AWS Command Line Interface (Install) 1.20.15 97 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.14 83 Thursday, August 5, 2021 Approved
AWS Command Line Interface (Install) 1.20.12 74 Tuesday, August 3, 2021 Approved
AWS Command Line Interface (Install) 1.20.9 75 Thursday, July 29, 2021 Approved
AWS Command Line Interface (Install) 1.20.7 91 Tuesday, July 27, 2021 Approved
AWS Command Line Interface (Install) 1.20.6 88 Saturday, July 24, 2021 Approved
AWS Command Line Interface (Install) 1.20.4 79 Thursday, July 22, 2021 Approved
AWS Command Line Interface (Install) 1.20.2 79 Monday, July 19, 2021 Approved
AWS Command Line Interface (Install) 1.20.1 84 Saturday, July 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.111 76 Wednesday, July 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.110 80 Tuesday, July 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.109 80 Saturday, July 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.107 72 Thursday, July 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.105 80 Friday, July 2, 2021 Approved
AWS Command Line Interface (Install) 1.19.103 1162 Thursday, July 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.102 83 Tuesday, June 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.101 74 Saturday, June 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.99 102 Thursday, June 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.98 67 Tuesday, June 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.96 87 Thursday, June 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.94 79 Tuesday, June 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.93 82 Saturday, June 12, 2021 Approved
AWS Command Line Interface (Install) 1.19.92 84 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.91 82 Thursday, June 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.89 85 Tuesday, June 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.88 76 Saturday, June 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.86 76 Thursday, June 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.84 79 Saturday, May 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.82 78 Thursday, May 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.79 89 Tuesday, May 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.78 80 Saturday, May 22, 2021 Approved
AWS Command Line Interface (Install) 1.19.77 73 Friday, May 21, 2021 Approved
AWS Command Line Interface (Install) 1.19.76 75 Thursday, May 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.75 80 Wednesday, May 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.74 85 Tuesday, May 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.72 71 Friday, May 14, 2021 Approved
AWS Command Line Interface (Install) 1.19.70 96 Tuesday, May 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.69 93 Saturday, May 8, 2021 Approved
AWS Command Line Interface (Install) 1.19.67 87 Thursday, May 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.64 84 Monday, May 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.62 94 Saturday, May 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.60 67 Thursday, April 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.58 80 Tuesday, April 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.57 73 Saturday, April 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.56 76 Friday, April 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.54 82 Tuesday, April 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.52 71 Thursday, April 15, 2021 Approved
AWS Command Line Interface (Install) 1.19.50 66 Tuesday, April 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.49 79 Saturday, April 10, 2021 Approved
AWS Command Line Interface (Install) 1.19.45 86 Tuesday, April 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.44 71 Saturday, April 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.42 70 Thursday, April 1, 2021 Approved
AWS Command Line Interface (Install) 1.19.40 81 Monday, March 29, 2021 Approved
AWS Command Line Interface (Install) 1.19.39 92 Saturday, March 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.37 87 Thursday, March 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.35 95 Wednesday, March 24, 2021 Approved
AWS Command Line Interface (Install) 1.19.34 90 Tuesday, March 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.32 77 Friday, March 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.30 84 Thursday, March 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.29 77 Wednesday, March 17, 2021 Approved
AWS Command Line Interface (Install) 1.19.28 99 Tuesday, March 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.27 84 Saturday, March 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.26 4311 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.25 91 Thursday, March 11, 2021 Approved
AWS Command Line Interface (Install) 1.19.23 92 Tuesday, March 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.22 85 Saturday, March 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.21 88 Friday, March 5, 2021 Approved
AWS Command Line Interface (Install) 1.19.20 92 Thursday, March 4, 2021 Approved
AWS Command Line Interface (Install) 1.19.19 95 Wednesday, March 3, 2021 Approved
AWS Command Line Interface (Install) 1.19.17 98 Saturday, February 27, 2021 Approved
AWS Command Line Interface (Install) 1.19.16 94 Friday, February 26, 2021 Approved
AWS Command Line Interface (Install) 1.19.15 79 Thursday, February 25, 2021 Approved
AWS Command Line Interface (Install) 1.19.13 81 Tuesday, February 23, 2021 Approved
AWS Command Line Interface (Install) 1.19.12 76 Saturday, February 20, 2021 Approved
AWS Command Line Interface (Install) 1.19.11 78 Friday, February 19, 2021 Approved
AWS Command Line Interface (Install) 1.19.10 94 Thursday, February 18, 2021 Approved
AWS Command Line Interface (Install) 1.19.8 88 Tuesday, February 16, 2021 Approved
AWS Command Line Interface (Install) 1.19.7 95 Saturday, February 13, 2021 Approved
AWS Command Line Interface (Install) 1.19.4 109 Tuesday, February 9, 2021 Approved
AWS Command Line Interface (Install) 1.19.3 180 Saturday, February 6, 2021 Approved
AWS Command Line Interface (Install) 1.19.1 102 Thursday, February 4, 2021 Approved
AWS Command Line Interface (Install) 1.18.223 93 Saturday, January 30, 2021 Approved
AWS Command Line Interface (Install) 1.18.221 105 Thursday, January 28, 2021 Approved
AWS Command Line Interface (Install) 1.18.220 98 Wednesday, January 27, 2021 Approved
AWS Command Line Interface (Install) 1.18.219 120 Saturday, January 23, 2021 Approved
AWS Command Line Interface (Install) 1.18.216 89 Saturday, January 16, 2021 Approved
AWS Command Line Interface (Install) 1.18.214 107 Thursday, January 14, 2021 Approved
AWS Command Line Interface (Install) 1.18.212 101 Tuesday, January 12, 2021 Approved
AWS Command Line Interface (Install) 1.18.210 98 Thursday, January 7, 2021 Approved
AWS Command Line Interface (Install) 1.18.208 110 Tuesday, January 5, 2021 Approved
AWS Command Line Interface (Install) 1.18.207 95 Friday, January 1, 2021 Approved
AWS Command Line Interface (Install) 1.18.206 95 Thursday, December 31, 2020 Approved
AWS Command Line Interface (Install) 1.18.205 94 Tuesday, December 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.204 82 Monday, December 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.201 82 Tuesday, December 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.200 95 Friday, December 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.197 90 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.196 92 Tuesday, December 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.195 1653 Saturday, December 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.193 91 Wednesday, December 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.191 80 Tuesday, December 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.190 88 Saturday, December 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.184 104 Tuesday, November 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.183 101 Saturday, November 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.181 117 Thursday, November 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.179 108 Tuesday, November 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.178 113 Saturday, November 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.176 87 Thursday, November 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.174 92 Monday, November 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.173 101 Saturday, November 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.171 169 Thursday, November 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.170 107 Tuesday, November 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.167 112 Thursday, October 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.165 227 Tuesday, October 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.164 123 Saturday, October 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.162 110 Thursday, October 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.160 111 Tuesday, October 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.159 97 Saturday, October 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.157 172 Saturday, October 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.153 109 Tuesday, October 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.152 120 Saturday, October 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.150 100 Thursday, October 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.148 107 Tuesday, September 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.147 132 Saturday, September 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.146 93 Thursday, September 24, 2020 Approved
AWS Command Line Interface (Install) 1.18.144 92 Wednesday, September 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.143 103 Tuesday, September 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.142 104 Saturday, September 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.141 393 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.140 107 Thursday, September 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.138 94 Tuesday, September 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.137 103 Saturday, September 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.133 162 Saturday, September 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.131 110 Thursday, September 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.129 117 Tuesday, September 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.128 124 Saturday, August 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.126 149 Thursday, August 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.125 125 Tuesday, August 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.123 137 Thursday, August 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.121 160 Tuesday, August 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.120 115 Saturday, August 15, 2020 Approved
AWS Command Line Interface (Install) 1.18.119 111 Thursday, August 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.116 6216 Monday, August 10, 2020 Approved
AWS Command Line Interface (Install) 1.18.115 129 Saturday, August 8, 2020 Approved
AWS Command Line Interface (Install) 1.18.113 160 Thursday, August 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.111 152 Tuesday, August 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.110 170 Saturday, August 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.108 144 Thursday, July 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.106 165 Tuesday, July 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.105 159 Saturday, July 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.103 192 Thursday, July 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.101 1276 Tuesday, July 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.100 157 Saturday, July 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.96 186 Thursday, July 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.94 212 Tuesday, July 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.92 186 Thursday, July 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.90 183 Tuesday, June 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.89 227 Saturday, June 27, 2020 Approved
AWS Command Line Interface (Install) 1.18.87 186 Thursday, June 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.85 196 Tuesday, June 23, 2020 Approved
AWS Command Line Interface (Install) 1.18.84 213 Saturday, June 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.82 193 Thursday, June 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.80 260 Tuesday, June 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.79 207 Saturday, June 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.75 177 Tuesday, June 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.74 208 Saturday, June 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.72 207 Thursday, June 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.70 197 Tuesday, June 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.69 6439 Friday, May 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.68 227 Thursday, May 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.65 21140 Thursday, May 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.63 176 Wednesday, May 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.62 217 Tuesday, May 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.61 193 Saturday, May 16, 2020 Approved
AWS Command Line Interface (Install) 1.18.57 182 Tuesday, May 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.56 241 Saturday, May 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.54 201 Thursday, May 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.52 186 Tuesday, May 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.51 264 Saturday, May 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.50 160 Friday, May 1, 2020 Approved
AWS Command Line Interface (Install) 1.18.49 183 Thursday, April 30, 2020 Approved
AWS Command Line Interface (Install) 1.18.46 352 Saturday, April 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.43 214 Wednesday, April 22, 2020 Approved
AWS Command Line Interface (Install) 1.18.42 542 Tuesday, April 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.41 180 Friday, April 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.39 221 Thursday, April 9, 2020 Approved
AWS Command Line Interface (Install) 1.18.36 310 Saturday, April 4, 2020 Approved
AWS Command Line Interface (Install) 1.18.35 186 Friday, April 3, 2020 Approved
AWS Command Line Interface (Install) 1.18.34 166 Thursday, April 2, 2020 Approved
AWS Command Line Interface (Install) 1.18.31 210 Saturday, March 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.30 212 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.29 175 Thursday, March 26, 2020 Approved
AWS Command Line Interface (Install) 1.18.28 284 Wednesday, March 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.26 220 Saturday, March 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.25 220 Friday, March 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.24 198 Thursday, March 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.22 185 Tuesday, March 17, 2020 Approved
AWS Command Line Interface (Install) 1.18.21 239 Saturday, March 14, 2020 Approved
AWS Command Line Interface (Install) 1.18.20 203 Friday, March 13, 2020 Approved
AWS Command Line Interface (Install) 1.18.19 219 Thursday, March 12, 2020 Approved
AWS Command Line Interface (Install) 1.18.16 169 Saturday, March 7, 2020 Approved
AWS Command Line Interface (Install) 1.18.15 156 Friday, March 6, 2020 Approved
AWS Command Line Interface (Install) 1.18.14 218 Thursday, March 5, 2020 Approved
AWS Command Line Interface (Install) 1.18.11 21762 Saturday, February 29, 2020 Approved
AWS Command Line Interface (Install) 1.18.9 5860 Friday, February 28, 2020 Approved
AWS Command Line Interface (Install) 1.18.6 3709 Tuesday, February 25, 2020 Approved
AWS Command Line Interface (Install) 1.18.5 4419 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.4 1199 Friday, February 21, 2020 Approved
AWS Command Line Interface (Install) 1.18.3 1398 Thursday, February 20, 2020 Approved
AWS Command Line Interface (Install) 1.18.2 1385 Wednesday, February 19, 2020 Approved
AWS Command Line Interface (Install) 1.18.1 1650 Tuesday, February 18, 2020 Approved
AWS Command Line Interface (Install) 1.18.0 1958 Saturday, February 15, 2020 Approved
AWS Command Line Interface (Install) 1.17.17 4207 Friday, February 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.16 2666 Thursday, February 13, 2020 Approved
AWS Command Line Interface (Install) 1.17.15 1530 Wednesday, February 12, 2020 Approved
AWS Command Line Interface (Install) 1.17.13 3037 Saturday, February 8, 2020 Approved
AWS Command Line Interface (Install) 1.17.12 1224 Friday, February 7, 2020 Approved
AWS Command Line Interface (Install) 1.17.11 151 Thursday, February 6, 2020 Approved
AWS Command Line Interface (Install) 1.17.10 171 Wednesday, February 5, 2020 Approved
AWS Command Line Interface (Install) 1.17.9 8266 Saturday, January 25, 2020 Approved
AWS Command Line Interface (Install) 1.17.8 940 Friday, January 24, 2020 Approved
AWS Command Line Interface (Install) 1.17.7 3031 Wednesday, January 22, 2020 Approved
AWS Command Line Interface (Install) 1.17.6 276 Tuesday, January 21, 2020 Approved
AWS Command Line Interface (Install) 1.17.5 2554 Saturday, January 18, 2020 Approved
AWS Command Line Interface (Install) 1.17.4 1200 Friday, January 17, 2020 Approved
AWS Command Line Interface (Install) 1.17.3 1104 Thursday, January 16, 2020 Approved
AWS Command Line Interface (Install) 1.17.2 2021 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.1 1173 Tuesday, January 14, 2020 Approved
AWS Command Line Interface (Install) 1.17.0 2005 Saturday, January 11, 2020 Approved
AWS Command Line Interface (Install) 1.16.314 1384 Friday, January 10, 2020 Approved
AWS Command Line Interface (Install) 1.16.313 1408 Thursday, January 9, 2020 Approved
AWS Command Line Interface (Install) 1.16.312 1103 Wednesday, January 8, 2020 Approved
AWS Command Line Interface (Install) 1.16.311 1335 Tuesday, January 7, 2020 Approved
AWS Command Line Interface (Install) 1.16.310 175 Friday, January 3, 2020 Approved
AWS Command Line Interface (Install) 1.16.309 1420 Tuesday, December 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.308 5803 Saturday, December 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.307 1054 Friday, December 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.305 2027 Wednesday, December 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.303 2518 Saturday, December 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.302 1183 Friday, December 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.301 1521 Thursday, December 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.300 1282 Wednesday, December 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.299 1530 Tuesday, December 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.298 2545 Friday, December 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.297 1302 Thursday, December 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.296 1342 Wednesday, December 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.294 814 Tuesday, December 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.292 4647 Wednesday, November 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.291 1359 Tuesday, November 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.290 2069 Saturday, November 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.289 1209 Friday, November 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.287 1287 Thursday, November 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.286 1738 Wednesday, November 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.284 1544 Tuesday, November 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.283 2206 Saturday, November 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.282 1272 Friday, November 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.281 1542 Thursday, November 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.280 1506 Wednesday, November 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.279 1450 Tuesday, November 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.278 2077 Saturday, November 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.277 2667 Friday, November 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.276 1384 Thursday, November 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.274 1632 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.273 1287 Tuesday, November 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.272 2078 Saturday, November 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.271 1007 Friday, November 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.270 1494 Thursday, October 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.269 1545 Wednesday, October 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.268 1609 Tuesday, October 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.266 2880 Friday, October 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.265 1782 Thursday, October 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.264 1548 Wednesday, October 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.263 3554 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.262 718 Friday, October 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.261 2337 Thursday, October 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.260 1559 Wednesday, October 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.259 1500 Tuesday, October 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.258 1953 Saturday, October 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.257 1318 Friday, October 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.256 2054 Thursday, October 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.255 1691 Wednesday, October 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.254 1381 Tuesday, October 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.253 2014 Saturday, October 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.252 1509 Friday, October 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.251 2136 Thursday, October 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.250 1632 Wednesday, October 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.249 1647 Tuesday, October 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.248 2351 Saturday, September 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.247 1133 Friday, September 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.246 1833 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.245 1438 Wednesday, September 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.244 1524 Tuesday, September 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.243 1853 Saturday, September 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.242 1228 Friday, September 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.241 2332 Thursday, September 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.240 1496 Wednesday, September 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.239 1151 Tuesday, September 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.238 7158 Friday, September 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.237 1830 Thursday, September 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.236 1383 Wednesday, September 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.235 1316 Tuesday, September 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.234 1793 Saturday, September 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.233 1203 Friday, September 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.232 1835 Thursday, September 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.231 1258 Wednesday, September 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.230 2503 Saturday, August 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.229 1874 Friday, August 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.228 2818 Thursday, August 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.227 2355 Wednesday, August 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.226 1269 Tuesday, August 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.225 2019 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.224 1079 Friday, August 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.223 1141 Thursday, August 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.222 1225 Wednesday, August 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.221 2588 Tuesday, August 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.220 1851 Saturday, August 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.219 1102 Friday, August 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.218 1182 Thursday, August 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.217 1668 Wednesday, August 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.216 1127 Tuesday, August 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.215 1649 Saturday, August 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.214 1020 Friday, August 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.213 2221 Thursday, August 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.212 543 Wednesday, August 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.211 1719 Tuesday, August 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.210 1664 Saturday, August 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.209 5089 Wednesday, July 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.208 1011 Tuesday, July 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.207 1625 Saturday, July 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.206 1183 Friday, July 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.205 1388 Thursday, July 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.204 1190 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.203 1188 Tuesday, July 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.202 1152 Monday, July 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.201 831 Saturday, July 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.200 913 Friday, July 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.199 1109 Thursday, July 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.198 3108 Saturday, July 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.197 941 Friday, July 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.196 1019 Thursday, July 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.195 1044 Wednesday, July 10, 2019 Approved
AWS Command Line Interface (Install) 1.16.194 1256 Tuesday, July 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.193 2724 Thursday, July 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.192 974 Wednesday, July 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.191 982 Tuesday, July 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.190 1534 Saturday, June 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.189 864 Friday, June 28, 2019 Approved
AWS Command Line Interface (Install) 1.16.188 980 Thursday, June 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.186 1200 Wednesday, June 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.185 1019 Tuesday, June 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.184 2824 Saturday, June 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.183 985 Friday, June 21, 2019 Approved
AWS Command Line Interface (Install) 1.16.182 859 Thursday, June 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.181 1355 Wednesday, June 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.180 1450 Tuesday, June 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.179 1679 Saturday, June 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.178 887 Friday, June 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.177 2273 Thursday, June 13, 2019 Approved
AWS Command Line Interface (Install) 1.16.176 1577 Wednesday, June 12, 2019 Approved
AWS Command Line Interface (Install) 1.16.175 1488 Tuesday, June 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.174 1878 Saturday, June 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.173 1072 Friday, June 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.172 1261 Thursday, June 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.171 1271 Wednesday, June 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.170 1418 Tuesday, June 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.169 2974 Friday, May 31, 2019 Approved
AWS Command Line Interface (Install) 1.16.168 1160 Thursday, May 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.167 1050 Wednesday, May 29, 2019 Approved
AWS Command Line Interface (Install) 1.16.166 2310 Saturday, May 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.165 1028 Friday, May 24, 2019 Approved
AWS Command Line Interface (Install) 1.16.164 12768 Thursday, May 23, 2019 Approved
AWS Command Line Interface (Install) 1.16.163 1248 Wednesday, May 22, 2019 Approved
AWS Command Line Interface (Install) 1.16.162 1282 Monday, May 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.161 1767 Saturday, May 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.160 1115 Friday, May 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.159 1008 Thursday, May 16, 2019 Approved
AWS Command Line Interface (Install) 1.16.158 1097 Wednesday, May 15, 2019 Approved
AWS Command Line Interface (Install) 1.16.157 1374 Tuesday, May 14, 2019 Approved
AWS Command Line Interface (Install) 1.16.156 1831 Saturday, May 11, 2019 Approved
AWS Command Line Interface (Install) 1.16.155 1673 Thursday, May 9, 2019 Approved
AWS Command Line Interface (Install) 1.16.154 1226 Wednesday, May 8, 2019 Approved
AWS Command Line Interface (Install) 1.16.153 1303 Tuesday, May 7, 2019 Approved
AWS Command Line Interface (Install) 1.16.152 2599 Saturday, May 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.151 1425 Friday, May 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.150 1230 Thursday, May 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.149 1022 Wednesday, May 1, 2019 Approved
AWS Command Line Interface (Install) 1.16.148 1220 Tuesday, April 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.147 1963 Saturday, April 27, 2019 Approved
AWS Command Line Interface (Install) 1.16.146 1198 Friday, April 26, 2019 Approved
AWS Command Line Interface (Install) 1.16.145 1486 Thursday, April 25, 2019 Approved
AWS Command Line Interface (Install) 1.16.144 2961 Saturday, April 20, 2019 Approved
AWS Command Line Interface (Install) 1.16.143 1073 Friday, April 19, 2019 Approved
AWS Command Line Interface (Install) 1.16.142 1038 Thursday, April 18, 2019 Approved
AWS Command Line Interface (Install) 1.16.141 1102 Wednesday, April 17, 2019 Approved
AWS Command Line Interface (Install) 1.16.140 10547 Saturday, April 6, 2019 Approved
AWS Command Line Interface (Install) 1.16.139 1104 Friday, April 5, 2019 Approved
AWS Command Line Interface (Install) 1.16.138 1226 Thursday, April 4, 2019 Approved
AWS Command Line Interface (Install) 1.16.137 762 Wednesday, April 3, 2019 Approved
AWS Command Line Interface (Install) 1.16.136 1462 Tuesday, April 2, 2019 Approved
AWS Command Line Interface (Install) 1.16.135 1996 Saturday, March 30, 2019 Approved
AWS Command Line Interface (Install) 1.16.134 1163 Friday, March 29, 2019 Approved