Which AWS CLI command correctly creates a VPC with the CIDR block 192.168.0.0/16 and tags it with Name=ProdVPC?
Aaws ec2 create-vpc --cidr 192.168.0.0/16 --tags Name=ProdVPC
Baws ec2 create-vpc --cidr-block 192.168.0.0/16 --tag-specifications 'ResourceType=vpc,Tags=[{Key=Name,Value=ProdVPC}]'
Caws ec2 create-vpc --cidr-block 192.168.0.0/16 --tags Name=ProdVPC
Daws ec2 create-vpc --cidr 192.168.0.0/16 --tag-specifications 'ResourceType=VPC,Tags=[{Key=Name,Value=ProdVPC}]'