{"id":13673,"date":"2017-09-24T10:35:31","date_gmt":"2017-09-24T10:35:31","guid":{"rendered":"https:\/\/stackify.com\/?p=13673"},"modified":"2024-05-16T06:02:55","modified_gmt":"2024-05-16T06:02:55","slug":"what-is-aws-cli","status":"publish","type":"post","link":"https:\/\/stackify.com\/what-is-aws-cli\/","title":{"rendered":"What is AWS CLI? Understanding the Command Line Tool"},"content":{"rendered":"<p>AWS CLI is a tool that pulls all the AWS services together in one central console, giving you easy control of multiple AWS services with a single tool. The acronym stands for Amazon Web Services Command Line Interface because, as its name suggests, users operate it from the command line. With it, you can control services manually or automate them with powerful scripts.<\/p>\n<h3>How It Works<\/h3>\n<p>AWS is a secure cloud services platform that offers computing power, content delivery, database storage, and other infrastructure services for developers. Proponents point to its speed, flexible pricing, exemplary customer service, and a huge variety of services as benefits. The AWS CLI puts the icing on the cake by tying control of all those services together into one simple command line interface. It cuts out the user-friendly (but time-consuming, according to some) step of interacting with the\u00a0system through a Graphical User Interface (GUI).<\/p>\n<h3>How to Install AWS CLI<\/h3>\n<p>You can install the tool by downloading it from the <a href=\"https:\/\/aws.amazon.com\/cli\/\" target=\"_blank\" rel=\"noopener noreferrer\">AWS CLI resource page at Amazon<\/a>. The page has download options for Windows, Mac, and Linux installations. It also has a beginner\u2019s guide, a comprehensive reference manual, a user forum and a link to the GitHub project. Here are the install tools offered by Amazon:<\/p>\n<ul>\n<li>Windows <a href=\"https:\/\/s3.amazonaws.com\/aws-cli\/AWSCLI64.msi\" target=\"_blank\" rel=\"noopener noreferrer\">64-bit download<\/a><\/li>\n<li>Windows <a href=\"https:\/\/s3.amazonaws.com\/aws-cli\/AWSCLI32.msi\" target=\"_blank\" rel=\"noopener noreferrer\">32-bit download<\/a><\/li>\n<li><a href=\"https:\/\/www.chocolatey.org\/packages\/awscli\">Chocolately<\/a>: choco awscli<\/li>\n<li><a href=\"http:\/\/www.python.org\/download\/\" target=\"_blank\" rel=\"noopener noreferrer\">Mac and Linux download<\/a> (requires Python 2.6.5 or greater)<\/li>\n<li><a href=\"http:\/\/www.pip-installer.org\/en\/latest\/\" target=\"_blank\" rel=\"noopener noreferrer\">Pip<\/a> install link<\/li>\n<li><a href=\"http:\/\/docs.aws.amazon.com\/cli\/latest\/userguide\/cli-chap-welcome.html\" target=\"_blank\" rel=\"noopener noreferrer\">Getting started guide<\/a><\/li>\n<li><a href=\"http:\/\/docs.aws.amazon.com\/cli\/latest\/reference\/\" target=\"_blank\" rel=\"noopener noreferrer\">CLI Reference from Amazon<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/aws\/aws-cli\" target=\"_blank\" rel=\"noopener noreferrer\">GitHub project<\/a><\/li>\n<li><a href=\"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=150\" target=\"_blank\" rel=\"noopener noreferrer\">User forum<\/a><\/li>\n<\/ul>\n<p>To install AWS CLI, users sign up for an AWS account, get an access key ID and secret access key, then pick a (very simple!) install method depending on their system and software.<\/p>\n<p>Those with a pip\/Python system can simply run:<\/p>\n<pre class=\"prettyprint\">$ pip install --upgrade \u2013 user awscli\n<\/pre>\n<p>Amazon\u2019s <a href=\"http:\/\/docs.aws.amazon.com\/cli\/latest\/userguide\/installing.html\" target=\"_blank\" rel=\"noopener noreferrer\">install documentation here<\/a> also explains options to install Python\/pip\/CLI on linux, and how to install AWS CLI on MS Windows, macOS, or in a Virtual Environment. There\u2019s also an option to install the tool with the Bundled Installer for Linux, Unix, or macOS. Overall, the install steps are as simple as downloading the archive, unpacking it, running the (short) install script and checking your work. There\u2019s a great <a href=\"http:\/\/www.techrepublic.com\/article\/good-reasons-to-install-the-new-aws-cli-tools-on-a-vm-on-amazon-ec2\/\" target=\"_blank\" rel=\"noopener noreferrer\">example tutorial here<\/a>.<\/p>\n<h3>Examples<\/h3>\n<p>The following examples show the interface in action performing various tasks and demonstrate how powerful it can be.<\/p>\n<blockquote><p>Also read-<a href=\"https:\/\/stackify.com\/how-to-find-memory-leaks\/\">https:\/\/stackify.com\/how-to-find-memory-leaks\/<\/a><\/p><\/blockquote>\n<h4>Deleting an S3 Bucket<\/h4>\n<p>The Amazon S3 service is Amazon\u2019s Simple Storage Device. It provides basic online data storage in a pay-for-what-you-use plan. The data are stored in buckets. When using the standard GUI, deleting a bucket with several files and folders can be somewhat time-consuming. By using the AWS CLI, you can perform this task in just a few seconds with a single command:<\/p>\n<pre class=\"prettyprint\">$ aws s3 rb s3:\/\/bucket-name --force<\/pre>\n<h4>Creating EC2 instances<\/h4>\n<p>Amazon Elastic Compute Cloud or EC2 is an Amazon web service that delivers simple web-scale cloud computing for developers. The example below shows how the command line tool makes it easy to start multiple EC2 instances.<\/p>\n<pre class=\"prettyprint\">$ aws ec2 start-instances --instance-ids i-4j3423ie i-32u89uf2\n<\/pre>\n<h4>List All Stopped EC2 Instances and Show Why Each One Stopped<\/h4>\n<p>When you&#8217;re managing several EC2 instances, listing instances that have stopped and showing reasons for each can be a little problematical with the standard GUI. The <a href=\"http:\/\/cloudacademy.com\/blog\/aws-cli-10-useful-commands\/\" target=\"_blank\" rel=\"noopener noreferrer\">example<\/a> below shows how to use AWS CLI (and <a href=\"https:\/\/stedolan.github.io\/jq\/\" target=\"_blank\" rel=\"noopener noreferrer\">jq<\/a>) to do this easily:<\/p>\n<pre class=\"prettyprint\">aws ec2 describe-instances --filters Name=instance-state-name,Values=stopped \u00a0--region \u00a0eu-west-1 \u00a0--output json \u00a0| \u00a0jq \u00a0-r \u00a0.Reservations[].Instances[] .StateReason.Message\n<\/pre>\n<h3>Benefits of AWS CLI<\/h3>\n<p>One of the main benefits is the ability to save substantial time. The savings comes in the form of easier installs, support of all services from one tool, moving beyond GUIs, and automating processes and commands with shell scripting.<\/p>\n<ul>\n<li><strong>Easier to install<\/strong>. Installing previous toolkits like the old AWS EC2 API toolkit took several steps and forced the user to set up multiple environment variables. There were plenty of places to make a wrong move and bork the install. One huge benefit of AWS CLI is that installation is smooth, quick, simple, and standardized.<\/li>\n<li><strong>Supports all Amazon Web Services<\/strong>. Previously, you needed a dedicated CLI tool for just the EC2 service. It worked well, but it didn\u2019t let users control other Amazon Web Services, like for instance the AWS RDS (Relational Database Service). The AWS CLI, by contrast, lets you control <a href=\"https:\/\/www.quora.com\/In-laymans-terms-what-are-all-of-Amazons-web-services-and-what-do-they-do\"><em>all<\/em><\/a><a href=\"https:\/\/www.quora.com\/In-laymans-terms-what-are-all-of-Amazons-web-services-and-what-do-they-do\" target=\"_blank\" rel=\"noopener noreferrer\"> the services<\/a> from one simple tool.<\/li>\n<li><strong>Saves time<\/strong>. GUIs are great when you\u2019re just learning the ropes of a system. Once you get up and running, the user-friendly graphical interface tools start to stand in your way. Most users find it faster and easier to use the AWS CLI once they reach a certain level of proficiency.<\/li>\n<li><strong>Scripting<\/strong>. The ability to automate control of all Amazon\u2019s web services with scripts is possibly the biggest benefit. Partial task automation can free developers from needing to log into the AWS Management Console. Shell scripts make it easy to fully automate cloud infrastructure.<\/li>\n<\/ul>\n<h3>Best Practices<\/h3>\n<p>Since the interface is a controller for all of Amazon\u2019s web services, best practices for using it well are largely the same as those for AWS as a whole. Amazon has produced an avalanche of good documentation on its best practices that could fill a mass market paperback. The list contains best practices for architecting, web app hosting, security, email, IAM, DynamoDB, EC2, and Trusted Advisor. Below is a <a href=\"http:\/\/cloudacademy.com\/blog\/aws-best-practices\/\" target=\"_blank\" rel=\"noopener noreferrer\">list of the top five best practices<\/a> from programmer analyst Michael Sheehy.<\/p>\n<ul>\n<li><strong>Protect your credentials<\/strong>. With great power comes great responsibility. The command line interface makes everything easier for managing Amazon Web Services for hackers as well as white hat users. Never use root accounts for day to day interactions. Don\u2019t generate a root access key for your AWS root account.<\/li>\n<li><strong>Secure your applications<\/strong>. Only allow app-layer access to your database layer. Allow outside-world connections only where it\u2019s absolutely necessary and deny all other internet traffic.<\/li>\n<li><strong>Backup early, backup often. <\/strong>Use Amazon EBS snapshots to back up your instance regularly. Test recovery resources before an emergency happens. Here\u2019s <a href=\"https:\/\/aws.amazon.com\/getting-started\/tutorials\/backup-to-s3-cli\/\" target=\"_blank\" rel=\"noopener noreferrer\">Amazon\u2019s documentation<\/a> on how to automate backups.<\/li>\n<li><strong>Use the Trusted Advisor. <\/strong>Amazon calls Trusted Advisor \u201cyour customized cloud expert!\u201d It actually analyzes your AWS environment, helping you to adhere to best practices. The Trusted Advisor looks for ways to save money, close security gaps, and improve system reliability and performance. You can access Trusted Advisor from the AWS command line interface\u00a0<a href=\"https:\/\/gist.github.com\/sebsto\/468670c7c0d5feeade69\" target=\"_blank\" rel=\"noopener noreferrer\">to check service limits<\/a>, for example.<\/li>\n<li><strong>Understand the Shared Responsibility Model. <\/strong>Users manage things like their own data, operating system, and security. Amazon is responsible for infrastructure and services. This is true whether you\u2019re using the standard GUI or the simpler, faster command line interface.<\/li>\n<\/ul>\n<h3>Additional Resources and Tutorials<\/h3>\n<p>For additional info and help with the interface, see the short list of resources below.<\/p>\n<ul>\n<li>AWS CLI Shell. This shell is an interactive productivity booster available on GitHub. It helps users run the interface even if they don\u2019t know all the commands. There\u2019s a <a href=\"https:\/\/medium.com\/@cuttenweiler\/aws-shell-i-think-im-in-love-d39878c3e7b7\" target=\"_blank\" rel=\"noopener noreferrer\">great intro to it here<\/a>.<\/li>\n<li>Excellent, simple <a href=\"http:\/\/www.techrepublic.com\/article\/good-reasons-to-install-the-new-aws-cli-tools-on-a-vm-on-amazon-ec2\/\" target=\"_blank\" rel=\"noopener noreferrer\">installation tutorial<\/a>.<\/li>\n<li>List of all <a href=\"https:\/\/aws.amazon.com\/products\/\" target=\"_blank\" rel=\"noopener noreferrer\">Amazon Web Services<\/a>.<\/li>\n<li>Great post on <a href=\"https:\/\/cloudonaut.io\/6-tips-and-tricks-for-aws-command-line-ninjas\/\" target=\"_blank\" rel=\"noopener noreferrer\">time-saving tips and tricks<\/a>.<\/li>\n<li>Amazon\u2019s <a href=\"http:\/\/docs.aws.amazon.com\/cli\/latest\/userguide\/cli-chap-getting-set-up.html\" target=\"_blank\" rel=\"noopener noreferrer\">tutorial<\/a>.<\/li>\n<\/ul>\n<p>The Amazon Web Services Command Line Interface is a powerful tool to help you manage powerful cloud services. But Amazon isn&#8217;t the only cloud service around; in fact, at Stackify, we&#8217;re big fans of Azure and built our powerful <a href=\"https:\/\/stackify.com\/retrace-azure-monitoring\/\">APM solution<\/a>, Retrace, with Azure in mind. If you&#8217;re on the fence about cloud providers, check out our <a href=\"https:\/\/stackify.com\/azure-vs-aws-comparison\/\">Azure vs. AWS comparison<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>AWS CLI is a tool that pulls all the AWS services together in one central console, giving you easy control of multiple AWS services with a single tool. The acronym stands for Amazon Web Services Command Line Interface because, as its name suggests, users operate it from the command line. With it, you can control [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":38188,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[7],"tags":[52],"class_list":["post-13673","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-developers","tag-developer-tips"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.6 (Yoast SEO v25.6) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is AWS CLI? Examples, Best Practices &amp; More<\/title>\n<meta name=\"description\" content=\"AWS CLI is a tool that pulls all the AWS services together in one wheelhouse, giving you easy control of multiple AWS services with a single tool.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/stackify.com\/what-is-aws-cli\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is AWS CLI? Examples, Best Practices &amp; More\" \/>\n<meta property=\"og:description\" content=\"AWS CLI is a tool that pulls all the AWS services together in one wheelhouse, giving you easy control of multiple AWS services with a single tool.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/stackify.com\/what-is-aws-cli\/\" \/>\n<meta property=\"og:site_name\" content=\"Stackify\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Stackify\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-09-24T10:35:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-16T06:02:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/stackify.com\/wp-content\/uploads\/2017\/09\/AWS-CLI-Header-min-881x441-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"881\" \/>\n\t<meta property=\"og:image:height\" content=\"441\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Angela Stringfellow\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@stackify\" \/>\n<meta name=\"twitter:site\" content=\"@stackify\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Angela Stringfellow\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/stackify.com\/what-is-aws-cli\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/stackify.com\/what-is-aws-cli\/\"},\"author\":{\"name\":\"Angela Stringfellow\",\"@id\":\"https:\/\/stackify.com\/#\/schema\/person\/3f77f07baf0ec3f8edf1bcc37672a77c\"},\"headline\":\"What is AWS CLI? Understanding the Command Line Tool\",\"datePublished\":\"2017-09-24T10:35:31+00:00\",\"dateModified\":\"2024-05-16T06:02:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/stackify.com\/what-is-aws-cli\/\"},\"wordCount\":1226,\"publisher\":{\"@id\":\"https:\/\/stackify.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/stackify.com\/what-is-aws-cli\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/stackify.com\/wp-content\/uploads\/2017\/09\/AWS-CLI-Header-min-881x441-1.jpg\",\"keywords\":[\"developer tips\"],\"articleSection\":[\"Developer Tips, Tricks &amp; Resources\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/stackify.com\/what-is-aws-cli\/\",\"url\":\"https:\/\/stackify.com\/what-is-aws-cli\/\",\"name\":\"What is AWS CLI? Examples, Best Practices & More\",\"isPartOf\":{\"@id\":\"https:\/\/stackify.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/stackify.com\/what-is-aws-cli\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/stackify.com\/what-is-aws-cli\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/stackify.com\/wp-content\/uploads\/2017\/09\/AWS-CLI-Header-min-881x441-1.jpg\",\"datePublished\":\"2017-09-24T10:35:31+00:00\",\"dateModified\":\"2024-05-16T06:02:55+00:00\",\"description\":\"AWS CLI is a tool that pulls all the AWS services together in one wheelhouse, giving you easy control of multiple AWS services with a single tool.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/stackify.com\/what-is-aws-cli\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/stackify.com\/what-is-aws-cli\/#primaryimage\",\"url\":\"https:\/\/stackify.com\/wp-content\/uploads\/2017\/09\/AWS-CLI-Header-min-881x441-1.jpg\",\"contentUrl\":\"https:\/\/stackify.com\/wp-content\/uploads\/2017\/09\/AWS-CLI-Header-min-881x441-1.jpg\",\"width\":881,\"height\":441},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/stackify.com\/#website\",\"url\":\"https:\/\/stackify.com\/\",\"name\":\"Stackify\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/stackify.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/stackify.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/stackify.com\/#organization\",\"name\":\"Stackify\",\"url\":\"https:\/\/stackify.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/stackify.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/stackify.com\/wp-content\/uploads\/2024\/05\/logo-1.png\",\"contentUrl\":\"https:\/\/stackify.com\/wp-content\/uploads\/2024\/05\/logo-1.png\",\"width\":1377,\"height\":430,\"caption\":\"Stackify\"},\"image\":{\"@id\":\"https:\/\/stackify.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Stackify\/\",\"https:\/\/x.com\/stackify\",\"https:\/\/www.instagram.com\/stackify\/\",\"https:\/\/www.linkedin.com\/company\/2596184\",\"https:\/\/www.youtube.com\/stackify\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/stackify.com\/#\/schema\/person\/3f77f07baf0ec3f8edf1bcc37672a77c\",\"name\":\"Angela Stringfellow\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/stackify.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ab30bf3f9d88045d4386d142355dea16?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ab30bf3f9d88045d4386d142355dea16?s=96&d=mm&r=g\",\"caption\":\"Angela Stringfellow\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"What is AWS CLI? Examples, Best Practices & More","description":"AWS CLI is a tool that pulls all the AWS services together in one wheelhouse, giving you easy control of multiple AWS services with a single tool.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/stackify.com\/what-is-aws-cli\/","og_locale":"en_US","og_type":"article","og_title":"What is AWS CLI? Examples, Best Practices & More","og_description":"AWS CLI is a tool that pulls all the AWS services together in one wheelhouse, giving you easy control of multiple AWS services with a single tool.","og_url":"https:\/\/stackify.com\/what-is-aws-cli\/","og_site_name":"Stackify","article_publisher":"https:\/\/www.facebook.com\/Stackify\/","article_published_time":"2017-09-24T10:35:31+00:00","article_modified_time":"2024-05-16T06:02:55+00:00","og_image":[{"width":881,"height":441,"url":"https:\/\/stackify.com\/wp-content\/uploads\/2017\/09\/AWS-CLI-Header-min-881x441-1.jpg","type":"image\/jpeg"}],"author":"Angela Stringfellow","twitter_card":"summary_large_image","twitter_creator":"@stackify","twitter_site":"@stackify","twitter_misc":{"Written by":"Angela Stringfellow","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/stackify.com\/what-is-aws-cli\/#article","isPartOf":{"@id":"https:\/\/stackify.com\/what-is-aws-cli\/"},"author":{"name":"Angela Stringfellow","@id":"https:\/\/stackify.com\/#\/schema\/person\/3f77f07baf0ec3f8edf1bcc37672a77c"},"headline":"What is AWS CLI? Understanding the Command Line Tool","datePublished":"2017-09-24T10:35:31+00:00","dateModified":"2024-05-16T06:02:55+00:00","mainEntityOfPage":{"@id":"https:\/\/stackify.com\/what-is-aws-cli\/"},"wordCount":1226,"publisher":{"@id":"https:\/\/stackify.com\/#organization"},"image":{"@id":"https:\/\/stackify.com\/what-is-aws-cli\/#primaryimage"},"thumbnailUrl":"https:\/\/stackify.com\/wp-content\/uploads\/2017\/09\/AWS-CLI-Header-min-881x441-1.jpg","keywords":["developer tips"],"articleSection":["Developer Tips, Tricks &amp; Resources"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/stackify.com\/what-is-aws-cli\/","url":"https:\/\/stackify.com\/what-is-aws-cli\/","name":"What is AWS CLI? Examples, Best Practices & More","isPartOf":{"@id":"https:\/\/stackify.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/stackify.com\/what-is-aws-cli\/#primaryimage"},"image":{"@id":"https:\/\/stackify.com\/what-is-aws-cli\/#primaryimage"},"thumbnailUrl":"https:\/\/stackify.com\/wp-content\/uploads\/2017\/09\/AWS-CLI-Header-min-881x441-1.jpg","datePublished":"2017-09-24T10:35:31+00:00","dateModified":"2024-05-16T06:02:55+00:00","description":"AWS CLI is a tool that pulls all the AWS services together in one wheelhouse, giving you easy control of multiple AWS services with a single tool.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/stackify.com\/what-is-aws-cli\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/stackify.com\/what-is-aws-cli\/#primaryimage","url":"https:\/\/stackify.com\/wp-content\/uploads\/2017\/09\/AWS-CLI-Header-min-881x441-1.jpg","contentUrl":"https:\/\/stackify.com\/wp-content\/uploads\/2017\/09\/AWS-CLI-Header-min-881x441-1.jpg","width":881,"height":441},{"@type":"WebSite","@id":"https:\/\/stackify.com\/#website","url":"https:\/\/stackify.com\/","name":"Stackify","description":"","publisher":{"@id":"https:\/\/stackify.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/stackify.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/stackify.com\/#organization","name":"Stackify","url":"https:\/\/stackify.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/stackify.com\/#\/schema\/logo\/image\/","url":"https:\/\/stackify.com\/wp-content\/uploads\/2024\/05\/logo-1.png","contentUrl":"https:\/\/stackify.com\/wp-content\/uploads\/2024\/05\/logo-1.png","width":1377,"height":430,"caption":"Stackify"},"image":{"@id":"https:\/\/stackify.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Stackify\/","https:\/\/x.com\/stackify","https:\/\/www.instagram.com\/stackify\/","https:\/\/www.linkedin.com\/company\/2596184","https:\/\/www.youtube.com\/stackify"]},{"@type":"Person","@id":"https:\/\/stackify.com\/#\/schema\/person\/3f77f07baf0ec3f8edf1bcc37672a77c","name":"Angela Stringfellow","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/stackify.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ab30bf3f9d88045d4386d142355dea16?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ab30bf3f9d88045d4386d142355dea16?s=96&d=mm&r=g","caption":"Angela Stringfellow"}}]}},"_links":{"self":[{"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/posts\/13673"}],"collection":[{"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/comments?post=13673"}],"version-history":[{"count":3,"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/posts\/13673\/revisions"}],"predecessor-version":[{"id":44120,"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/posts\/13673\/revisions\/44120"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/media\/38188"}],"wp:attachment":[{"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/media?parent=13673"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/categories?post=13673"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/tags?post=13673"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}