# File lib/fog/aws/requests/compute/enable_vpc_classic_link.rb, line 19
        def enable_vpc_classic_link(vpc_id, dry_run=false)
          request(
            'Action'    => 'EnableVpcClassicLink',
            'VpcId'     => vpc_id,
            'DryRun'    => dry_run,
            :parser     => Fog::Parsers::Compute::AWS::Basic.new
          )
        end