list all private AMI's, ImageId and Name tags
aws ec2 describe-images --filter "Name=is-public,Values=false" --query 'Images[].[ImageId, Name]' --output text
delete an AMI, by ImageId
aws ec2 deregister-image --image-id ami-00000000
Comments