Boto3: [rds] Add waiter for cluster actions

Created on 1 Oct 2018  路  5Comments  路  Source: boto/boto3

Waiters are only implemented for single instance RDS actions, not actions that target Aurora clusters. Can you pleased add them for the following equivalent cluster actions?

db_cluster_deleted
db_cluster_snapshot_available
db_cluster_snapshot_completed
db_cluster_snapshot_deleted

Of these we most care about the snapshots, but it would be nice to have all of them implemented.

feature-request

Most helpful comment

+1 ! In our case we need db_cluster_available

All 5 comments

Marking this as a feature request.

+1 ! In our case we need db_cluster_available

+1! We could also love to have the db_cluster_snapshot* waiters implemented

client = boto3.client('rds')
waiter = client.get_waiter('db_cluster_deleted')
Traceback (most recent call last):
File "", line 1, in
File "/usr/local/lib/python3.4/dist-packages/botocore/client.py", line 765, in get_waiter
raise ValueError("Waiter does not exist: %s" % waiter_name)
ValueError: Waiter does not exist: db_cluster_deleted
boto3.__version__
'1.7.35'

Will this support for this value will be added?

Hey there, pinging the boto3 team to see if this is something on the development timeline. Cheers!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

nueverest picture nueverest  路  3Comments

hwine picture hwine  路  3Comments

arijitArusan picture arijitArusan  路  3Comments

lewisd32 picture lewisd32  路  3Comments

jparismorgan picture jparismorgan  路  3Comments