Skip to content

Commit

Permalink
Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mdminhazulhaque committed Oct 9, 2023
1 parent 467a3c9 commit 52f9f6f
Show file tree
Hide file tree
Showing 124 changed files with 142 additions and 25 deletions.
Binary file added build/doctrees/acm.doctree
Binary file not shown.
Binary file added build/doctrees/amplify.doctree
Binary file not shown.
Binary file added build/doctrees/apigw.doctree
Binary file not shown.
Binary file added build/doctrees/cloudfront.doctree
Binary file not shown.
Binary file added build/doctrees/cloudwatch.doctree
Binary file not shown.
Binary file added build/doctrees/cognito.doctree
Binary file not shown.
Binary file added build/doctrees/dynamodb.doctree
Binary file not shown.
Binary file added build/doctrees/ec2.doctree
Binary file not shown.
Binary file added build/doctrees/ecr.doctree
Binary file not shown.
Binary file added build/doctrees/efs.doctree
Binary file not shown.
Binary file added build/doctrees/eks.doctree
Binary file not shown.
Binary file added build/doctrees/elasticache.doctree
Binary file not shown.
Binary file added build/doctrees/elb.doctree
Binary file not shown.
Binary file added build/doctrees/environment.pickle
Binary file not shown.
Binary file added build/doctrees/iam.doctree
Binary file not shown.
Binary file added build/doctrees/index.doctree
Binary file not shown.
Binary file added build/doctrees/lambda.doctree
Binary file not shown.
Binary file added build/doctrees/opensearch.doctree
Binary file not shown.
Binary file added build/doctrees/rds.doctree
Binary file not shown.
Binary file added build/doctrees/route53.doctree
Binary file not shown.
Binary file added build/doctrees/s3.doctree
Binary file not shown.
Binary file added build/doctrees/sns.doctree
Binary file not shown.
Binary file added build/doctrees/sqs.doctree
Binary file not shown.
Binary file added build/doctrees/wafv2.doctree
Binary file not shown.
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/.buildinfo → build/html/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: c6f839707cf4a7f611ec919d5d3cefa7
config: 53e6e02183f4d146f0c998304bbd2192
tags: 645f666f9bcd5a90fca523b33c5a78b7
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
Streamlining AWS Operations with AWS CLI and JQ
===============================================
AWS CLI Cheatsheet
==================

The AWS CLI is a robust tool that enables users to interact with AWS services from the command line. Also, JQ is a lightweight and flexible command-line JSON processor. Supercharge your daily acitivities related to AWS cloud using the combination of both.

In today's fast-paced world, faster management and automation of AWS resources are crucial for businesses. This cheatsheet will demonstrate the powerful combination of the AWS Command Line Interface (CLI) and JQ, a lightweight and flexible command-line JSON processor.

It is possible to simplify daily tasks such as creating and managing resources, querying data, and automating workflows using this cheatsheet. It has real-world examples and code snippets that will boost your productivity. System administrators and developers can enhance their productivity, automate repetitive tasks, and unlock new levels of efficiency in managing AWS resources.

Prerequisites
-------------

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
123 changes: 123 additions & 0 deletions build/html/_static/_sphinx_javascript_frameworks_compat.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
/* Compatability shim for jQuery and underscores.js.
*
* Copyright Sphinx contributors
* Released under the two clause BSD licence
*/

/**
* small helper function to urldecode strings
*
* See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL
*/
jQuery.urldecode = function(x) {
if (!x) {
return x
}
return decodeURIComponent(x.replace(/\+/g, ' '));
};

/**
* small helper function to urlencode strings
*/
jQuery.urlencode = encodeURIComponent;

/**
* This function returns the parsed url parameters of the
* current request. Multiple values per key are supported,
* it will always return arrays of strings for the value parts.
*/
jQuery.getQueryParameters = function(s) {
if (typeof s === 'undefined')
s = document.location.search;
var parts = s.substr(s.indexOf('?') + 1).split('&');
var result = {};
for (var i = 0; i < parts.length; i++) {
var tmp = parts[i].split('=', 2);
var key = jQuery.urldecode(tmp[0]);
var value = jQuery.urldecode(tmp[1]);
if (key in result)
result[key].push(value);
else
result[key] = [value];
}
return result;
};

/**
* highlight a given string on a jquery object by wrapping it in
* span elements with the given class name.
*/
jQuery.fn.highlightText = function(text, className) {
function highlight(node, addItems) {
if (node.nodeType === 3) {
var val = node.nodeValue;
var pos = val.toLowerCase().indexOf(text);
if (pos >= 0 &&
!jQuery(node.parentNode).hasClass(className) &&
!jQuery(node.parentNode).hasClass("nohighlight")) {
var span;
var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg");
if (isInSVG) {
span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
} else {
span = document.createElement("span");
span.className = className;
}
span.appendChild(document.createTextNode(val.substr(pos, text.length)));
node.parentNode.insertBefore(span, node.parentNode.insertBefore(
document.createTextNode(val.substr(pos + text.length)),
node.nextSibling));
node.nodeValue = val.substr(0, pos);
if (isInSVG) {
var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect");
var bbox = node.parentElement.getBBox();
rect.x.baseVal.value = bbox.x;
rect.y.baseVal.value = bbox.y;
rect.width.baseVal.value = bbox.width;
rect.height.baseVal.value = bbox.height;
rect.setAttribute('class', className);
addItems.push({
"parent": node.parentNode,
"target": rect});
}
}
}
else if (!jQuery(node).is("button, select, textarea")) {
jQuery.each(node.childNodes, function() {
highlight(this, addItems);
});
}
}
var addItems = [];
var result = this.each(function() {
highlight(this, addItems);
});
for (var i = 0; i < addItems.length; ++i) {
jQuery(addItems[i].parent).before(addItems[i].target);
}
return result;
};

/*
* backward compatibility for jQuery.browser
* This will be supported until firefox bug is fixed.
*/
if (!jQuery.browser) {
jQuery.uaMatch = function(ua) {
ua = ua.toLowerCase();

var match = /(chrome)[ \/]([\w.]+)/.exec(ua) ||
/(webkit)[ \/]([\w.]+)/.exec(ua) ||
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) ||
/(msie) ([\w.]+)/.exec(ua) ||
ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) ||
[];

return {
browser: match[ 1 ] || "",
version: match[ 2 ] || "0"
};
};
jQuery.browser = {};
jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true;
}
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
2 changes: 2 additions & 0 deletions build/html/_static/jquery.js

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions docs/acm.html → build/html/acm.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="next" title="Amplify" href="amplify.html" />
<link rel="prev" title="Streamlining AWS Operations with AWS CLI and JQ" href="index.html" />
<link rel="prev" title="AWS CLI Cheatsheet" href="index.html" />
</head>

<body class="wy-body-for-nav">
Expand Down Expand Up @@ -120,7 +120,7 @@ <h2>List Certificate ARNs and DomainName<a class="headerlink" href="#list-certif
</div>
</div>
<footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
<a href="index.html" class="btn btn-neutral float-left" title="Streamlining AWS Operations with AWS CLI and JQ" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
<a href="index.html" class="btn btn-neutral float-left" title="AWS CLI Cheatsheet" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
<a href="amplify.html" class="btn btn-neutral float-right" title="Amplify" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
</div>

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 5 additions & 7 deletions docs/index.html → build/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html class="writer-html5" lang="en" >
<head>
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
<meta property="og:title" content="Streamlining AWS Operations with AWS CLI and JQ" />
<meta property="og:title" content="AWS CLI Cheatsheet" />
<meta property="og:type" content="website" />
<meta property="og:url" content="index.html" />
<meta property="og:site_name" content="aws-cli-cheatsheet" />
Expand All @@ -12,7 +12,7 @@
<meta name="description" content="The AWS CLI is a robust tool that enables users to interact with AWS services from the command line. Also, JQ is a lightweight and flexible command-line JSON processor. Supercharge your daily aciti..." />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Streamlining AWS Operations with AWS CLI and JQ &mdash; aws-cli-cheatsheet documentation</title>
<title>AWS CLI Cheatsheet &mdash; aws-cli-cheatsheet documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<!--[if lt IE 9]>
Expand Down Expand Up @@ -89,7 +89,7 @@
<div role="navigation" aria-label="Page navigation">
<ul class="wy-breadcrumbs">
<li><a href="#" class="icon icon-home" aria-label="Home"></a></li>
<li class="breadcrumb-item active">Streamlining AWS Operations with AWS CLI and JQ</li>
<li class="breadcrumb-item active">AWS CLI Cheatsheet</li>
<li class="wy-breadcrumbs-aside">
<a href="_sources/index.rst.txt" rel="nofollow"> View page source</a>
</li>
Expand All @@ -99,11 +99,9 @@
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">

<section id="streamlining-aws-operations-with-aws-cli-and-jq">
<h1>Streamlining AWS Operations with AWS CLI and JQ<a class="headerlink" href="#streamlining-aws-operations-with-aws-cli-and-jq" title="Link to this heading"></a></h1>
<section id="aws-cli-cheatsheet">
<h1>AWS CLI Cheatsheet<a class="headerlink" href="#aws-cli-cheatsheet" title="Link to this heading"></a></h1>
<p>The AWS CLI is a robust tool that enables users to interact with AWS services from the command line. Also, JQ is a lightweight and flexible command-line JSON processor. Supercharge your daily acitivities related to AWS cloud using the combination of both.</p>
<p>In today’s fast-paced world, faster management and automation of AWS resources are crucial for businesses. This cheatsheet will demonstrate the powerful combination of the AWS Command Line Interface (CLI) and JQ, a lightweight and flexible command-line JSON processor.</p>
<p>It is possible to simplify daily tasks such as creating and managing resources, querying data, and automating workflows using this cheatsheet. It has real-world examples and code snippets that will boost your productivity. System administrators and developers can enhance their productivity, automate repetitive tasks, and unlock new levels of efficiency in managing AWS resources.</p>
<section id="prerequisites">
<h2>Prerequisites<a class="headerlink" href="#prerequisites" title="Link to this heading"></a></h2>
<ul class="simple">
Expand Down
File renamed without changes.
Binary file added build/html/objects.inv
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions build/html/searchindex.js

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions docs
Binary file removed docs/objects.inv
Binary file not shown.
1 change: 0 additions & 1 deletion docs/searchindex.js

This file was deleted.

Empty file added source/.nojekyll
Empty file.
1 change: 1 addition & 0 deletions source/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
aws-jq.mdminhazulhaque.io
4 changes: 2 additions & 2 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@

html_theme = 'sphinx_rtd_theme'
html_static_path = ['_static']
html_extra_path = ['CNAME', '.nojekyll']

# ogp_site_url = "https://aws-jq.mdminhazulhaque.io/"
ogp_image = "/_static/aws-jq.png"
ogp_image = "/_static/aws-jq.png"
8 changes: 2 additions & 6 deletions source/index.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
Streamlining AWS Operations with AWS CLI and JQ
===============================================
AWS CLI Cheatsheet
==================

The AWS CLI is a robust tool that enables users to interact with AWS services from the command line. Also, JQ is a lightweight and flexible command-line JSON processor. Supercharge your daily acitivities related to AWS cloud using the combination of both.

In today's fast-paced world, faster management and automation of AWS resources are crucial for businesses. This cheatsheet will demonstrate the powerful combination of the AWS Command Line Interface (CLI) and JQ, a lightweight and flexible command-line JSON processor.

It is possible to simplify daily tasks such as creating and managing resources, querying data, and automating workflows using this cheatsheet. It has real-world examples and code snippets that will boost your productivity. System administrators and developers can enhance their productivity, automate repetitive tasks, and unlock new levels of efficiency in managing AWS resources.

Prerequisites
-------------

Expand Down

0 comments on commit 52f9f6f

Please sign in to comment.