Looking for a structured list of AWS actions, resources, and conditions? Tired of hunting through the AWS Documentation?
Then just use this simple script.
For example:
aws-arc.sh '.serviceMap["AWS Accounts"]'
<?php | |
class FluentRouter | |
{ | |
const DEADEND_EXCEPTION = 1; | |
const DEADEND_RETRY = 2; | |
const DEADEND_BLACKHOLE = 3; | |
public function __construct(array $callbacks = [], $deadend = null) | |
{ |
contents_kind count notes | |
test 86692 *Test.php, */{examples,tests}/* | |
code 256551 | |
data 2359458 *json.php, */{data,fonts,charset}/* |
/** | |
* | |
* App.js | |
* | |
* creates the Logi global variable | |
* starts loading the application's initial client side files | |
* kicks off the Angular bootstrap | |
* | |
* Table of Contents | |
* 1. Create the Logi global variable |
Looking for a structured list of AWS actions, resources, and conditions? Tired of hunting through the AWS Documentation?
Then just use this simple script.
For example:
aws-arc.sh '.serviceMap["AWS Accounts"]'
#!/bin/bash | |
set -euo pipefail | |
trap 'echo "Caught SIGINT. Exiting..." >&2; exit 1' INT | |
tmpfile=$(mktemp) | |
chmod 600 "${tmpfile}" | |
trap 'rm -f "${tmpfile}"' EXIT |