[Solved] An error occurred while calling o86.getDynamicFrame. Exception thrown in awaitResult:
If you are running a GlueJob in AWS and get the following error:
An error occurred while calling o86.getDynamicFrame. Exception thrown in awaitResult: …
162 articles about aws development, tools, and best practices
If you are running a GlueJob in AWS and get the following error:
An error occurred while calling o86.getDynamicFrame. Exception thrown in awaitResult: …
The AWS Cloud Development Kit (CDK) comes with a list of commands that you need to know: …
Read Article →If you need to see a list of all the resources in your AWS Account, then you need to look into the Tag Editor.
Search for Tag …
If you need to resize an EBS volume in AWS, you can do so using bash.
bash fileCreate a bash file called resize.sh:
#!/bin/bash …
Read Article →
AWS CodeCommit is a git code repository service by Amazon Web Services.
You will want to clone your repository and setup your remotes using credential …
Sometimes you will need to manually approve a SageMaker model package from the AWS CLI.
aws sagemaker …
Read Article →
If you need to assume role between AWS accounts, or allow an account to assume a role and use resources in another AWS account, then you need to …
Read Article →If you need to recursively delete all files in an AWS S3 bucket, then you can do the following:
aws s3 rm --recursive s3://your-bucket-name/foo/bar/ …
Read Article →
When you are trying to create an RDS database and you get the dreaded error message:
IAM role ARN value is invalid or does not include the required …
The following code expects a python file with the contents as follows in a file called python/script1.py:
def …
Read Article →
If you get the Instance Profile already exists error when running your Terraform apply, then it is either because an instance profile with that name …
If you are using aws configure sso to populate your ~/.aws/credentials file and you get the following error when you try and reauthorize, then you can …
If you want to invoke an AWS Lambda from your CLI, then the best option is to have the AWS CLI installed.
Getting started with the AWS CLI – AWS …
Read Article →If you find yourself having the requirements to support both AWS CLI v1 and v2 simultaneously, then you can use the following conditional in Bash to …
Read Article →If you have tried calling the AWS CLI and got the following error:
Unknown options: --cli-binary-format
Then it is because you are using the AWS CLI …
If you have tried to delete a Security Group, or VPC, or various other resources and you get the dreaded Network interface is in use by another …
In your source account create a customer-managed policy:
{
"Version": "2012-10-17",
"Statement": [
{ …
Read Article →
I have a parent directory containing multiple sub-directories. Each of these child directories is a different application and contains a Dockerfile.
I …
Read Article →eksctl dramatically simplifies the creation of AWS EKS clusters, by providing a simple command-line interface.
You can …
Read Article →You can use the aws cli to get the EKS cluster name, parse the first result and return it into a variable.
EKS_CLUSTER_NAME=$(aws eks list-clusters …
Read Article →
You can download and install the AWS CLI on Linux as follows:
curl …
Read Article →
When you launch an EC2 instance, you can use the user-data to bootstrap a instance creation script.
We can use the following code to start a web …
Read Article →Ever searched for kubectl update config from aws eks and needed a quick result?
Make sure that you have valid AWS …
Read Article →If you have received the following error while trying to issue commands to kubectl:
Unable to connect to the server: dial tcp: lookup
Then it may be …
Read Article →