Tool for constructing AWS CLI commands https://awsclibuilder.com/home Created by https://twitter.com/pdomala
AWS CLI 2 for Exporting Lambdas https://gist.github.com/TheNetJedi/0847ba0ec1da9879b4fa1d8f3276b004 Export all lambda functions to lambdafunctions directory as indivudual zip files. Be sure to update the region, currently set to us-east-1 This works great in AWS CloudShell mkdir lambdafunctions aws lambda –profile kickpost list-functions | \ grep FunctionName | \ cut -d ‘”‘ -f4 | \ while […]
AWS CLI 2 for Exporting a Bot https://docs.aws.amazon.com/lex/latest/dg/export-to-lex.html https://docs.aws.amazon.com/lex/latest/dg/API_GetExport.html Export all bots to lexbots directory as indivudual zip files. Be sure to update the region, currently set to us-east-1 mkdir lexbots aws lex-models get-bots | grep name | cut -d ‘”‘ -f4 | \ while read -r name; do echo $name url=$(aws lex-models get-export […]
Gradle versions available from: https://gradle.org/releases/ sudo mkdir /opt/gradle wget -c https://services.gradle.org/distributions/gradle-6.8.3-bin.zip sudo unzip -d /opt/gradle gradle-6.8.3-bin.zip export PATH=$PATH:/opt/gradle/gradle-6.8.3/bin gradle -v **NOTE: export PATH will have to be done over with every launch of the shell. Alternatively, add it to ~/.bash_profile PATH=$PATH:$HOME/.local/bin:$HOME/bin:/opt/gradle