You want to create a parameter that lets users choose a VPC ID but also provides a default value. Which is the correct way to define this parameter?
A"Parameters": {"VpcId": {"Type": "AWS::EC2::VPC::Id", "Default": "vpc-0abc1234def567890"}}
B"Parameters": {"VpcId": {"Type": "String", "Default": "vpc-0abc1234def567890"}}
C"Parameters": {"VpcId": {"Type": "AWS::EC2::Subnet::Id", "Default": "vpc-0abc1234def567890"}}
D"Parameters": {"VpcId": {"Type": "List<AWS::EC2::VPC::Id>", "Default": "vpc-0abc1234def567890"}}