amazon.aws.ec2_snapshot Waiter error

hi all, i see this error when use the module amazon.aws.ec2_snapshot

changed: [localhost] => (item=vol-09a371c47c26c496b)
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: botocore.exceptions.WaiterError: Waiter snapshot_co
s exceeded
failed: [localhost] (item=vol-0ded02bdf864cecc9) => {“ansible_loop_var”: “item”, “boto3_version”: “1.21.30”, “botocore_version”: “1.24.30”, “changed
02bdf864cecc9”, “msg”: “Timed out while creating snapshot: Waiter snapshot_completed failed: Max attempts exceeded”}

this is my playbook

amazon.aws.ec2_snapshot:
volume_id: “{{ item }}”
snapshot_tags:
MarkedForDeletion: true
register: snapshot_info
with_items: “{{ aws_volume_id }}”

any help?

https://docs.ansible.com/ansible/latest/collections/amazon/aws/ec2_snapshot_module.html#parameter-wait_timeout

Thanks!!