https://docs.aws.amazon.com/workspaces/latest/adminguide/azs-workspaces.html
The intent is to define terse, standards-supported names for AWS regions.
https://docs.aws.amazon.com/workspaces/latest/adminguide/azs-workspaces.html
The intent is to define terse, standards-supported names for AWS regions.
| #!/bin/bash | |
| # Source: https://docs.aws.amazon.com/general/latest/gr/sigv4-signed-request-examples.html | |
| [[ -n "${AWS_ACCESS_KEY_ID}" ]] || { echo "AWS_ACCESS_KEY_ID required" >&2; exit 1; } | |
| [[ -n "${AWS_SECRET_ACCESS_KEY}" ]] || { echo "AWS_SECRET_ACCESS_KEY required" >&2; exit 1; } | |
| readonly parameterName="SlawekTestParam" | |
| readonly method="POST" |