Created
August 3, 2020 12:03
-
-
Save yetanotherchris/2bcb981f14abb9fd79d286c47da61595 to your computer and use it in GitHub Desktop.
A few AWS command lines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| aws s3api create-bucket --bucket MYBUCKET --create-bucket-configuration LocationConstraint=eu-west-1 | |
| aws s3api put-object --bucket MYBUCKET --key myfile.txt --body .\myfile.txt | |
| aws dynamodb create-table --table-name {YOURTABLE} & | |
| --attribute-definitions AttributeName={SOME-STRING-ID},AttributeType=S AttributeName={SOME-NUMBER-ID},AttributeType=N & | |
| --key-schema AttributeName={SOME-STRING-ID},KeyType=HASH AttributeName={SOME-NUMBER-ID},KeyType=RANGE & | |
| --provisioned-throughput ReadCapacityUnits=5,WriteCapacityUnits=5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment