Periksa apakah ada ID VPC

aws ec2 wait vpc-exists --vpc-ids vpc-06e4ab6c6cEXAMPLE # Returns nothing if the VPC exists
aws ec2 wait vpc-available --vpc-ids vpc-06e4ab6c6cEXAMPLE # Returns nothing if the VPC exists

# OR
aws ec2 describe-vpcs --vpc-ids vpc-06e4ab6c6cEXAMPLE
Jumping Boy