# File lib/fog/aws/requests/compute/describe_vpc_classic_link_dns_support.rb, line 38 def describe_vpc_classic_link_dns_support(options={}) response = Excon::Response.new vpcs = self.data[:vpcs] if options[:vpc_ids] vpcs = vpcs.select { |v| options[:vpc_ids].include?(v['vpcId']) } end response.body = {'vpcs' => vpcs.map { |v| {"vpcId" => v['vpcId'], "classicLinkDnsSupported" => v['classicLinkDnsSupport']} } } response end