How to create a snapshot for Aurora Serverless V1 #7575
Answered
by
RyanFitzSimmonsAK
ClaudenirFreitas
asked this question in
Q&A
-
Hi all, # command
aws rds create-db-snapshot \
--db-instance-identifier dummy-database \
--db-snapshot-identifier snaphot \
--region eu-west-1
# output
An error occurred (DBInstanceNotFound) when calling the CreateDBSnapshot operation: DBInstance not found: dummy-database When I got this error, I ran the command below: # command
aws rds describe-db-instances \
--region eu-west-1
# output
{
"DBInstances": [
]
} I did not find a solution for that... can you help me? |
Beta Was this translation helpful? Give feedback.
Answered by
RyanFitzSimmonsAK
Jan 10, 2023
Replies: 1 comment 1 reply
-
Hi @ClaudenirFreitas, thanks for reaching out. Aurora Serverless V1 databases are created as DB clusters, instead of regular DB instances. To create a snapshot or describe databases, you'd need to use the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ClaudenirFreitas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @ClaudenirFreitas, thanks for reaching out. Aurora Serverless V1 databases are created as DB clusters, instead of regular DB instances. To create a snapshot or describe databases, you'd need to use the
create-db-cluster-snapshot
anddescribe-db-clusters
methods. Let me know if that doesn't work, or if you have any other questions.