class AWS::EC2::InternetGateway

def vpc

Returns:
  • (VPC, nil) - Returns the currently attached VPC, or nil
def vpc
  if attachment = attachments.first
    attachment.vpc
  end
end